diff --git a/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs b/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs
index 288fe2a37f2..432fbfb4aca 100644
--- a/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs
+++ b/Content.Server/DeltaV/StationEvents/Components/PirateRadioSpawnRuleComponent.cs
@@ -1,6 +1,10 @@
+/*
+* Delta-V - This file is licensed under AGPLv3
+* Copyright (c) 2024 Delta-V Contributors
+* See AGPLv3.txt for details.
+*/
+
using Content.Server.StationEvents.Events;
-using Robust.Shared.Prototypes;
-using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.StationEvents.Components;
@@ -12,4 +16,21 @@ public sealed partial class PirateRadioSpawnRuleComponent : Component
[DataField("additionalRule")]
public EntityUid? AdditionalRule;
+
+ [DataField("debrisCount")]
+ public int DebrisCount { get; set; }
+
+ [DataField("distanceModifier")]
+ public float DistanceModifier { get; set; }
+
+ [DataField("debrisDistanceModifier")]
+ public float DebrisDistanceModifier { get; set; }
+
+ ///
+ /// "Stations of Unusual Size Constant", derived from the AABB.Width of Shoukou.
+ /// This Constant is used to check the size of a station relative to the reference point
+ ///
+ [DataField("sousk")]
+ public float SOUSK = 123.44f;
+
}
diff --git a/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs
index 499300dfe33..f0538c47f95 100644
--- a/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs
+++ b/Content.Server/DeltaV/StationEvents/Events/PirateRadioSpawnRule.cs
@@ -1,32 +1,94 @@
+/*
+* Delta-V - This file is licensed under AGPLv3
+* Copyright (c) 2024 Delta-V Contributors
+* See AGPLv3.txt for details.
+*/
+
using Robust.Server.GameObjects;
using Robust.Server.Maps;
+using Robust.Shared.Configuration;
using Robust.Shared.Map;
+using Robust.Shared.Map.Components;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Random;
+using Robust.Shared.Utility;
using Content.Server.GameTicking;
-using Content.Server.GameTicking.Rules;
using Content.Server.GameTicking.Rules.Components;
using Content.Server.StationEvents.Components;
-using Content.Server.RoundEnd;
+using Content.Server.Station.Components;
+using Content.Shared.Salvage;
+using Content.Shared.Random.Helpers;
+using System.Linq;
+using Content.Shared.CCVar;
namespace Content.Server.StationEvents.Events;
public sealed class PirateRadioSpawnRule : StationEventSystem
{
+ [Dependency] private readonly IEntityManager _entities = default!;
[Dependency] private readonly IMapManager _mapManager = default!;
[Dependency] private readonly MapLoaderSystem _map = default!;
- [Dependency] private readonly GameTicker _gameTicker = default!;
- [Dependency] private readonly TraitorRuleSystem _TraitorRuleSystem = default!;
+ [Dependency] private readonly IRobustRandom _random = default!;
+ [Dependency] private readonly IPrototypeManager _prototypeManager = default!;
+ [Dependency] private readonly IConfigurationManager _confMan = default!;
protected override void Started(EntityUid uid, PirateRadioSpawnRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args)
{
+ //Start of Syndicate Listening Outpost spawning system
base.Started(uid, component, gameRule, args);
-
- var shuttleMap = _mapManager.CreateMap();
- var options = new MapLoadOptions
+ var xformQuery = GetEntityQuery();
+ var aabbs = EntityQuery().SelectMany(x =>
+ x.Grids.Select(x =>
+ xformQuery.GetComponent(x).WorldMatrix.TransformBox(_mapManager.GetGridComp(x).LocalAABB)))
+ .ToArray();
+ if (aabbs.Length < 1) return;
+ var aabb = aabbs[0];
+
+ for (var i = 1; i < aabbs.Length; i++)
+ {
+ aabb.Union(aabbs[i]);
+ }
+ var distanceFactorCoefficient = component.SOUSK / aabb.Width;
+ var distanceModifier = Math.Clamp(component.DistanceModifier, 1, 25);
+ var distanceModifierNormalized = distanceModifier * distanceFactorCoefficient;
+ var a = MathF.Max(aabb.Height / 2f, aabb.Width / 2f) * distanceModifierNormalized;
+ var randomoffset = _random.NextVector2(a, a * 2.5f);
+ var outpostOptions = new MapLoadOptions
{
- LoadMap = true,
+ Offset = aabb.Center + randomoffset,
+ LoadMap = false,
};
+ if (!_map.TryLoad(GameTicker.DefaultMap, component.PirateRadioShuttlePath, out var outpostids, outpostOptions)) return;
+ //End of Syndicate Listening Outpost spawning system
+
+ //Start of Debris Field Generation
+ var debrisSpawner = _confMan.GetCVar(CCVars.WorldgenEnabled);
+ if (debrisSpawner == true) return;
+ var debrisCount = Math.Clamp(component.DebrisCount, 0, 6);
+ if (debrisCount == 0) return;
+ var debrisDistanceModifier = Math.Clamp(component.DebrisDistanceModifier, 3, 10);
+ foreach (var id in outpostids)
+ {
+ if (!TryComp(id, out var grid)) return;
+ var outpostaabb = _entities.GetComponent(id).WorldMatrix.TransformBox(grid.LocalAABB);
+ var b = MathF.Max(outpostaabb.Height / 2f, aabb.Width / 2f) * debrisDistanceModifier;
+ var k = 1;
+ while (k < debrisCount + 1)
+ {
+ var debrisRandomOffset = _random.NextVector2(b, b * 2.5f);
+ var randomer = _random.NextVector2(b, b * 5f); //Second random vector to ensure the outpost isn't perfectly centered in the debris field
+ var debrisOptions = new MapLoadOptions
+ {
+ Offset = outpostaabb.Center + debrisRandomOffset + randomer,
+ LoadMap = false,
+ };
- _map.TryLoad(shuttleMap, component.PirateRadioShuttlePath, out _, options);
+ var salvageProto = _random.Pick(_prototypeManager.EnumeratePrototypes().ToList());
+ _map.TryLoad(GameTicker.DefaultMap, salvageProto.MapPath.ToString(), out _, debrisOptions);
+ k++;
+ }
+ }
+ //End of Debris Field generation
}
protected override void Ended(EntityUid uid, PirateRadioSpawnRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args)
@@ -36,4 +98,4 @@ protected override void Ended(EntityUid uid, PirateRadioSpawnRuleComponent compo
if (component.AdditionalRule != null)
GameTicker.EndGameRule(component.AdditionalRule.Value);
}
-}
\ No newline at end of file
+}
diff --git a/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml b/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml
index 9290de03a19..27697e5ac83 100644
--- a/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml
+++ b/Resources/Maps/Shuttles/DeltaV/DV-pirateradio.yml
@@ -4,13 +4,17 @@ meta:
tilemap:
0: Space
7: FloorAsteroidSand
- 9: FloorAsteroidSandRed
- 10: FloorAsteroidSandUnvariantized
+ 23: FloorCave
+ 30: FloorDark
+ 36: FloorDarkOffset
+ 39: FloorDarkPlastic
+ 63: FloorLino
65: FloorMetalDiamond
- 77: FloorRGlass
+ 78: FloorReinforced
85: FloorShuttleRed
86: FloorShuttleWhite
92: FloorSteelCheckerDark
+ 105: FloorTechMaint
119: FloorWood
121: Lattice
entities:
@@ -18,54 +22,53 @@ entities:
entities:
- uid: 1
components:
- - name: Syndicate Listening Post
- type: MetaData
- - rot: -1.0337585079667582 rad
- pos: -0.5440744,-0.033024088
+ - type: MetaData
+ name: unknown
+ - type: Transform
parent: invalid
- type: Transform
- - chunks:
+ - type: MapGrid
+ chunks:
0,0:
ind: 0,0
- tiles: QQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATQAAAAAATQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAATQAAAAAATQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACgAAAAAAQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAeQAAAAAABwAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACgAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: QQAAAAAAdwAAAAADPwAAAAAAPwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJwAAAAADTgAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAdwAAAAADQQAAAAAAVQAAAAAAQQAAAAAAJwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJwAAAAABTgAAAAAAeQAAAAAAeQAAAAAAQQAAAAAAdwAAAAAAPwAAAAAAPwAAAAAAdwAAAAABJwAAAAABVQAAAAAAQQAAAAAAJwAAAAADJwAAAAACJwAAAAACJwAAAAACJwAAAAACTgAAAAAAeQAAAAAAeQAAAAAAJwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAABQQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAABeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAJwAAAAABQQAAAAAAQQAAAAAABwAAAAAABwAAAAAAFwAAAAAAFwAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAABFwAAAAACFwAAAAAEQQAAAAAAaQAAAAAAQQAAAAAAaQAAAAAAaQAAAAAABwAAAAAAFwAAAAACFwAAAAAGFwAAAAACFwAAAAAEFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAEFwAAAAABFwAAAAADQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAeQAAAAAAFwAAAAADFwAAAAAAFwAAAAAGFwAAAAABFwAAAAABFwAAAAAEFwAAAAADFwAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAAEFwAAAAACFwAAAAAEFwAAAAACFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAEFwAAAAACFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAEFwAAAAAAFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAGFwAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAADFwAAAAAFFwAAAAADFwAAAAABFwAAAAAGFwAAAAADFwAAAAAFFwAAAAABAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAABeQAAAAAAFwAAAAACFwAAAAAFFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAABFwAAAAAFFwAAAAAFFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAEAAAAAAAAFwAAAAAAFwAAAAAGAAAAAAAAFwAAAAACFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: BwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAVQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAAACQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAACQAAAAAAQQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAACQAAAAAAQQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAQQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAQQAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: FwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGAAAAAAAAFwAAAAAGFwAAAAABAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAFwAAAAACAAAAAAAAAAAAAAAAFwAAAAABFwAAAAADAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAACFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAADFwAAAAAGFwAAAAADFwAAAAABFwAAAAAAFwAAAAAFFwAAAAACFwAAAAABFwAAAAACFwAAAAAFAAAAAAAAFwAAAAACFwAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAEFwAAAAAAFwAAAAAFeQAAAAAAFwAAAAABFwAAAAACFwAAAAADFwAAAAAGFwAAAAADFwAAAAAGFwAAAAAEFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAFFwAAAAADFwAAAAAAFwAAAAAFFwAAAAAFFwAAAAAGFwAAAAAGFwAAAAABFwAAAAAEFwAAAAAEFwAAAAAEFwAAAAAFFwAAAAAFFwAAAAAEAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAABFwAAAAAEFwAAAAABFwAAAAAGFwAAAAABFwAAAAAAFwAAAAACFwAAAAABFwAAAAAEFwAAAAABFwAAAAAEFwAAAAAAVQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAADFwAAAAAGFwAAAAADFwAAAAAGFwAAAAACFwAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAQQAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFwAAAAAEFwAAAAABQQAAAAAAQQAAAAAAJwAAAAACQQAAAAAAQQAAAAAAQQAAAAAAdwAAAAAAdwAAAAACdwAAAAACQQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAQQAAAAAAFwAAAAABQQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAAAQQAAAAAAdwAAAAACdwAAAAADdwAAAAABQQAAAAAAJwAAAAAAJwAAAAABJwAAAAADJwAAAAAAQQAAAAAAFwAAAAAGQQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABQQAAAAAAdwAAAAACdwAAAAABdwAAAAADJwAAAAACJwAAAAAAJwAAAAACJwAAAAADJwAAAAADQQAAAAAAFwAAAAAGQQAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAACQQAAAAAAdwAAAAACdwAAAAACdwAAAAAAQQAAAAAAJwAAAAADJwAAAAAAJwAAAAABJwAAAAABQQAAAAAAFwAAAAABQQAAAAAAQQAAAAAAJwAAAAACQQAAAAAAQQAAAAAAQQAAAAAAJwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAADJwAAAAACdwAAAAABdwAAAAABdwAAAAACdwAAAAADJwAAAAAAJwAAAAACJwAAAAABJwAAAAACJwAAAAABJwAAAAACJwAAAAACJwAAAAAATgAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAAeQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAeQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADAAAAAAAAFwAAAAACFwAAAAAFFwAAAAAEFwAAAAADQQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAACFwAAAAABFwAAAAAAeQAAAAAAFwAAAAADQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAFFwAAAAAEQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAGFwAAAAABFwAAAAAAFwAAAAAFQQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAAFwAAAAAEAAAAAAAAFwAAAAABFwAAAAAFFwAAAAAFFwAAAAADQQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAFeQAAAAAAFwAAAAACQQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAAFwAAAAAEFwAAAAACFwAAAAAAFwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAAGFwAAAAAGFwAAAAAEFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAFFwAAAAABFwAAAAAFFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAAFFwAAAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAACQAAAAAACQAAAAAACgAAAAAACgAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAeQAAAAAABwAAAAAAQQAAAAAAVgAAAAAAVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACQAAAAAACgAAAAAABwAAAAAABwAAAAAAQQAAAAAAVgAAAAAAVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAQQAAAAAAVQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAAQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEAAAAAAAAAAAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAACAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAADAAAAAAAAAAAAAAAAFwAAAAACFwAAAAACFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAFwAAAAADFwAAAAABFwAAAAADFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAGFwAAAAAAFwAAAAAFFwAAAAABFwAAAAADFwAAAAAGFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAGFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAADFwAAAAAFFwAAAAACQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAAFwAAAAAAQQAAAAAAHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAACFwAAAAAAFwAAAAAFFwAAAAABQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAAFwAAAAAAFwAAAAADFwAAAAACFwAAAAAGFwAAAAAEQQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAABFwAAAAAEQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAGeQAAAAAAFwAAAAAAQQAAAAAAVgAAAAAAVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAFFwAAAAABFwAAAAABFwAAAAACFwAAAAABFwAAAAAEQQAAAAAAVgAAAAAAVgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAADFwAAAAAFQQAAAAAAJwAAAAACQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAEFwAAAAABQQAAAAAAQQAAAAAAVQAAAAAAVQAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAFAAAAAAAAFwAAAAABFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAABFwAAAAACFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAGFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAAGFwAAAAABAAAAAAAAAAAAAAAAFwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAGFwAAAAACAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFFwAAAAAFFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAADFwAAAAAFFwAAAAABFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAABFwAAAAADFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: BwAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAABwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: FwAAAAADFwAAAAABFwAAAAADFwAAAAADFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAEFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAAFwAAAAAGFwAAAAADFwAAAAACFwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAABFwAAAAAFFwAAAAAFFwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAACFwAAAAAEFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAGFwAAAAAFFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAADFwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAGFwAAAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAAAFwAAAAAGFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAFAAAAAAAAFwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: MapGrid
- type: Broadphase
- - bodyStatus: InAir
+ - type: Physics
+ bodyStatus: InAir
angularDamping: 0.05
linearDamping: 0.05
fixedRotation: False
bodyType: Dynamic
- type: Physics
- - fixtures: {}
- type: Fixtures
+ - type: Fixtures
+ fixtures: {}
- type: OccluderTree
- type: SpreaderGrid
- type: GridPathfinding
- - gravityShakeSound: !type:SoundPathSpecifier
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
path: /Audio/Effects/alert.ogg
- type: Gravity
- - chunkCollection:
+ - type: DecalGrid
+ chunkCollection:
version: 2
nodes:
- node:
@@ -73,13 +76,132 @@ entities:
id: Caution
decals:
0: 3.018731,5.165427
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnBox
+ decals:
+ 18: 3,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 40: 16,-2
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 32: 5,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 17: 4,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 16: 3,7
+ 33: 6,7
+ 35: 5,7
+ 36: 4,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 34: 7,6
+ 37: 16,3
+ 38: 16,2
+ 39: 16,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 41: 11,-8
+ 42: 10,-8
+ 43: 7,-9
+ 44: 6,-9
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 2: 12,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 5: 8,2
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 11: 12,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 12: 8,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 28: 1,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNw
+ decals:
+ 29: 4,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSe
+ decals:
+ 30: 1,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSw
+ decals:
+ 31: 4,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 9: 12,1
+ 10: 12,0
+ 22: 1,2
+ 23: 1,1
+ 24: 1,0
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 6: 9,2
+ 7: 10,2
+ 8: 11,2
+ 26: 2,-1
+ 27: 3,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 13: 9,-1
+ 14: 10,-1
+ 15: 11,-1
+ 25: 2,3
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 3: 8,0
+ 4: 8,1
+ 19: 4,2
+ 20: 4,1
+ 21: 4,0
- node:
color: '#FF0000FF'
id: space
decals:
1: 3.018731,4.884177
- type: DecalGrid
- - version: 2
+ - type: GridAtmosphere
+ version: 2
data:
tiles:
0,0:
@@ -115,7 +237,7 @@ entities:
3,-1:
0: 65535
0,2:
- 0: 53247
+ 0: 61439
1,2:
0: 32767
2,1:
@@ -135,13 +257,13 @@ entities:
-2,1:
0: 53230
-1,2:
- 0: 11519
+ 0: 12031
-2,-2:
- 0: 65278
+ 0: 65534
-2,-1:
0: 61182
-2,-3:
- 0: 60596
+ 0: 60660
-1,-3:
0: 65535
4,-1:
@@ -151,57 +273,57 @@ entities:
4,1:
0: 2559
0,-4:
- 0: 64769
+ 0: 64897
2,-3:
0: 65527
4,-2:
- 0: 30587
+ 0: 30715
0,3:
- 0: 11
+ 0: 27
1,3:
- 0: 2185
+ 0: 2189
2,2:
- 0: 2127
+ 0: 2255
3,2:
- 0: 1
+ 0: 9
1,-4:
- 0: 62482
+ 0: 62483
2,-4:
- 0: 4640
+ 0: 12832
3,-4:
- 0: 8448
+ 0: 8960
3,-3:
- 0: 63250
+ 0: 63251
-3,1:
- 0: 2092
+ 0: 2094
-3,0:
- 0: 32900
+ 0: 32964
-2,2:
- 0: 104
+ 0: 232
-1,3:
0: 130
-3,-2:
- 0: 2112
+ 0: 3136
-3,-1:
- 0: 1152
+ 0: 1216
-2,-4:
- 0: 16896
+ 0: 25088
-1,-4:
- 0: 57744
+ 0: 60312
4,-3:
- 0: 4644
+ 0: 4902
5,-2:
0: 8193
5,-1:
- 0: 274
+ 0: 306
4,2:
0: 1
5,0:
- 0: 21249
+ 0: 29441
5,1:
0: 29459
5,2:
- 0: 167
+ 0: 175
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -219,4258 +341,4279 @@ entities:
- 0
- 0
chunkSize: 4
- type: GridAtmosphere
- type: GasTileOverlay
- type: RadiationGridResistance
- type: Shuttle
+ - type: NavMap
- proto: AirAlarm
entities:
- - uid: 2
+ - uid: 576
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 5.5,3.5
parent: 1
- type: Transform
- - devices:
- - 699
- - 692
- - 693
- - 694
- - 696
- - 695
- - 697
- - 701
- - 700
- - 698
+ - type: DeviceList
+ devices:
- 707
+ - 719
- 708
+ - 720
+ - 721
- 709
+ - 726
+ - 714
+ - 718
+ - 713
- 710
- - 703
- - 706
- - 705
- type: DeviceList
- - joinedGrid: 1
- type: AtmosDevice
+ - 711
+ - 722
+ - 723
+ - 712
+ - 725
+ - 384
+ - 716
+ - 724
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirCanister
entities:
- uid: 3
components:
- - anchored: True
+ - type: Transform
+ anchored: True
pos: 1.5,5.5
parent: 1
- type: Transform
- - bodyType: Static
- type: Physics
- - joinedGrid: 1
- type: AtmosDevice
+ - type: Physics
+ bodyType: Static
+ - type: AtmosDevice
+ joinedGrid: 1
- proto: AirlockExternalShuttleSyndicateLocked
entities:
- uid: 4
components:
- - desc: The ominous red light fills you with dread
+ - type: MetaData
+ desc: The ominous red light fills you with dread
name: suspicious airlock
- type: MetaData
- - pos: 3.5,6.5
+ - type: Transform
+ pos: 3.5,6.5
parent: 1
- type: Transform
- - links:
- - 793
- type: DeviceLinkSink
+ - type: DeviceLinkSink
+ links:
+ - 806
missingComponents:
- Docking
- proto: AirlockSyndicate
entities:
- uid: 5
components:
- - pos: 5.5,2.5
+ - type: Transform
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: MetaData
+ name: armory airlock
+ - type: Transform
+ pos: 2.5,-5.5
parent: 1
- type: Transform
- proto: AirlockSyndicateGlass
entities:
- uid: 6
components:
- - pos: 2.5,-1.5
+ - type: MetaData
+ name: kitchen airlock
+ - type: Transform
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- - secondsUntilStateChange: -1311.7554
- state: Opening
- type: Door
- - uid: 8
+ - uid: 7
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: rec-room airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 6.5,-1.5
parent: 1
- type: Transform
- - uid: 10
+ - uid: 8
components:
- - pos: 0.5,-0.5
+ - type: Transform
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- - uid: 11
+ - uid: 9
components:
- - pos: 9.5,-3.5
+ - type: MetaData
+ name: hydroponics airlock
+ - type: Transform
+ pos: 9.5,-3.5
parent: 1
- type: Transform
- - uid: 794
+ - uid: 10
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-0.5
parent: 1
- type: Transform
- proto: AirlockSyndicateGlassLocked
entities:
- - uid: 12
+ - uid: 11
components:
- - pos: 3.5,4.5
+ - type: MetaData
+ name: to-externals airlock
+ - type: Transform
+ pos: 3.5,4.5
parent: 1
- type: Transform
- - uid: 13
+ - uid: 950
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: bridge airlock
+ - type: Transform
pos: 7.5,-0.5
parent: 1
- type: Transform
- proto: AirlockSyndicateLocked
entities:
- - uid: 9
+ - uid: 13
components:
- - rot: -1.5707963267948966 rad
+ - type: MetaData
+ name: air supply
+ - type: Transform
pos: 2.5,5.5
parent: 1
- type: Transform
- uid: 14
components:
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: outpost maintenance
+ - type: Transform
pos: 0.5,3.5
parent: 1
- type: Transform
- - uid: 15
- components:
- - pos: 2.5,-5.5
- parent: 1
- type: Transform
- proto: AlwaysPoweredLightColoredFrostyBlue
entities:
- uid: 16
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-2.5
parent: 1
- type: Transform
- proto: AlwaysPoweredLightColoredRed
entities:
- uid: 17
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,7.5
parent: 1
- type: Transform
- - uid: 18
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,2.5
- parent: 1
- type: Transform
- - uid: 19
- components:
- - pos: 11.5,-2.5
- parent: 1
- type: Transform
- - uid: 20
- components:
- - rot: 1.5707963267948966 rad
- pos: 6.5,-3.5
- parent: 1
- type: Transform
- - uid: 21
- components:
- - pos: -1.5,-5.5
- parent: 1
- type: Transform
- - uid: 22
- components:
- - pos: 12.5,2.5
- parent: 1
- type: Transform
- proto: AlwaysPoweredSmallLightMaintenanceRed
entities:
- - uid: 864
+ - uid: 953
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-7.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
parent: 1
- type: Transform
- proto: APCBasic
entities:
- - uid: 23
+ - uid: 24
components:
- - pos: 2.5,4.5
+ - type: Transform
+ pos: 2.5,4.5
parent: 1
- type: Transform
- - uid: 24
+ - uid: 25
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,-5.5
parent: 1
- type: Transform
- - uid: 25
+ - uid: 26
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,0.5
parent: 1
- type: Transform
- - hasAccess: True
+ - type: Apc
+ hasAccess: True
lastExternalState: Good
lastChargeState: Full
- type: Apc
- proto: AsteroidAltRock
entities:
- - uid: 26
- components:
- - rot: -1.5707963267948966 rad
- pos: 10.5,4.5
- parent: 1
- type: Transform
- uid: 27
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,1.5
+ - type: Transform
+ pos: -5.5,2.5
parent: 1
- type: Transform
- uid: 28
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: -4.5,-0.5
parent: 1
- type: Transform
- uid: 29
components:
- - pos: 4.5,8.5
+ - type: Transform
+ pos: 4.5,8.5
parent: 1
- type: Transform
- uid: 30
components:
- - pos: 6.5,5.5
+ - type: Transform
+ pos: 6.5,5.5
parent: 1
- type: Transform
- uid: 31
components:
- - pos: 5.5,8.5
+ - type: Transform
+ pos: 5.5,8.5
parent: 1
- type: Transform
- uid: 32
components:
- - pos: 6.5,8.5
+ - type: Transform
+ pos: 6.5,8.5
parent: 1
- type: Transform
- uid: 33
components:
- - pos: 2.5,7.5
+ - type: Transform
+ pos: 2.5,7.5
parent: 1
- type: Transform
- uid: 34
components:
- - pos: 1.5,7.5
+ - type: Transform
+ pos: 0.5,7.5
parent: 1
- type: Transform
- uid: 35
components:
- - pos: 3.5,8.5
+ - type: Transform
+ pos: 3.5,8.5
parent: 1
- type: Transform
- uid: 36
components:
- - pos: 13.5,4.5
+ - type: Transform
+ pos: 14.5,3.5
parent: 1
- type: Transform
- uid: 37
components:
- - pos: 14.5,3.5
+ - type: Transform
+ pos: 14.5,4.5
parent: 1
- type: Transform
- uid: 38
components:
- - pos: 15.5,4.5
+ - type: Transform
+ pos: 15.5,4.5
parent: 1
- type: Transform
- uid: 39
components:
- - pos: 14.5,4.5
+ - type: Transform
+ pos: 16.5,-9.5
parent: 1
- type: Transform
- uid: 40
components:
- - pos: 13.5,5.5
+ - type: Transform
+ pos: 2.5,8.5
parent: 1
- type: Transform
- uid: 41
components:
- - pos: 12.5,4.5
+ - type: Transform
+ pos: 7.5,5.5
parent: 1
- type: Transform
- uid: 42
components:
- - pos: 2.5,8.5
+ - type: Transform
+ pos: 7.5,7.5
parent: 1
- type: Transform
- uid: 43
components:
- - pos: 7.5,5.5
+ - type: Transform
+ pos: 8.5,5.5
parent: 1
- type: Transform
- uid: 44
components:
- - pos: 7.5,7.5
+ - type: Transform
+ pos: 14.5,5.5
parent: 1
- type: Transform
- uid: 45
components:
- - pos: 8.5,4.5
- parent: 1
- type: Transform
- - uid: 46
- components:
- - pos: 8.5,5.5
+ - type: Transform
+ pos: -3.5,-10.5
parent: 1
- type: Transform
- uid: 47
components:
- - pos: 9.5,4.5
+ - type: Transform
+ pos: -5.5,-6.5
parent: 1
- type: Transform
- uid: 48
components:
- - pos: 11.5,4.5
+ - type: Transform
+ pos: -3.5,-5.5
parent: 1
- type: Transform
- uid: 49
components:
- - pos: 11.5,5.5
+ - type: Transform
+ pos: -3.5,-6.5
parent: 1
- type: Transform
- uid: 50
components:
- - pos: 9.5,5.5
+ - type: Transform
+ pos: -4.5,-2.5
parent: 1
- type: Transform
- uid: 51
components:
- - pos: 14.5,5.5
+ - type: Transform
+ pos: -3.5,-3.5
parent: 1
- type: Transform
- uid: 52
components:
- - pos: -3.5,-8.5
+ - type: Transform
+ pos: -4.5,-4.5
parent: 1
- type: Transform
- uid: 53
components:
- - pos: -3.5,-7.5
- parent: 1
- type: Transform
- - uid: 54
- components:
- - pos: -3.5,-6.5
+ - type: Transform
+ pos: -5.5,-4.5
parent: 1
- type: Transform
- uid: 55
components:
- - pos: -3.5,-5.5
+ - type: Transform
+ pos: -0.5,-12.5
parent: 1
- type: Transform
- uid: 56
components:
- - pos: -3.5,-4.5
+ - type: Transform
+ pos: -4.5,6.5
parent: 1
- type: Transform
- uid: 57
components:
- - pos: -3.5,-3.5
+ - type: Transform
+ pos: -3.5,6.5
parent: 1
- type: Transform
- uid: 58
components:
- - pos: -3.5,-2.5
+ - type: Transform
+ pos: -3.5,7.5
parent: 1
- type: Transform
- uid: 59
components:
- - pos: -3.5,-1.5
+ - type: Transform
+ pos: -2.5,7.5
parent: 1
- type: Transform
- uid: 60
components:
- - pos: -3.5,2.5
+ - type: Transform
+ pos: -1.5,7.5
parent: 1
- type: Transform
- uid: 61
components:
- - pos: -3.5,3.5
+ - type: Transform
+ pos: 0.5,8.5
parent: 1
- type: Transform
- uid: 62
components:
- - pos: -3.5,4.5
+ - type: Transform
+ pos: 0.5,10.5
parent: 1
- type: Transform
- uid: 63
components:
- - pos: -3.5,5.5
+ - type: Transform
+ pos: 3.5,9.5
parent: 1
- type: Transform
- uid: 64
components:
- - pos: -3.5,6.5
+ - type: Transform
+ pos: 4.5,9.5
parent: 1
- type: Transform
- uid: 65
components:
- - pos: -3.5,7.5
+ - type: Transform
+ pos: -0.5,8.5
parent: 1
- type: Transform
- uid: 66
components:
- - pos: -2.5,7.5
+ - type: Transform
+ pos: 1.5,8.5
parent: 1
- type: Transform
- uid: 67
components:
- - pos: -1.5,7.5
+ - type: Transform
+ pos: 6.5,10.5
parent: 1
- type: Transform
- uid: 68
components:
- - pos: -0.5,7.5
+ - type: Transform
+ pos: 0.5,9.5
parent: 1
- type: Transform
- uid: 69
components:
- - pos: 0.5,7.5
+ - type: Transform
+ pos: -0.5,7.5
parent: 1
- type: Transform
- uid: 70
components:
- - pos: 1.5,8.5
+ - type: Transform
+ pos: -4.5,7.5
parent: 1
- type: Transform
- uid: 71
components:
- - pos: -0.5,8.5
+ - type: Transform
+ pos: -8.5,6.5
parent: 1
- type: Transform
- uid: 72
components:
- - pos: 4.5,9.5
+ - type: Transform
+ pos: -1.5,-12.5
parent: 1
- type: Transform
- uid: 73
components:
- - pos: 3.5,9.5
+ - type: Transform
+ pos: -4.5,2.5
parent: 1
- type: Transform
- uid: 74
components:
- - pos: 5.5,9.5
+ - type: Transform
+ pos: -4.5,0.5
parent: 1
- type: Transform
- uid: 75
components:
- - pos: 2.5,9.5
+ - type: Transform
+ pos: -4.5,-1.5
parent: 1
- type: Transform
- uid: 76
components:
- - pos: 0.5,8.5
+ - type: Transform
+ pos: -3.5,-4.5
parent: 1
- type: Transform
- uid: 77
components:
- - pos: -4.5,6.5
+ - type: Transform
+ pos: -3.5,-2.5
parent: 1
- type: Transform
- uid: 78
components:
- - pos: -4.5,4.5
+ - type: Transform
+ pos: -3.5,-7.5
parent: 1
- type: Transform
- uid: 79
components:
- - pos: -4.5,3.5
+ - type: Transform
+ pos: -4.5,-8.5
parent: 1
- type: Transform
- uid: 80
components:
- - pos: -4.5,2.5
+ - type: Transform
+ pos: -4.5,-5.5
parent: 1
- type: Transform
- uid: 81
components:
- - pos: -4.5,0.5
+ - type: Transform
+ pos: -4.5,-9.5
parent: 1
- type: Transform
- uid: 82
components:
- - pos: -4.5,-1.5
+ - type: Transform
+ pos: -2.5,-9.5
parent: 1
- type: Transform
- uid: 83
components:
- - pos: -4.5,-2.5
+ - type: Transform
+ pos: -1.5,-9.5
parent: 1
- type: Transform
- uid: 84
components:
- - pos: -4.5,-4.5
+ - type: Transform
+ pos: 16.5,0.5
parent: 1
- type: Transform
- uid: 85
components:
- - pos: -4.5,-5.5
+ - type: Transform
+ pos: 16.5,1.5
parent: 1
- type: Transform
- uid: 86
components:
- - pos: -4.5,-7.5
- parent: 1
- type: Transform
- - uid: 87
- components:
- - pos: -4.5,-6.5
+ - type: Transform
+ pos: 3.5,-10.5
parent: 1
- type: Transform
- uid: 88
components:
- - pos: -3.5,-9.5
+ - type: Transform
+ pos: 6.5,-10.5
parent: 1
- type: Transform
- uid: 89
components:
- - pos: -2.5,-9.5
+ - type: Transform
+ pos: 7.5,-12.5
parent: 1
- type: Transform
- uid: 90
components:
- - pos: -1.5,-9.5
+ - type: Transform
+ pos: 9.5,-7.5
parent: 1
- type: Transform
- uid: 91
components:
- - pos: -0.5,-9.5
+ - type: Transform
+ pos: 8.5,-8.5
parent: 1
- type: Transform
- uid: 92
components:
- - pos: 1.5,-9.5
+ - type: Transform
+ pos: 13.5,-7.5
parent: 1
- type: Transform
- uid: 93
components:
- - pos: 2.5,-9.5
+ - type: Transform
+ pos: 14.5,-6.5
parent: 1
- type: Transform
- uid: 94
components:
- - pos: 16.5,1.5
+ - type: Transform
+ pos: 15.5,-6.5
parent: 1
- type: Transform
- uid: 95
components:
- - pos: 16.5,0.5
+ - type: Transform
+ pos: 15.5,-5.5
parent: 1
- type: Transform
- uid: 96
components:
- - pos: 0.5,-9.5
+ - type: Transform
+ pos: 15.5,-4.5
parent: 1
- type: Transform
- uid: 97
components:
- - pos: 3.5,-9.5
+ - type: Transform
+ pos: 16.5,-6.5
parent: 1
- type: Transform
- uid: 98
components:
- - pos: 4.5,-9.5
+ - type: Transform
+ pos: 15.5,-1.5
parent: 1
- type: Transform
- uid: 99
components:
- - pos: 5.5,-9.5
+ - type: Transform
+ pos: 15.5,-2.5
parent: 1
- type: Transform
- uid: 100
components:
- - pos: 6.5,-9.5
+ - type: Transform
+ pos: 18.5,-1.5
parent: 1
- type: Transform
- uid: 101
components:
- - pos: 8.5,-8.5
+ - type: Transform
+ pos: 16.5,-5.5
parent: 1
- type: Transform
- uid: 102
components:
- - pos: 9.5,-7.5
+ - type: Transform
+ pos: 16.5,-4.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
parent: 1
- type: Transform
- uid: 104
components:
- - pos: 12.5,-7.5
+ - type: Transform
+ pos: -1.5,-11.5
parent: 1
- type: Transform
- uid: 105
components:
- - pos: 14.5,-6.5
+ - type: Transform
+ pos: -2.5,11.5
parent: 1
- type: Transform
- uid: 106
components:
- - pos: 15.5,-6.5
+ - type: Transform
+ pos: 2.5,-12.5
parent: 1
- type: Transform
- uid: 107
components:
- - pos: 15.5,-5.5
+ - type: Transform
+ pos: 5.5,-10.5
parent: 1
- type: Transform
- uid: 108
components:
- - pos: 15.5,-4.5
+ - type: Transform
+ pos: 7.5,-11.5
parent: 1
- type: Transform
- uid: 109
components:
- - pos: 15.5,-3.5
+ - type: Transform
+ pos: 15.5,-8.5
parent: 1
- type: Transform
- uid: 110
components:
- - pos: 15.5,-2.5
+ - type: Transform
+ pos: 19.5,2.5
parent: 1
- type: Transform
- uid: 111
components:
- - pos: 15.5,-1.5
+ - type: Transform
+ pos: 17.5,5.5
parent: 1
- type: Transform
- uid: 112
components:
- - pos: 16.5,-2.5
+ - type: Transform
+ pos: 8.5,-12.5
parent: 1
- type: Transform
- uid: 113
components:
- - pos: 16.5,-3.5
+ - type: Transform
+ pos: 17.5,0.5
parent: 1
- type: Transform
- uid: 114
components:
- - pos: 16.5,-4.5
+ - type: Transform
+ pos: 17.5,-2.5
parent: 1
- type: Transform
- uid: 115
components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-10.5
+ - type: Transform
+ pos: 18.5,-0.5
parent: 1
- type: Transform
- uid: 116
components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-10.5
+ - type: Transform
+ pos: 18.5,3.5
parent: 1
- type: Transform
- uid: 117
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,-10.5
- parent: 1
- type: Transform
- - uid: 118
- components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,-10.5
+ - type: Transform
+ pos: 17.5,3.5
parent: 1
- type: Transform
- uid: 119
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-10.5
+ - type: Transform
+ pos: 19.5,3.5
parent: 1
- type: Transform
- uid: 120
components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,-10.5
+ - type: Transform
+ pos: 19.5,4.5
parent: 1
- type: Transform
- uid: 121
components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-10.5
+ - type: Transform
+ pos: 17.5,4.5
parent: 1
- type: Transform
- uid: 122
components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-8.5
+ - type: Transform
+ pos: 18.5,4.5
parent: 1
- type: Transform
- uid: 123
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,3.5
+ - type: Transform
+ pos: 16.5,4.5
parent: 1
- type: Transform
- uid: 124
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,4.5
+ - type: Transform
+ pos: 16.5,5.5
parent: 1
- type: Transform
- uid: 125
components:
- - pos: 9.5,-13.5
+ - type: Transform
+ pos: 15.5,5.5
parent: 1
- type: Transform
- uid: 126
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-0.5
+ - type: Transform
+ pos: 13.5,5.5
parent: 1
- type: Transform
- uid: 127
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-1.5
+ - type: Transform
+ pos: 11.5,8.5
parent: 1
- type: Transform
- uid: 128
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,1.5
+ - type: Transform
+ pos: 12.5,8.5
parent: 1
- type: Transform
- uid: 129
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,3.5
+ - type: Transform
+ pos: 9.5,6.5
parent: 1
- type: Transform
- uid: 130
components:
- - rot: 3.141592653589793 rad
- pos: 19.5,2.5
+ - type: Transform
+ pos: 8.5,8.5
parent: 1
- type: Transform
- uid: 131
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,4.5
+ - type: Transform
+ pos: 7.5,8.5
parent: 1
- type: Transform
- uid: 132
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,4.5
+ - type: Transform
+ pos: 7.5,9.5
parent: 1
- type: Transform
- uid: 133
components:
- - rot: 3.141592653589793 rad
- pos: 19.5,3.5
+ - type: Transform
+ pos: 9.5,8.5
parent: 1
- type: Transform
- uid: 134
components:
- - rot: 3.141592653589793 rad
- pos: 19.5,4.5
+ - type: Transform
+ pos: 13.5,6.5
parent: 1
- type: Transform
- uid: 135
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,5.5
+ - type: Transform
+ pos: 12.5,6.5
parent: 1
- type: Transform
- uid: 136
components:
- - rot: 3.141592653589793 rad
- pos: 15.5,5.5
+ - type: Transform
+ pos: 12.5,7.5
parent: 1
- type: Transform
- uid: 137
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,5.5
+ - type: Transform
+ pos: 14.5,6.5
parent: 1
- type: Transform
- uid: 138
components:
- - rot: 3.141592653589793 rad
- pos: 14.5,6.5
+ - type: Transform
+ pos: 17.5,-0.5
parent: 1
- type: Transform
- uid: 139
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,6.5
+ - type: Transform
+ pos: 20.5,0.5
parent: 1
- type: Transform
- uid: 140
components:
- - rot: 3.141592653589793 rad
- pos: 12.5,6.5
+ - type: Transform
+ pos: 17.5,1.5
parent: 1
- type: Transform
- uid: 141
components:
- - rot: 3.141592653589793 rad
- pos: 12.5,5.5
+ - type: Transform
+ pos: -0.5,13.5
parent: 1
- type: Transform
- uid: 142
components:
- - rot: 3.141592653589793 rad
- pos: 10.5,6.5
+ - type: Transform
+ pos: 0.5,13.5
parent: 1
- type: Transform
- uid: 143
components:
- - rot: 3.141592653589793 rad
- pos: 10.5,5.5
+ - type: Transform
+ pos: 19.5,1.5
parent: 1
- type: Transform
- uid: 144
components:
- - rot: 3.141592653589793 rad
- pos: 9.5,6.5
+ - type: Transform
+ pos: 21.5,2.5
parent: 1
- type: Transform
- uid: 145
components:
- - rot: 3.141592653589793 rad
- pos: 11.5,6.5
+ - type: Transform
+ pos: -6.5,9.5
parent: 1
- type: Transform
- uid: 146
components:
- - rot: 3.141592653589793 rad
- pos: 8.5,8.5
+ - type: Transform
+ pos: 19.5,5.5
parent: 1
- type: Transform
- uid: 147
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,8.5
+ - type: Transform
+ pos: 20.5,6.5
parent: 1
- type: Transform
- uid: 148
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,9.5
+ - type: Transform
+ pos: 20.5,7.5
parent: 1
- type: Transform
- uid: 149
components:
- - rot: 3.141592653589793 rad
- pos: 9.5,8.5
+ - type: Transform
+ pos: 1.5,12.5
parent: 1
- type: Transform
- uid: 150
components:
- - rot: 3.141592653589793 rad
- pos: 11.5,8.5
+ - type: Transform
+ pos: 20.5,5.5
parent: 1
- type: Transform
- uid: 151
components:
- - rot: 3.141592653589793 rad
- pos: 12.5,8.5
+ - type: Transform
+ pos: 22.5,8.5
parent: 1
- type: Transform
- uid: 152
components:
- - rot: 3.141592653589793 rad
- pos: 12.5,7.5
+ - type: Transform
+ pos: 21.5,8.5
parent: 1
- type: Transform
- uid: 153
components:
- - rot: 3.141592653589793 rad
- pos: 14.5,7.5
+ - type: Transform
+ pos: 21.5,6.5
parent: 1
- type: Transform
- uid: 154
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,0.5
+ - type: Transform
+ pos: 21.5,7.5
parent: 1
- type: Transform
- uid: 155
components:
- - rot: 3.141592653589793 rad
- pos: 19.5,1.5
+ - type: Transform
+ pos: -5.5,9.5
parent: 1
- type: Transform
- uid: 156
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-0.5
+ - type: Transform
+ pos: 20.5,2.5
parent: 1
- type: Transform
- uid: 157
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,0.5
+ - type: Transform
+ pos: 16.5,-2.5
parent: 1
- type: Transform
- uid: 158
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,3.5
+ - type: Transform
+ pos: -2.5,12.5
parent: 1
- type: Transform
- uid: 159
components:
- - rot: 3.141592653589793 rad
- pos: 19.5,5.5
+ - type: Transform
+ pos: -10.5,5.5
parent: 1
- type: Transform
- uid: 160
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,6.5
+ - type: Transform
+ pos: 17.5,-3.5
parent: 1
- type: Transform
- uid: 161
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,7.5
+ - type: Transform
+ pos: 17.5,-4.5
parent: 1
- type: Transform
- uid: 162
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,6.5
+ - type: Transform
+ pos: 18.5,-2.5
parent: 1
- type: Transform
- uid: 163
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,5.5
+ - type: Transform
+ pos: 14.5,-7.5
parent: 1
- type: Transform
- uid: 164
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,7.5
+ - type: Transform
+ pos: 12.5,-7.5
parent: 1
- type: Transform
- uid: 165
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,8.5
+ - type: Transform
+ pos: 9.5,-8.5
parent: 1
- type: Transform
- uid: 166
components:
- - rot: 3.141592653589793 rad
- pos: 23.5,9.5
+ - type: Transform
+ pos: 11.5,-10.5
parent: 1
- type: Transform
- uid: 167
components:
- - rot: 3.141592653589793 rad
- pos: 22.5,8.5
+ - type: Transform
+ pos: 11.5,-8.5
parent: 1
- type: Transform
- uid: 168
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,2.5
+ - type: Transform
+ pos: 14.5,-8.5
parent: 1
- type: Transform
- uid: 169
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,4.5
+ - type: Transform
+ pos: 12.5,-10.5
parent: 1
- type: Transform
- uid: 170
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-1.5
+ - type: Transform
+ pos: 10.5,-11.5
parent: 1
- type: Transform
- uid: 171
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,-1.5
+ - type: Transform
+ pos: 8.5,-10.5
parent: 1
- type: Transform
- uid: 172
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,-2.5
+ - type: Transform
+ pos: 9.5,-10.5
parent: 1
- type: Transform
- uid: 173
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-2.5
+ - type: Transform
+ pos: -9.5,0.5
parent: 1
- type: Transform
- uid: 174
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-2.5
+ - type: Transform
+ pos: 13.5,-8.5
parent: 1
- type: Transform
- uid: 175
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-3.5
+ - type: Transform
+ pos: 17.5,-6.5
parent: 1
- type: Transform
- uid: 176
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-4.5
+ - type: Transform
+ pos: 12.5,-8.5
parent: 1
- type: Transform
- uid: 177
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-7.5
+ - type: Transform
+ pos: 15.5,-3.5
parent: 1
- type: Transform
- uid: 178
components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-7.5
+ - type: Transform
+ pos: 16.5,-3.5
parent: 1
- type: Transform
- uid: 179
components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-8.5
+ - type: Transform
+ pos: 17.5,-7.5
parent: 1
- type: Transform
- uid: 180
components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-10.5
+ - type: Transform
+ pos: 16.5,-7.5
parent: 1
- type: Transform
- uid: 181
components:
- - rot: 3.141592653589793 rad
- pos: 12.5,-8.5
+ - type: Transform
+ pos: 15.5,-7.5
parent: 1
- type: Transform
- uid: 182
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-8.5
+ - type: Transform
+ pos: -9.5,-1.5
parent: 1
- type: Transform
- uid: 183
components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-10.5
+ - type: Transform
+ pos: 10.5,-10.5
parent: 1
- type: Transform
- uid: 184
components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-10.5
+ - type: Transform
+ pos: 9.5,-11.5
parent: 1
- type: Transform
- uid: 185
components:
- - rot: 3.141592653589793 rad
- pos: 11.5,-10.5
- parent: 1
- type: Transform
- - uid: 186
- components:
- - rot: 3.141592653589793 rad
- pos: 12.5,-10.5
+ - type: Transform
+ pos: 0.5,-15.5
parent: 1
- type: Transform
- uid: 187
components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-9.5
+ - type: Transform
+ pos: -9.5,-5.5
parent: 1
- type: Transform
- uid: 188
components:
- - rot: 3.141592653589793 rad
- pos: 14.5,-8.5
+ - type: Transform
+ pos: -7.5,-10.5
parent: 1
- type: Transform
- uid: 189
components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-7.5
+ - type: Transform
+ pos: 17.5,-5.5
parent: 1
- type: Transform
- uid: 190
components:
- - rot: 3.141592653589793 rad
- pos: 15.5,-8.5
+ - type: Transform
+ pos: -6.5,-10.5
parent: 1
- type: Transform
- uid: 191
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-5.5
+ - type: Transform
+ pos: -5.5,-11.5
parent: 1
- type: Transform
- uid: 192
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-6.5
+ - type: Transform
+ pos: 14.5,-9.5
parent: 1
- type: Transform
- uid: 193
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-7.5
+ - type: Transform
+ pos: -5.5,-12.5
parent: 1
- type: Transform
- uid: 194
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-7.5
+ - type: Transform
+ pos: 18.5,-6.5
parent: 1
- type: Transform
- uid: 195
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-6.5
+ - type: Transform
+ pos: -6.5,-12.5
parent: 1
- type: Transform
- uid: 196
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-5.5
+ - type: Transform
+ pos: 20.5,-2.5
parent: 1
- type: Transform
- uid: 197
components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-11.5
+ - type: Transform
+ pos: 20.5,-1.5
parent: 1
- type: Transform
- uid: 198
components:
- - rot: 3.141592653589793 rad
- pos: 9.5,-11.5
+ - type: Transform
+ pos: 21.5,4.5
parent: 1
- type: Transform
- uid: 199
components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-11.5
+ - type: Transform
+ pos: 20.5,3.5
parent: 1
- type: Transform
- uid: 200
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-11.5
+ - type: Transform
+ pos: 20.5,4.5
parent: 1
- type: Transform
- uid: 201
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-12.5
+ - type: Transform
+ pos: 14.5,7.5
parent: 1
- type: Transform
- uid: 202
components:
- - rot: 3.141592653589793 rad
- pos: 12.5,-13.5
+ - type: Transform
+ pos: 15.5,7.5
parent: 1
- type: Transform
- uid: 203
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,-8.5
+ - type: Transform
+ pos: -3.5,-13.5
parent: 1
- type: Transform
- uid: 204
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-9.5
+ - type: Transform
+ pos: 3.5,10.5
parent: 1
- type: Transform
- uid: 205
components:
- - rot: 3.141592653589793 rad
- pos: 17.5,-10.5
+ - type: Transform
+ pos: 2.5,10.5
parent: 1
- type: Transform
- uid: 206
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-11.5
+ - type: Transform
+ pos: 1.5,10.5
parent: 1
- type: Transform
- uid: 207
components:
- - rot: 3.141592653589793 rad
- pos: 19.5,-7.5
+ - type: Transform
+ pos: 5.5,10.5
parent: 1
- type: Transform
- uid: 208
components:
- - rot: 3.141592653589793 rad
- pos: 20.5,-7.5
+ - type: Transform
+ pos: 5.5,9.5
parent: 1
- type: Transform
- uid: 209
components:
- - rot: 3.141592653589793 rad
- pos: 18.5,-6.5
+ - type: Transform
+ pos: 5.5,11.5
parent: 1
- type: Transform
- uid: 210
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,-3.5
+ - type: Transform
+ pos: 6.5,9.5
parent: 1
- type: Transform
- uid: 211
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,-4.5
+ - type: Transform
+ pos: 3.5,11.5
parent: 1
- type: Transform
- uid: 212
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,2.5
+ - type: Transform
+ pos: 1.5,9.5
parent: 1
- type: Transform
- uid: 213
components:
- - rot: 3.141592653589793 rad
- pos: 21.5,4.5
+ - type: Transform
+ pos: 2.5,9.5
parent: 1
- type: Transform
- uid: 214
components:
- - rot: 3.141592653589793 rad
- pos: 22.5,3.5
+ - type: Transform
+ pos: -0.5,9.5
parent: 1
- type: Transform
- uid: 215
components:
- - rot: 3.141592653589793 rad
- pos: 16.5,8.5
+ - type: Transform
+ pos: -1.5,8.5
parent: 1
- type: Transform
- uid: 216
components:
- - rot: 3.141592653589793 rad
- pos: 15.5,7.5
+ - type: Transform
+ pos: -0.5,10.5
parent: 1
- type: Transform
- uid: 217
components:
- - rot: 3.141592653589793 rad
- pos: 11.5,10.5
+ - type: Transform
+ pos: -2.5,9.5
parent: 1
- type: Transform
- uid: 218
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,10.5
+ - type: Transform
+ pos: -3.5,-14.5
parent: 1
- type: Transform
- uid: 219
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,11.5
+ - type: Transform
+ pos: -1.5,9.5
parent: 1
- type: Transform
- uid: 220
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,11.5
+ - type: Transform
+ pos: -3.5,5.5
parent: 1
- type: Transform
- uid: 221
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,11.5
+ - type: Transform
+ pos: -7.5,6.5
parent: 1
- type: Transform
- uid: 222
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,10.5
+ - type: Transform
+ pos: -5.5,5.5
parent: 1
- type: Transform
- uid: 223
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,10.5
+ - type: Transform
+ pos: -5.5,4.5
parent: 1
- type: Transform
- uid: 224
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,9.5
+ - type: Transform
+ pos: 4.5,11.5
parent: 1
- type: Transform
- uid: 225
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,10.5
+ - type: Transform
+ pos: -1.5,10.5
parent: 1
- type: Transform
- uid: 226
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,9.5
+ - type: Transform
+ pos: -0.5,-14.5
parent: 1
- type: Transform
- uid: 227
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,9.5
+ - type: Transform
+ pos: 9.5,-13.5
parent: 1
- type: Transform
- uid: 228
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,9.5
+ - type: Transform
+ pos: 3.5,12.5
parent: 1
- type: Transform
- uid: 229
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,8.5
+ - type: Transform
+ pos: 4.5,-15.5
parent: 1
- type: Transform
- uid: 230
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,8.5
+ - type: Transform
+ pos: 4.5,-14.5
parent: 1
- type: Transform
- uid: 231
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,9.5
+ - type: Transform
+ pos: 5.5,-15.5
parent: 1
- type: Transform
- uid: 232
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,8.5
+ - type: Transform
+ pos: 9.5,-14.5
parent: 1
- type: Transform
- uid: 233
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,9.5
+ - type: Transform
+ pos: 6.5,11.5
parent: 1
- type: Transform
- uid: 234
components:
- - rot: 3.141592653589793 rad
- pos: -4.5,7.5
+ - type: Transform
+ pos: 12.5,-13.5
parent: 1
- type: Transform
- uid: 235
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,6.5
+ - type: Transform
+ pos: 13.5,-12.5
parent: 1
- type: Transform
- uid: 236
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,5.5
+ - type: Transform
+ pos: -4.5,8.5
parent: 1
- type: Transform
- uid: 237
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,4.5
+ - type: Transform
+ pos: -3.5,8.5
parent: 1
- type: Transform
- uid: 238
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,10.5
+ - type: Transform
+ pos: -2.5,8.5
parent: 1
- type: Transform
- uid: 239
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,11.5
+ - type: Transform
+ pos: -6.5,6.5
parent: 1
- type: Transform
- uid: 240
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,12.5
+ - type: Transform
+ pos: -5.5,6.5
parent: 1
- type: Transform
- uid: 241
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,13.5
+ - type: Transform
+ pos: -4.5,4.5
parent: 1
- type: Transform
- uid: 242
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,12.5
+ - type: Transform
+ pos: 13.5,-11.5
parent: 1
- type: Transform
- uid: 243
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,12.5
+ - type: Transform
+ pos: -9.5,4.5
parent: 1
- type: Transform
- uid: 244
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,12.5
+ - type: Transform
+ pos: -8.5,4.5
parent: 1
- type: Transform
- uid: 245
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,12.5
+ - type: Transform
+ pos: -8.5,3.5
parent: 1
- type: Transform
- uid: 246
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,13.5
+ - type: Transform
+ pos: -7.5,3.5
parent: 1
- type: Transform
- uid: 247
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,14.5
+ - type: Transform
+ pos: -6.5,3.5
parent: 1
- type: Transform
- uid: 248
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,11.5
+ - type: Transform
+ pos: -5.5,3.5
parent: 1
- type: Transform
- uid: 249
components:
- - rot: 3.141592653589793 rad
- pos: -4.5,8.5
+ - type: Transform
+ pos: -6.5,5.5
parent: 1
- type: Transform
- uid: 250
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,9.5
+ - type: Transform
+ pos: -4.5,1.5
parent: 1
- type: Transform
- uid: 251
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,9.5
+ - type: Transform
+ pos: -6.5,2.5
parent: 1
- type: Transform
- uid: 252
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,10.5
+ - type: Transform
+ pos: -8.5,1.5
parent: 1
- type: Transform
- uid: 253
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,6.5
+ - type: Transform
+ pos: -7.5,0.5
parent: 1
- type: Transform
- uid: 254
components:
- - rot: 3.141592653589793 rad
- pos: -7.5,6.5
+ - type: Transform
+ pos: -5.5,0.5
parent: 1
- type: Transform
- uid: 255
components:
- - rot: 3.141592653589793 rad
- pos: -8.5,6.5
+ - type: Transform
+ pos: -6.5,0.5
parent: 1
- type: Transform
- uid: 256
components:
- - rot: 3.141592653589793 rad
- pos: -10.5,5.5
+ - type: Transform
+ pos: 18.5,-11.5
parent: 1
- type: Transform
- uid: 257
components:
- - rot: 3.141592653589793 rad
- pos: -9.5,4.5
+ - type: Transform
+ pos: -5.5,-0.5
parent: 1
- type: Transform
- uid: 258
components:
- - rot: 3.141592653589793 rad
- pos: -8.5,4.5
+ - type: Transform
+ pos: -5.5,-1.5
parent: 1
- type: Transform
- uid: 259
components:
- - rot: 3.141592653589793 rad
- pos: -8.5,3.5
+ - type: Transform
+ pos: 17.5,-10.5
parent: 1
- type: Transform
- uid: 260
components:
- - rot: 3.141592653589793 rad
- pos: -7.5,3.5
+ - type: Transform
+ pos: -8.5,-2.5
parent: 1
- type: Transform
- uid: 261
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,3.5
+ - type: Transform
+ pos: -7.5,-2.5
parent: 1
- type: Transform
- uid: 262
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,3.5
+ - type: Transform
+ pos: 16.5,-8.5
parent: 1
- type: Transform
- uid: 263
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,5.5
+ - type: Transform
+ pos: 17.5,-9.5
parent: 1
- type: Transform
- uid: 264
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,2.5
+ - type: Transform
+ pos: -3.5,-1.5
parent: 1
- type: Transform
- uid: 265
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,2.5
+ - type: Transform
+ pos: 19.5,-7.5
parent: 1
- type: Transform
- uid: 266
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,1.5
+ - type: Transform
+ pos: -5.5,-2.5
parent: 1
- type: Transform
- uid: 267
components:
- - rot: 3.141592653589793 rad
- pos: -7.5,1.5
+ - type: Transform
+ pos: -6.5,-7.5
parent: 1
- type: Transform
- uid: 268
components:
- - rot: 3.141592653589793 rad
- pos: -7.5,0.5
+ - type: Transform
+ pos: -4.5,-6.5
parent: 1
- type: Transform
- uid: 269
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,0.5
+ - type: Transform
+ pos: -4.5,-10.5
parent: 1
- type: Transform
- uid: 270
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,0.5
+ - type: Transform
+ pos: -4.5,-7.5
parent: 1
- type: Transform
- uid: 271
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-0.5
+ - type: Transform
+ pos: -5.5,-8.5
parent: 1
- type: Transform
- uid: 272
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-1.5
+ - type: Transform
+ pos: -3.5,-8.5
parent: 1
- type: Transform
- uid: 273
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-2.5
+ - type: Transform
+ pos: -2.5,-11.5
parent: 1
- type: Transform
- uid: 274
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-1.5
+ - type: Transform
+ pos: -3.5,-9.5
parent: 1
- type: Transform
- uid: 275
components:
- - rot: 3.141592653589793 rad
- pos: -7.5,-2.5
+ - type: Transform
+ pos: -1.5,-10.5
parent: 1
- type: Transform
- uid: 276
components:
- - rot: 3.141592653589793 rad
- pos: -7.5,-4.5
+ - type: Transform
+ pos: -5.5,-7.5
parent: 1
- type: Transform
- uid: 277
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-4.5
+ - type: Transform
+ pos: -2.5,-10.5
parent: 1
- type: Transform
- uid: 278
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-4.5
+ - type: Transform
+ pos: -0.5,-10.5
parent: 1
- type: Transform
- uid: 279
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-2.5
+ - type: Transform
+ pos: -0.5,-11.5
parent: 1
- type: Transform
- uid: 280
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-3.5
+ - type: Transform
+ pos: 0.5,-13.5
parent: 1
- type: Transform
- uid: 281
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-5.5
+ - type: Transform
+ pos: 2.5,-10.5
parent: 1
- type: Transform
- uid: 282
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-6.5
+ - type: Transform
+ pos: 2.5,-11.5
parent: 1
- type: Transform
- uid: 283
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-7.5
+ - type: Transform
+ pos: 20.5,-7.5
parent: 1
- type: Transform
- uid: 284
components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-8.5
+ - type: Transform
+ pos: 6.5,-13.5
parent: 1
- type: Transform
- uid: 285
components:
- - rot: 3.141592653589793 rad
- pos: -5.5,-8.5
+ - type: Transform
+ pos: 5.5,-9.5
parent: 1
- type: Transform
- uid: 286
components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-9.5
+ - type: Transform
+ pos: 6.5,-11.5
parent: 1
- type: Transform
- uid: 287
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-10.5
+ - type: Transform
+ pos: 7.5,-10.5
parent: 1
- type: Transform
- uid: 288
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-10.5
+ - type: Transform
+ pos: 21.5,-4.5
parent: 1
- type: Transform
- uid: 289
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,-11.5
+ - type: Transform
+ pos: 6.5,-9.5
parent: 1
- type: Transform
- uid: 290
components:
- - rot: 3.141592653589793 rad
- pos: -4.5,-10.5
+ - type: Transform
+ pos: 21.5,-3.5
parent: 1
- type: Transform
- uid: 291
components:
- - rot: 3.141592653589793 rad
- pos: -2.5,-11.5
+ - type: Transform
+ pos: 3.5,-11.5
parent: 1
- type: Transform
- uid: 292
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-11.5
+ - type: Transform
+ pos: 5.5,-11.5
parent: 1
- type: Transform
- uid: 293
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-11.5
+ - type: Transform
+ pos: 3.5,-13.5
parent: 1
- type: Transform
- uid: 294
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: 0.5,-10.5
parent: 1
- type: Transform
- uid: 295
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-11.5
+ - type: Transform
+ pos: -0.5,-9.5
parent: 1
- type: Transform
- uid: 296
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,-11.5
+ - type: Transform
+ pos: -7.5,-6.5
parent: 1
- type: Transform
- uid: 297
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-11.5
+ - type: Transform
+ pos: -5.5,-5.5
parent: 1
- type: Transform
- uid: 298
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-11.5
+ - type: Transform
+ pos: 8.5,-11.5
parent: 1
- type: Transform
- uid: 299
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-11.5
+ - type: Transform
+ pos: 4.5,-12.5
parent: 1
- type: Transform
- uid: 300
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-11.5
+ - type: Transform
+ pos: 4.5,-11.5
parent: 1
- type: Transform
- uid: 301
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-10.5
+ - type: Transform
+ pos: 22.5,3.5
parent: 1
- type: Transform
- uid: 302
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-11.5
+ - type: Transform
+ pos: 0.5,-11.5
parent: 1
- type: Transform
- uid: 303
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-11.5
+ - type: Transform
+ pos: 0.5,-12.5
parent: 1
- type: Transform
- uid: 304
components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-12.5
+ - type: Transform
+ pos: 1.5,-11.5
parent: 1
- type: Transform
- uid: 305
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-12.5
+ - type: Transform
+ pos: 23.5,9.5
parent: 1
- type: Transform
- - uid: 306
- components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-12.5
- parent: 1
- type: Transform
- uid: 307
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-12.5
+ - type: Transform
+ pos: 11.5,10.5
parent: 1
- type: Transform
- uid: 308
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-13.5
+ - type: Transform
+ pos: 7.5,12.5
parent: 1
- type: Transform
- uid: 309
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-13.5
+ - type: Transform
+ pos: 7.5,13.5
parent: 1
- type: Transform
- uid: 310
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-12.5
- parent: 1
- type: Transform
- - uid: 311
- components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-12.5
+ - type: Transform
+ pos: 7.5,14.5
parent: 1
- type: Transform
- uid: 312
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: -6.5,-6.5
parent: 1
- type: Transform
- uid: 313
components:
- - rot: 3.141592653589793 rad
- pos: -6.5,-7.5
+ - type: Transform
+ pos: -7.5,-4.5
parent: 1
- type: Transform
- uid: 314
components:
- - pos: 9.5,-14.5
+ - type: Transform
+ pos: -6.5,-4.5
parent: 1
- type: Transform
- uid: 315
components:
- - pos: 4.5,-14.5
+ - type: Transform
+ pos: -6.5,-2.5
parent: 1
- type: Transform
- uid: 316
components:
- - pos: 5.5,-15.5
+ - type: Transform
+ pos: -6.5,-1.5
parent: 1
- type: Transform
- uid: 317
components:
- - pos: -0.5,-14.5
+ - type: Transform
+ pos: -6.5,1.5
parent: 1
- type: Transform
- uid: 318
components:
- - pos: 0.5,-13.5
+ - type: Transform
+ pos: -7.5,1.5
parent: 1
- type: Transform
- uid: 319
components:
- - pos: 0.5,-12.5
+ - type: Transform
+ pos: 3.5,-9.5
parent: 1
- type: Transform
- uid: 320
components:
- - pos: 0.5,-15.5
+ - type: Transform
+ pos: 4.5,-9.5
parent: 1
- type: Transform
- uid: 321
components:
- - pos: -3.5,-13.5
+ - type: Transform
+ pos: 2.5,-9.5
parent: 1
- type: Transform
- uid: 322
components:
- - pos: -3.5,-14.5
+ - type: Transform
+ pos: 12.5,4.5
parent: 1
- type: Transform
- uid: 323
components:
- - pos: -5.5,-11.5
+ - type: Transform
+ pos: 10.5,4.5
parent: 1
- type: Transform
- uid: 324
components:
- - pos: -5.5,-12.5
+ - type: Transform
+ pos: 13.5,4.5
parent: 1
- type: Transform
- uid: 325
components:
- - pos: -6.5,-13.5
+ - type: Transform
+ pos: 12.5,5.5
parent: 1
- type: Transform
- uid: 326
components:
- - pos: -6.5,-10.5
+ - type: Transform
+ pos: -3.5,4.5
parent: 1
- type: Transform
- uid: 327
components:
- - pos: -7.5,-10.5
+ - type: Transform
+ pos: 10.5,5.5
parent: 1
- type: Transform
- uid: 328
components:
- - pos: -7.5,-6.5
+ - type: Transform
+ pos: 9.5,4.5
parent: 1
- type: Transform
- uid: 329
components:
- - pos: -8.5,-5.5
+ - type: Transform
+ pos: 9.5,5.5
parent: 1
- type: Transform
- uid: 330
components:
- - pos: -9.5,-6.5
+ - type: Transform
+ pos: 11.5,5.5
parent: 1
- type: Transform
- uid: 331
components:
- - pos: -8.5,-2.5
- parent: 1
- type: Transform
- - uid: 332
- components:
- - pos: -9.5,-1.5
+ - type: Transform
+ pos: 10.5,6.5
parent: 1
- type: Transform
- uid: 333
components:
- - pos: -9.5,0.5
+ - type: Transform
+ pos: 11.5,4.5
parent: 1
- type: Transform
- uid: 334
components:
- - pos: -8.5,1.5
+ - type: Transform
+ pos: 0.5,-9.5
parent: 1
- type: Transform
- - uid: 761
+ - uid: 337
components:
- - pos: 2.5,-8.5
+ - type: Transform
+ pos: 1.5,7.5
parent: 1
- type: Transform
- - uid: 762
+ - uid: 339
components:
- - pos: 1.5,-8.5
+ - type: Transform
+ pos: 1.5,-10.5
parent: 1
- type: Transform
- - uid: 763
+ - uid: 364
components:
- - pos: 5.5,-8.5
+ - type: Transform
+ pos: 8.5,4.5
parent: 1
- type: Transform
- - uid: 805
+ - uid: 372
components:
- - pos: 3.5,-8.5
+ - type: Transform
+ pos: 11.5,6.5
parent: 1
- type: Transform
- - uid: 921
+ - uid: 373
components:
- - pos: 4.5,-8.5
+ - type: Transform
+ pos: 1.5,-9.5
parent: 1
- type: Transform
- - uid: 922
+ - uid: 374
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ pos: -4.5,3.5
+ parent: 1
+ - uid: 616
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 17.5,-1.5
+ parent: 1
+- proto: AsteroidAltRockMining
+ entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 1
+ - uid: 306
components:
- - pos: 0.5,-8.5
+ - type: Transform
+ pos: 16.5,8.5
parent: 1
- type: Transform
- proto: AtmosDeviceFanTiny
entities:
- - uid: 335
+ - uid: 341
components:
- - pos: 3.5,6.5
+ - type: Transform
+ pos: 3.5,6.5
parent: 1
- type: Transform
- proto: Bed
entities:
- - uid: 336
+ - uid: 342
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
- - uid: 337
+ - uid: 343
components:
- - pos: 6.5,1.5
+ - type: Transform
+ pos: 6.5,1.5
parent: 1
- type: Transform
- - uid: 338
+ - uid: 344
components:
- - pos: 6.5,3.5
+ - type: Transform
+ pos: 6.5,3.5
parent: 1
- type: Transform
- - uid: 339
+ - uid: 345
components:
- - pos: -1.5,1.5
+ - type: Transform
+ pos: -1.5,1.5
parent: 1
- type: Transform
- proto: BedsheetSyndie
entities:
- - uid: 340
+ - uid: 346
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -0.5,1.5
parent: 1
- type: Transform
- - uid: 341
+ - uid: 347
components:
- - pos: 6.5,1.5
+ - type: Transform
+ pos: 6.5,1.5
parent: 1
- type: Transform
- - uid: 342
+ - uid: 348
components:
- - pos: 6.5,3.5
+ - type: Transform
+ pos: 6.5,3.5
parent: 1
- type: Transform
- - uid: 343
+ - uid: 349
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,1.5
parent: 1
- type: Transform
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-4.5
+ parent: 1
+ - uid: 423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 1
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-5.5
+ parent: 1
+ - uid: 421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-4.5
+ parent: 1
+ - uid: 985
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1
- proto: BlastDoorOpen
entities:
- - uid: 344
+ - uid: 350
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 6.5,-6.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 345
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 351
components:
- - pos: 13.5,0.5
+ - type: Transform
+ pos: 13.5,0.5
parent: 1
- type: Transform
- - invokeCounter: 4
+ - type: DeviceLinkSink
+ invokeCounter: 4
links:
- - 792
- type: DeviceLinkSink
- - uid: 346
+ - 805
+ - uid: 352
components:
- - pos: 13.5,1.5
+ - type: Transform
+ pos: 13.5,1.5
parent: 1
- type: Transform
- - invokeCounter: 4
+ - type: DeviceLinkSink
+ invokeCounter: 4
links:
- - 792
- type: DeviceLinkSink
- - uid: 347
+ - 805
+ - uid: 353
components:
- - pos: 13.5,-0.5
+ - type: Transform
+ pos: 13.5,-0.5
parent: 1
- type: Transform
- - invokeCounter: 4
+ - type: DeviceLinkSink
+ invokeCounter: 4
links:
- - 792
- type: DeviceLinkSink
- - uid: 348
+ - 805
+ - uid: 354
components:
- - pos: 13.5,2.5
+ - type: Transform
+ pos: 13.5,2.5
parent: 1
- type: Transform
- - invokeCounter: 4
+ - type: DeviceLinkSink
+ invokeCounter: 4
links:
- - 792
- type: DeviceLinkSink
- - uid: 349
+ - 805
+ - uid: 355
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 7.5,-6.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 350
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 356
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 8.5,-6.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 351
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 357
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 10.5,-5.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 352
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 358
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 11.5,-5.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 353
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 359
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 12.5,-5.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 354
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 360
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 13.5,-5.5
parent: 1
- type: Transform
- - links:
- - 795
- type: DeviceLinkSink
- - uid: 947
+ - type: DeviceLinkSink
+ links:
+ - 807
+ - uid: 361
components:
- - pos: 10.5,-1.5
+ - type: Transform
+ pos: 10.5,-1.5
parent: 1
- type: Transform
- - links:
- - 792
- type: DeviceLinkSink
+ - type: DeviceLinkSink
+ links:
+ - 805
- proto: BoozeDispenser
entities:
- - uid: 355
+ - uid: 362
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- type: Emagged
- proto: BoxHandcuff
entities:
- - uid: 357
+ - uid: 118
components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- proto: BoxLethalshot
entities:
- - uid: 358
+ - uid: 365
components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- - uid: 359
+ - uid: 366
components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- proto: BoxShotgunFlare
entities:
- - uid: 360
+ - uid: 367
components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- proto: BriefcaseBrownFilled
entities:
- - uid: 374
- components:
- - rot: 6.283185307179586 rad
- pos: 4.443831,0.7256815
- parent: 1
- type: Transform
- - storageUsed: 44
- type: Storage
- - containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 399
- - 400
- - 401
- - 402
- - 403
- - 404
- - 405
- - 406
- - 407
- - 408
- - 409
- - 410
- - 411
- - 412
- - 413
- - 414
- - 415
- - 416
- - 417
- - 418
- - 375
- - 376
- - 377
- - 378
- - 379
- - 380
- - 381
- - 382
- - 383
- - 384
- - 385
- - 386
- - 387
- - 388
- - 389
- - 390
- - 391
- - 392
- - 393
- - 394
- - 395
- - 396
- - 397
- - 398
- type: ContainerContainer
-- proto: BriefcaseSyndie
- entities:
- - uid: 419
- components:
- - rot: 6.283185307179586 rad
- pos: 4.454247,1.5198011
- parent: 1
- type: Transform
- - storageUsed: 39
- type: Storage
- - containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 431
- - 420
- - 425
- - 424
- - 421
- - 426
- - 432
- - 430
- - 427
- - 422
- - 429
- - 423
- - 428
- type: ContainerContainer
-- proto: CableApcExtension
- entities:
- - uid: 433
- components:
- - pos: 7.5,0.5
- parent: 1
- type: Transform
- - uid: 434
- components:
- - pos: 8.5,0.5
- parent: 1
- type: Transform
- - uid: 435
- components:
- - pos: 9.5,0.5
- parent: 1
- type: Transform
- - uid: 436
- components:
- - pos: 9.5,1.5
- parent: 1
- type: Transform
- - uid: 437
+ - uid: 401
components:
- - pos: 9.5,-0.5
+ - type: Transform
+ pos: 12.580331,-0.57071495
parent: 1
- type: Transform
- - uid: 438
+ - uid: 402
components:
- - pos: 2.5,4.5
+ - type: Transform
+ pos: 12.615925,0.015501022
parent: 1
- type: Transform
- - uid: 439
+ - uid: 403
components:
- - pos: 2.5,3.5
+ - type: Transform
+ pos: 12.615925,-0.21887398
parent: 1
- type: Transform
+- proto: CableApcExtension
+ entities:
- uid: 440
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 7.5,0.5
parent: 1
- type: Transform
- uid: 441
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 8.5,0.5
parent: 1
- type: Transform
- uid: 442
components:
- - pos: 3.5,2.5
+ - type: Transform
+ pos: 9.5,0.5
parent: 1
- type: Transform
- uid: 443
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: 9.5,1.5
parent: 1
- type: Transform
- uid: 444
components:
- - pos: 3.5,1.5
+ - type: Transform
+ pos: 9.5,-0.5
parent: 1
- type: Transform
- uid: 445
components:
- - pos: 3.5,0.5
+ - type: Transform
+ pos: 2.5,4.5
parent: 1
- type: Transform
- uid: 446
components:
- - pos: 3.5,-5.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- uid: 447
components:
- - pos: 3.5,-4.5
+ - type: Transform
+ pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 448
components:
- - pos: 3.5,-3.5
+ - type: Transform
+ pos: 1.5,2.5
parent: 1
- type: Transform
- uid: 449
components:
- - pos: -1.5,-3.5
+ - type: Transform
+ pos: 3.5,2.5
parent: 1
- type: Transform
- uid: 450
components:
- - pos: 4.5,-3.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- uid: 451
components:
- - pos: 1.5,1.5
+ - type: Transform
+ pos: 3.5,1.5
parent: 1
- type: Transform
- uid: 452
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 3.5,0.5
parent: 1
- type: Transform
- uid: 453
components:
- - pos: 1.5,-0.5
+ - type: Transform
+ pos: 3.5,-5.5
parent: 1
- type: Transform
- uid: 454
components:
- - pos: 0.5,-0.5
+ - type: Transform
+ pos: 3.5,-4.5
parent: 1
- type: Transform
- uid: 455
components:
- - pos: -0.5,-0.5
+ - type: Transform
+ pos: 3.5,-3.5
parent: 1
- type: Transform
- uid: 456
components:
- - pos: -0.5,0.5
+ - type: Transform
+ pos: -1.5,-3.5
parent: 1
- type: Transform
- uid: 457
components:
- - pos: -1.5,-2.5
+ - type: Transform
+ pos: 4.5,-3.5
parent: 1
- type: Transform
- uid: 458
components:
- - pos: -1.5,-0.5
+ - type: Transform
+ pos: 1.5,1.5
parent: 1
- type: Transform
- uid: 459
components:
- - pos: -1.5,-1.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- uid: 460
components:
- - pos: 2.5,-5.5
+ - type: Transform
+ pos: 1.5,-0.5
parent: 1
- type: Transform
- uid: 461
components:
- - pos: 2.5,-6.5
+ - type: Transform
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- uid: 462
components:
- - pos: 1.5,-6.5
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- uid: 463
components:
- - pos: 0.5,-6.5
+ - type: Transform
+ pos: -0.5,0.5
parent: 1
- type: Transform
- uid: 464
components:
- - pos: -0.5,-6.5
+ - type: Transform
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- uid: 465
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: -1.5,-0.5
parent: 1
- type: Transform
- uid: 466
components:
- - pos: 0.5,3.5
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 467
components:
- - pos: -0.5,3.5
+ - type: Transform
+ pos: 2.5,-5.5
parent: 1
- type: Transform
- uid: 468
components:
- - pos: -1.5,3.5
+ - type: Transform
+ pos: 2.5,-6.5
parent: 1
- type: Transform
- uid: 469
components:
- - pos: -1.5,4.5
+ - type: Transform
+ pos: 1.5,-6.5
parent: 1
- type: Transform
- uid: 470
components:
- - pos: 10.5,-0.5
+ - type: Transform
+ pos: 0.5,-6.5
parent: 1
- type: Transform
- uid: 471
components:
- - pos: 10.5,-1.5
+ - type: Transform
+ pos: -0.5,-6.5
parent: 1
- type: Transform
- uid: 472
components:
- - pos: 10.5,-2.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 473
components:
- - pos: 10.5,-3.5
+ - type: Transform
+ pos: 0.5,3.5
parent: 1
- type: Transform
- uid: 474
components:
- - pos: 11.5,-3.5
+ - type: Transform
+ pos: -0.5,3.5
parent: 1
- type: Transform
- uid: 475
components:
- - pos: 12.5,-3.5
+ - type: Transform
+ pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 476
components:
- - pos: 7.5,-0.5
+ - type: Transform
+ pos: -1.5,4.5
parent: 1
- type: Transform
- uid: 477
components:
- - pos: 6.5,-0.5
+ - type: Transform
+ pos: 10.5,-0.5
parent: 1
- type: Transform
- uid: 478
components:
- - pos: 6.5,-1.5
+ - type: Transform
+ pos: 10.5,-1.5
parent: 1
- type: Transform
- uid: 479
components:
- - pos: 6.5,-2.5
+ - type: Transform
+ pos: 10.5,-2.5
parent: 1
- type: Transform
- uid: 480
components:
- - pos: 6.5,-3.5
+ - type: Transform
+ pos: 10.5,-3.5
parent: 1
- type: Transform
- uid: 481
components:
- - pos: 7.5,-3.5
+ - type: Transform
+ pos: 11.5,-3.5
parent: 1
- type: Transform
- uid: 482
components:
- - pos: 7.5,-4.5
+ - type: Transform
+ pos: 12.5,-3.5
parent: 1
- type: Transform
- uid: 483
components:
- - pos: 3.5,3.5
+ - type: Transform
+ pos: 7.5,-0.5
parent: 1
- type: Transform
- uid: 484
components:
- - pos: 4.5,3.5
+ - type: Transform
+ pos: 6.5,-0.5
parent: 1
- type: Transform
- uid: 485
components:
- - pos: 5.5,3.5
+ - type: Transform
+ pos: 6.5,-1.5
parent: 1
- type: Transform
-- proto: CableHV
- entities:
- uid: 486
components:
- - pos: -0.5,6.5
+ - type: Transform
+ pos: 6.5,-2.5
parent: 1
- type: Transform
- uid: 487
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: 6.5,-3.5
parent: 1
- type: Transform
- uid: 488
components:
- - pos: 0.5,5.5
+ - type: Transform
+ pos: 7.5,-3.5
parent: 1
- type: Transform
- uid: 489
components:
- - pos: -1.5,5.5
+ - type: Transform
+ pos: 7.5,-4.5
parent: 1
- type: Transform
- uid: 490
components:
- - pos: -1.5,6.5
+ - type: Transform
+ pos: 3.5,3.5
parent: 1
- type: Transform
- uid: 491
components:
- - pos: -1.5,4.5
+ - type: Transform
+ pos: 4.5,3.5
parent: 1
- type: Transform
- uid: 492
components:
- - pos: -1.5,3.5
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 10.5,2.5
parent: 1
- type: Transform
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+- proto: CableHV
+ entities:
- uid: 493
components:
- - pos: -0.5,3.5
+ - type: Transform
+ pos: -0.5,6.5
parent: 1
- type: Transform
- uid: 494
components:
- - pos: -2.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
- uid: 495
components:
- - pos: -2.5,4.5
+ - type: Transform
+ pos: 0.5,5.5
parent: 1
- type: Transform
- uid: 496
components:
- - pos: -2.5,3.5
+ - type: Transform
+ pos: -1.5,5.5
parent: 1
- type: Transform
- uid: 497
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: -1.5,6.5
parent: 1
- type: Transform
- uid: 498
components:
- - pos: -0.5,2.5
+ - type: Transform
+ pos: -1.5,4.5
parent: 1
- type: Transform
-- proto: CableMV
- entities:
- uid: 499
components:
- - pos: -1.5,4.5
+ - type: Transform
+ pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 500
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,3.5
parent: 1
- type: Transform
- uid: 501
components:
- - pos: 0.5,5.5
+ - type: Transform
+ pos: -2.5,5.5
parent: 1
- type: Transform
- uid: 502
components:
- - pos: -1.5,5.5
+ - type: Transform
+ pos: -2.5,4.5
parent: 1
- type: Transform
- uid: 503
components:
- - pos: -1.5,3.5
+ - type: Transform
+ pos: -2.5,3.5
parent: 1
- type: Transform
- uid: 504
components:
- - pos: -0.5,3.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 505
components:
- - pos: 1.5,3.5
+ - type: Transform
+ pos: -0.5,2.5
parent: 1
- type: Transform
+- proto: CableMV
+ entities:
- uid: 506
components:
- - pos: 0.5,3.5
+ - type: Transform
+ pos: -1.5,4.5
parent: 1
- type: Transform
- uid: 507
components:
- - pos: 2.5,3.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
- uid: 508
components:
- - pos: 2.5,4.5
+ - type: Transform
+ pos: 0.5,5.5
parent: 1
- type: Transform
- uid: 509
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: -1.5,5.5
parent: 1
- type: Transform
- uid: 510
components:
- - pos: 2.5,1.5
+ - type: Transform
+ pos: -1.5,3.5
parent: 1
- type: Transform
- uid: 511
components:
- - pos: 2.5,0.5
+ - type: Transform
+ pos: -0.5,3.5
parent: 1
- type: Transform
- uid: 512
components:
- - pos: 2.5,-0.5
+ - type: Transform
+ pos: 1.5,3.5
parent: 1
- type: Transform
- uid: 513
components:
- - pos: 2.5,-1.5
+ - type: Transform
+ pos: 0.5,3.5
parent: 1
- type: Transform
- uid: 514
components:
- - pos: 2.5,-2.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- uid: 515
components:
- - pos: 2.5,-3.5
+ - type: Transform
+ pos: 2.5,4.5
parent: 1
- type: Transform
- uid: 516
components:
- - pos: 2.5,-4.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- uid: 517
components:
- - pos: 3.5,-4.5
+ - type: Transform
+ pos: 2.5,1.5
parent: 1
- type: Transform
- uid: 518
components:
- - pos: 3.5,-5.5
+ - type: Transform
+ pos: 2.5,0.5
parent: 1
- type: Transform
- uid: 519
components:
- - pos: 3.5,-0.5
+ - type: Transform
+ pos: 2.5,-0.5
parent: 1
- type: Transform
- uid: 520
components:
- - pos: 4.5,-0.5
+ - type: Transform
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 521
components:
- - pos: 5.5,-0.5
+ - type: Transform
+ pos: 2.5,-2.5
parent: 1
- type: Transform
- uid: 522
components:
- - pos: 6.5,-0.5
+ - type: Transform
+ pos: 2.5,-3.5
parent: 1
- type: Transform
- uid: 523
components:
- - pos: 6.5,-0.5
+ - type: Transform
+ pos: 2.5,-4.5
parent: 1
- type: Transform
- uid: 524
components:
- - pos: 7.5,-0.5
+ - type: Transform
+ pos: 3.5,-4.5
parent: 1
- type: Transform
- uid: 525
components:
- - pos: 8.5,-0.5
+ - type: Transform
+ pos: 3.5,-5.5
parent: 1
- type: Transform
- uid: 526
components:
- - pos: 8.5,0.5
+ - type: Transform
+ pos: 3.5,-0.5
parent: 1
- type: Transform
- uid: 527
components:
- - pos: 7.5,0.5
+ - type: Transform
+ pos: 4.5,-0.5
parent: 1
- type: Transform
-- proto: ChairOfficeDark
- entities:
- uid: 528
components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,1.5
+ - type: Transform
+ pos: 5.5,-0.5
parent: 1
- type: Transform
- uid: 529
components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,1.5
+ - type: Transform
+ pos: 6.5,-0.5
parent: 1
- type: Transform
- uid: 530
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,0.5
+ - type: Transform
+ pos: 6.5,-0.5
parent: 1
- type: Transform
- uid: 531
components:
- - rot: 1.5707963267948966 rad
- pos: 3.5,1.5
- parent: 1
- type: Transform
-- proto: ClothingBackpackDuffelSyndicatePyjamaBundle
- entities:
- - uid: 948
- components:
- - rot: -1.5707963267948966 rad
- pos: 6.6718016,2.5031838
+ - type: Transform
+ pos: 7.5,-0.5
parent: 1
- type: Transform
-- proto: ClothingEyesBlindfold
- entities:
- - uid: 361
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 362
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 363
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 364
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ClothingMaskGasVoiceChameleon
- entities:
- uid: 532
components:
- - pos: 8.6825,1.9966505
+ - type: Transform
+ pos: 8.5,-0.5
parent: 1
- type: Transform
-- proto: ClothingMaskMuzzle
- entities:
- - uid: 365
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 366
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 367
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 368
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: CombatKnife
- entities:
- - uid: 369
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
- - uid: 370
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: ComfyChair
- entities:
- uid: 533
components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-4.5
+ - type: Transform
+ pos: 8.5,0.5
parent: 1
- type: Transform
- uid: 534
components:
- - pos: 1.5,2.5
+ - type: Transform
+ pos: 7.5,0.5
parent: 1
- type: Transform
- - uid: 535
+- proto: CarpetBlack
+ entities:
+ - uid: 381
components:
- - rot: -1.5707963267948966 rad
- pos: 8.5,-5.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 1
- type: Transform
- - uid: 536
+ - uid: 570
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-4.5
parent: 1
- type: Transform
- - uid: 537
+ - uid: 571
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 6.5,-5.5
parent: 1
- type: Transform
-- proto: ComputerBroken
- entities:
- - uid: 538
+ - uid: 572
components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,-0.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-4.5
parent: 1
- type: Transform
-- proto: ComputerCrewMonitoring
- entities:
- - uid: 539
+ - uid: 573
components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,0.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-5.5
parent: 1
- type: Transform
-- proto: ComputerIFFSyndicate
- entities:
- - uid: 540
+ - uid: 574
components:
- - pos: 9.5,2.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-5.5
parent: 1
- type: Transform
-- proto: ComputerShuttleSyndie
- entities:
- - uid: 541
+ - uid: 575
components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,1.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-4.5
parent: 1
- type: Transform
-- proto: CrateFoodDonkpocketSavory
- entities:
- - uid: 542
+ - uid: 960
components:
- - pos: -0.5,-5.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- - air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- type: EntityStorage
-- proto: CrowbarRed
- entities:
- - uid: 371
- components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
- - type: InsideEntityStorage
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 543
+ - uid: 964
components:
- - pos: -0.5,-1.5
+ - type: Transform
+ pos: 3.5,1.5
parent: 1
- type: Transform
-- proto: DiagnosisReportPaper
- entities:
- - uid: 545
+ - uid: 965
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 546
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 547
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 548
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 549
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
-- proto: DisposalPipe
- entities:
- - uid: 951
- components:
- - pos: 10.5,-3.5
+ - type: Transform
+ pos: 2.5,0.5
parent: 1
- type: Transform
- - uid: 952
+ - uid: 966
components:
- - pos: 10.5,-4.5
+ - type: Transform
+ pos: 3.5,0.5
parent: 1
- type: Transform
- - uid: 953
+ - uid: 967
components:
- - pos: 10.5,-5.5
+ - type: Transform
+ pos: 2.5,1.5
parent: 1
- type: Transform
-- proto: DisposalTrunk
- entities:
- - uid: 949
+ - uid: 968
components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-6.5
+ - type: Transform
+ pos: -1.5,1.5
parent: 1
- type: Transform
- - uid: 950
+ - uid: 969
components:
- - pos: 10.5,-2.5
+ - type: Transform
+ pos: -1.5,0.5
parent: 1
- type: Transform
-- proto: DisposalUnit
- entities:
- - uid: 103
+ - uid: 970
components:
- - pos: 10.5,-2.5
+ - type: Transform
+ pos: -2.5,0.5
parent: 1
- type: Transform
-- proto: DrinkMugDog
- entities:
- - uid: 590
+ - uid: 971
components:
- - rot: 6.283185307179586 rad
- pos: 1.6752021,1.4137775
+ - type: Transform
+ pos: -1.5,-0.5
parent: 1
- type: Transform
-- proto: DrinkMugHeart
- entities:
- - uid: 591
+ - uid: 972
components:
- - pos: 1.2883832,1.4021075
+ - type: Transform
+ pos: -0.5,-0.5
parent: 1
- type: Transform
-- proto: DrinkMugOne
- entities:
- - uid: 592
+ - uid: 973
components:
- - pos: 1.6477582,1.7614824
+ - type: Transform
+ pos: -0.5,0.5
parent: 1
- type: Transform
-- proto: DrinkMugRainbow
- entities:
- - uid: 593
+ - uid: 974
components:
- - pos: 1.3040082,1.7302322
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
-- proto: EncryptionKeyCargo
- entities:
- - uid: 595
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeyCommand
- entities:
- - uid: 596
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeyCommon
- entities:
- - uid: 597
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeyEngineering
- entities:
- - uid: 598
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeyMedical
- entities:
- - uid: 599
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeyScience
- entities:
- - uid: 600
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeySecurity
- entities:
- - uid: 601
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeyService
- entities:
- - uid: 602
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: EncryptionKeySyndie
- entities:
- - uid: 603
- components:
- - flags: InContainer
- type: MetaData
- - parent: 594
- type: Transform
- - canCollide: False
- type: Physics
-- proto: ExtinguisherCabinet
- entities:
- - uid: 604
+ - uid: 975
components:
- - rot: -1.5707963267948966 rad
- pos: 6.5,0.5
+ - type: Transform
+ pos: 6.5,1.5
parent: 1
- type: Transform
-- proto: FaxMachineSyndie
- entities:
- - uid: 605
+ - uid: 976
components:
- - pos: 8.5,2.5
+ - type: Transform
+ pos: 6.5,2.5
parent: 1
- type: Transform
-- proto: filingCabinetDrawer
- entities:
- - uid: 544
+ - uid: 977
components:
- - pos: 8.5,0.5
+ - type: Transform
+ pos: 6.5,3.5
parent: 1
- type: Transform
- - storageUsed: 45
- type: Storage
- - containers:
- storagebase: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 570
- - 571
- - 572
- - 573
- - 574
- - 575
- - 576
- - 577
- - 578
- - 579
- - 550
- - 551
- - 552
- - 553
- - 554
- - 555
- - 556
- - 557
- - 558
- - 559
- - 545
- - 546
- - 547
- - 548
- - 549
- - 565
- - 566
- - 567
- - 568
- - 569
- - 580
- - 581
- - 582
- - 583
- - 584
- - 585
- - 586
- - 587
- - 588
- - 589
- - 560
- - 561
- - 562
- - 563
- - 564
- type: ContainerContainer
-- proto: FireAlarm
- entities:
- - uid: 606
+ - uid: 978
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,-1.5
+ - type: Transform
+ pos: 9.5,1.5
parent: 1
- type: Transform
- - devices:
- - 613
- - 614
- - 607
- - 608
- - 609
- - 618
- - 616
- - 610
- - 612
- - 843
- type: DeviceList
- - joinedGrid: 1
- type: AtmosDevice
-- proto: Firelock
- entities:
- - uid: 607
+ - uid: 979
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,-0.5
+ - type: Transform
+ pos: 9.5,0.5
parent: 1
- type: Transform
- - uid: 608
+ - uid: 980
components:
- - rot: 3.141592653589793 rad
- pos: 7.5,-0.5
+ - type: Transform
+ pos: 10.5,0.5
parent: 1
- type: Transform
- - uid: 609
+ - uid: 981
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-1.5
+ - type: Transform
+ pos: 10.5,1.5
parent: 1
- type: Transform
- - uid: 610
+ - uid: 982
components:
- - rot: 3.141592653589793 rad
- pos: 5.5,2.5
+ - type: Transform
+ pos: 11.5,1.5
parent: 1
- type: Transform
- - uid: 611
+ - uid: 983
components:
- - rot: 3.141592653589793 rad
- pos: 3.5,4.5
+ - type: Transform
+ pos: 11.5,0.5
parent: 1
- type: Transform
- - uid: 612
+- proto: ChairOfficeDark
+ entities:
+ - uid: 535
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,5.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,1.5
parent: 1
- type: Transform
- - uid: 613
+ - uid: 536
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,3.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,1.5
parent: 1
- type: Transform
- - uid: 614
+- proto: CigPackSyndicate
+ entities:
+ - uid: 558
components:
- - rot: 3.141592653589793 rad
- pos: 0.5,-0.5
+ - type: Transform
+ pos: 4.7080255,1.4853511
parent: 1
- type: Transform
- - uid: 615
+ - uid: 569
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-1.5
+ - type: Transform
+ pos: 4.7236505,1.7666011
parent: 1
- type: Transform
- - uid: 616
+- proto: ClosetWallBlack
+ entities:
+ - uid: 405
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-5.5
+ - type: MetaData
+ desc: A closet packed with forged stamps
+ name: stamp closet
+ - type: Transform
+ pos: 10.5,3.5
parent: 1
- type: Transform
- - uid: 618
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 411
+ - 410
+ - 409
+ - 408
+ - 407
+ - 406
+ - 412
+ - 413
+ - 414
+ - 415
+ - 416
+ - 417
+ - 418
+ - 419
+ - 420
+- proto: ClosetWallMixed
+ entities:
+ - uid: 388
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-1.5
+ - type: MetaData
+ name: pyjama closet
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,2.5
parent: 1
- type: Transform
- - uid: 843
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 400
+ - 399
+ - 393
+ - 392
+ - 391
+ - 390
+ - 398
+ - 397
+ - 396
+ - 395
+ - 394
+ - 389
+- proto: ClothingHeadPyjamaSyndicateBlack
+ entities:
+ - uid: 393
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 395
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadPyjamaSyndicatePink
+ entities:
+ - uid: 396
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 399
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadPyjamaSyndicateRed
+ entities:
+ - uid: 389
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 391
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingMaskGasVoiceChameleon
+ entities:
+ - uid: 540
components:
- - pos: 9.5,-3.5
+ - type: Transform
+ pos: 11.346417,2.446512
parent: 1
- type: Transform
-- proto: ForensicReportPaper
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 10.971417,2.462137
+ parent: 1
+- proto: ClothingUniformJumpsuitPyjamaSyndicateBlack
+ entities:
+ - uid: 392
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 397
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitPyjamaSyndicatePink
+ entities:
+ - uid: 390
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 400
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingUniformJumpsuitPyjamaSyndicateRed
+ entities:
+ - uid: 394
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 398
+ components:
+ - type: Transform
+ parent: 388
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: CombatKnife
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 377
+ components:
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ComfyChair
+ entities:
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 1
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,0.5
+ parent: 1
+- proto: ComputerMassMedia
+ entities:
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 9.5,2.5
+ parent: 1
+- proto: ComputerRadar
entities:
- uid: 550
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,1.5
+ parent: 1
+ - type: RadarConsole
+ maxRange: 2048
+ - type: WorldLoader
+ radius: 2048
+- proto: CrateFoodDonkpocketSavory
+ entities:
- uid: 551
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: CrateServiceBureaucracy
+ entities:
+ - uid: 577
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+- proto: CrowbarRed
+ entities:
+ - uid: 378
+ components:
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: DefibrillatorCabinetFilled
+ entities:
- uid: 552
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 553
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+- proto: DiagnosisReportPaper
+ entities:
+ - uid: 432
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ pos: 8.472298,0.6316006
+ parent: 1
- uid: 554
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 555
+ - type: Transform
+ pos: 8.472298,0.6316006
+ parent: 1
+ - uid: 562
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 556
+ - type: Transform
+ pos: 8.472298,0.6316006
+ parent: 1
+ - uid: 564
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 557
+ - type: Transform
+ pos: 8.472298,0.6316006
+ parent: 1
+ - uid: 566
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 558
+ - type: Transform
+ pos: 8.472298,0.6316006
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 599
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 559
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 600
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
-- proto: GasPassiveVent
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 1
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 1
+- proto: DisposalTrunk
+ entities:
+ - uid: 602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-6.5
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 1
+- proto: DisposalUnit
+ entities:
+ - uid: 604
+ components:
+ - type: MetaData
+ name: escape hatch
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 1
+- proto: DrinkMugDog
+ entities:
+ - uid: 605
+ components:
+ - type: Transform
+ rot: 6.283185307179586 rad
+ pos: 1.6752021,1.4137775
+ parent: 1
+- proto: DrinkMugHeart
+ entities:
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 1.2883832,1.4021075
+ parent: 1
+- proto: DrinkMugOne
+ entities:
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 1.6477582,1.7614824
+ parent: 1
+- proto: DrinkMugRainbow
+ entities:
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 1.3040082,1.7302322
+ parent: 1
+- proto: EncryptionKeyCommand
+ entities:
+ - uid: 613
+ components:
+ - type: Transform
+ parent: 612
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyStationMaster
+ entities:
+ - uid: 614
+ components:
+ - type: Transform
+ parent: 612
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeySyndie
+ entities:
+ - uid: 615
+ components:
+ - type: Transform
+ parent: 612
+ - type: Physics
+ canCollide: False
+- proto: ExtinguisherCabinet
entities:
- uid: 619
components:
- - rot: 1.5707963267948966 rad
- pos: -5.5,1.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
- - uid: 620
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 567
components:
- - pos: 6.5,6.5
+ - type: Transform
+ pos: 9.5,0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+- proto: FireAlarm
+ entities:
- uid: 621
components:
- - pos: 4.5,10.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: DeviceList
+ devices:
+ - 628
+ - 629
+ - 622
+ - 623
+ - 624
+ - 632
+ - 631
+ - 625
+ - 627
+ - 633
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: Firelock
+ entities:
- uid: 622
components:
- - rot: -1.5707963267948966 rad
- pos: 14.5,-0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
- uid: 623
components:
- - rot: 3.141592653589793 rad
- pos: 13.5,-6.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
- uid: 624
components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-7.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-1.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
- uid: 625
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,-10.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
- uid: 626
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,-3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,4.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
- uid: 627
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,5.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
-- proto: GasPipeBend
- entities:
- uid: 628
components:
- - rot: 3.141592653589793 rad
- pos: -3.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
parent: 1
- type: Transform
- uid: 629
components:
- - pos: -3.5,1.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- uid: 630
components:
- - pos: 6.5,2.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- uid: 631
components:
- - rot: 1.5707963267948966 rad
- pos: -1.5,-0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-5.5
parent: 1
- type: Transform
- uid: 632
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,-6.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- uid: 633
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-3.5
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 1
+- proto: ForensicReportPaper
+ entities:
+ - uid: 427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.519173,0.6784754
+ parent: 1
+ - uid: 555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.519173,0.6784754
+ parent: 1
+ - uid: 557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.519173,0.6784754
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.519173,0.6784754
+ parent: 1
+ - uid: 563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.519173,0.6784754
parent: 1
- type: Transform
+- proto: GasPassiveVent
+ entities:
- uid: 634
components:
- - pos: 10.5,-0.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,1.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 635
components:
- - rot: 3.141592653589793 rad
- pos: 10.5,-3.5
+ - type: Transform
+ pos: 6.5,6.5
parent: 1
- type: Transform
-- proto: GasPipeFourway
- entities:
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 636
components:
- - pos: 2.5,-0.5
+ - type: Transform
+ pos: 4.5,10.5
parent: 1
- type: Transform
-- proto: GasPipeStraight
- entities:
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 637
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,4.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 638
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-6.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 639
components:
- - rot: 1.5707963267948966 rad
- pos: -4.5,1.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-7.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 640
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-10.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 641
components:
- - pos: 4.5,-7.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 642
components:
- - pos: 4.5,-8.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,5.5
parent: 1
- type: Transform
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+- proto: GasPipeBend
+ entities:
- uid: 643
components:
- - pos: 4.5,-9.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 644
components:
- - pos: 8.5,-6.5
+ - type: Transform
+ pos: -3.5,1.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 645
components:
- - pos: 8.5,-5.5
+ - type: Transform
+ pos: 6.5,2.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 646
components:
- - pos: 8.5,-4.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 647
components:
- - pos: 13.5,-4.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 648
components:
- - pos: 13.5,-5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 649
components:
- - rot: -1.5707963267948966 rad
- pos: 13.5,-0.5
+ - type: Transform
+ pos: 10.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 650
components:
- - rot: -1.5707963267948966 rad
- pos: 12.5,-0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPipeFourway
+ entities:
- uid: 651
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,4.5
+ - type: Transform
+ pos: 2.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPipeStraight
+ entities:
- uid: 652
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 653
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,4.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 654
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,5.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,1.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 655
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,6.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 656
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,7.5
+ - type: Transform
+ pos: 4.5,-7.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 657
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,8.5
+ - type: Transform
+ pos: 4.5,-8.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 658
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,9.5
+ - type: Transform
+ pos: 4.5,-9.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 659
components:
- - rot: 1.5707963267948966 rad
- pos: 7.5,-0.5
+ - type: Transform
+ pos: 8.5,-6.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 660
components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,-0.5
+ - type: Transform
+ pos: 8.5,-5.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 661
components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,2.5
+ - type: Transform
+ pos: 8.5,-4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 662
components:
- - pos: -1.5,-1.5
+ - type: Transform
+ pos: 13.5,-4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 663
components:
- - pos: 2.5,-5.5
+ - type: Transform
+ pos: 13.5,-5.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 664
components:
- - pos: 2.5,-4.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 665
components:
- - pos: 2.5,-3.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 666
components:
- - rot: -1.5707963267948966 rad
- pos: -2.5,-3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 667
components:
- - rot: -1.5707963267948966 rad
- pos: -3.5,-3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,5.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 668
components:
- - rot: 1.5707963267948966 rad
- pos: -2.5,5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 669
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,5.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 670
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-2.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,6.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 671
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,-1.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,7.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 672
components:
- - pos: 10.5,-1.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,8.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 673
components:
- - pos: 10.5,-2.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,9.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 674
components:
- - rot: -1.5707963267948966 rad
- pos: 9.5,-0.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 675
components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,2.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 676
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,2.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,2.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 677
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,1.5
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 678
components:
- - rot: 3.141592653589793 rad
- pos: 2.5,0.5
+ - type: Transform
+ pos: 2.5,-5.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 679
components:
- - rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
+ - type: Transform
+ pos: 2.5,-4.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 680
components:
- - rot: 1.5707963267948966 rad
- pos: 0.5,-0.5
+ - type: Transform
+ pos: 2.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 681
components:
- - pos: 2.5,-1.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 682
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-0.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 683
components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,-0.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,5.5
parent: 1
- type: Transform
-- proto: GasPipeTJunction
- entities:
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 684
components:
- - rot: 3.141592653589793 rad
- pos: 1.5,3.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 685
components:
- - pos: 2.5,3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-2.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 686
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,2.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-1.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 687
components:
- - rot: 3.141592653589793 rad
- pos: -0.5,-0.5
+ - type: Transform
+ pos: 10.5,-1.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 688
components:
- - rot: 1.5707963267948966 rad
- pos: 2.5,-2.5
+ - type: Transform
+ pos: 10.5,-2.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 689
components:
- - pos: 6.5,-0.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-0.5
parent: 1
- type: Transform
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 690
components:
- - rot: 3.141592653589793 rad
- pos: 8.5,-0.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,2.5
parent: 1
- type: Transform
-- proto: GasPort
- entities:
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 691
components:
- - pos: 1.5,5.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
-- proto: GasVentPump
- entities:
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 692
components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,1.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 693
components:
- - pos: -0.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 694
components:
- - rot: 3.141592653589793 rad
- pos: -1.5,-2.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 695
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-2.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 696
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,-6.5
+ - type: Transform
+ pos: 2.5,-1.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 697
components:
- - rot: -1.5707963267948966 rad
- pos: 7.5,-3.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 698
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,1.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPipeTJunction
+ entities:
- uid: 699
components:
- - rot: -1.5707963267948966 rad
- pos: 3.5,3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 700
components:
- - pos: 8.5,0.5
+ - type: Transform
+ pos: 2.5,3.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 701
components:
- - rot: -1.5707963267948966 rad
- pos: 11.5,-3.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,2.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 702
components:
- - rot: 1.5707963267948966 rad
- pos: -0.5,-3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
-- proto: GasVentScrubber
- entities:
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 703
components:
- - rot: 3.141592653589793 rad
- pos: 6.5,3.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-2.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 704
components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,5.5
+ - type: Transform
+ pos: 6.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 705
components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasPort
+ entities:
- uid: 706
components:
- - rot: -1.5707963267948966 rad
- pos: -1.5,-3.5
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+- proto: GasVentPump
+ entities:
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 8.5,0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 707
components:
- - pos: 4.5,-6.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 708
components:
- - pos: 8.5,-3.5
+ - type: Transform
+ pos: -0.5,0.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 709
components:
- - pos: 13.5,-3.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-2.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 710
components:
- - rot: 1.5707963267948966 rad
- pos: 11.5,-0.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-2.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 711
components:
- - rot: 3.141592653589793 rad
- pos: 4.5,3.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-6.5
parent: 1
- type: Transform
- - joinedGrid: 1
- type: AtmosDevice
-- proto: GeneratorWallmountAPU
- entities:
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 712
components:
- - pos: -1.5,6.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-3.5
parent: 1
- type: Transform
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 713
components:
- - pos: -0.5,6.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,1.5
parent: 1
- type: Transform
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 714
components:
- - pos: -2.5,5.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-3.5
parent: 1
- type: Transform
- - uid: 715
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 717
components:
- - pos: -2.5,4.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- - uid: 716
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: GasVentScrubber
+ entities:
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 8.5,-3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 576
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 727
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - uid: 728
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 729
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 1
+ - uid: 730
components:
- - pos: -2.5,3.5
+ - type: Transform
+ pos: -2.5,4.5
parent: 1
- type: Transform
- - uid: 717
+ - uid: 732
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- - uid: 718
+ - uid: 733
components:
- - pos: -0.5,2.5
+ - type: Transform
+ pos: -0.5,2.5
parent: 1
- type: Transform
- proto: GravityGeneratorMini
entities:
- - uid: 719
+ - uid: 734
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
- proto: Grille
entities:
- - uid: 617
+ - uid: 735
components:
- - pos: 10.5,-1.5
+ - type: Transform
+ pos: 10.5,-1.5
parent: 1
- type: Transform
- - uid: 720
+ - uid: 736
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 12.5,-5.5
parent: 1
- type: Transform
- - uid: 721
+ - uid: 737
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 13.5,-5.5
parent: 1
- type: Transform
- - uid: 722
+ - uid: 738
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 13.5,0.5
parent: 1
- type: Transform
- - uid: 723
+ - uid: 739
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 13.5,-0.5
parent: 1
- type: Transform
- - uid: 724
+ - uid: 740
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 13.5,1.5
parent: 1
- type: Transform
- - uid: 725
+ - uid: 741
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 13.5,2.5
parent: 1
- type: Transform
- - uid: 726
+ - uid: 742
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: 7.5,-6.5
parent: 1
- type: Transform
- - uid: 727
+ - uid: 743
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 10.5,-5.5
parent: 1
- type: Transform
- - uid: 728
+ - uid: 744
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: 8.5,-6.5
parent: 1
- type: Transform
- - uid: 729
+ - uid: 745
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
pos: 6.5,-6.5
parent: 1
- type: Transform
- - uid: 730
+ - uid: 746
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 11.5,-5.5
parent: 1
- type: Transform
- proto: HospitalCurtainsOpen
entities:
- - uid: 731
+ - uid: 747
components:
- - pos: 6.5,3.5
+ - type: Transform
+ pos: 6.5,3.5
parent: 1
- type: Transform
- - uid: 732
+ - uid: 748
components:
- - pos: 6.5,1.5
+ - type: Transform
+ pos: 6.5,1.5
parent: 1
- type: Transform
- - uid: 733
+ - uid: 749
components:
- - pos: -1.5,1.5
+ - type: Transform
+ pos: -1.5,1.5
parent: 1
- type: Transform
- - uid: 734
+ - uid: 750
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,1.5
parent: 1
- type: Transform
- proto: hydroponicsTray
entities:
- - uid: 735
+ - uid: 751
components:
- - pos: 12.5,-4.5
+ - type: Transform
+ pos: 12.5,-4.5
parent: 1
- type: Transform
- - uid: 736
+ - uid: 752
components:
- - pos: 13.5,-4.5
+ - type: Transform
+ pos: 13.5,-4.5
parent: 1
- type: Transform
- - uid: 737
+ - uid: 753
components:
- - pos: 11.5,-4.5
+ - type: Transform
+ pos: 11.5,-4.5
parent: 1
- type: Transform
- - uid: 738
+ - uid: 754
components:
- - pos: 10.5,-4.5
+ - type: Transform
+ pos: 10.5,-4.5
parent: 1
- type: Transform
- proto: KitchenMicrowave
entities:
- - uid: 739
+ - uid: 755
components:
- - pos: 1.5,-2.5
+ - type: Transform
+ pos: 1.5,-2.5
parent: 1
- type: Transform
- proto: LandMineExplosive
entities:
- - uid: 740
+ - uid: 756
components:
- - pos: 12.446557,-9.501101
+ - type: Transform
+ pos: 12.446557,-9.501101
parent: 1
- type: Transform
- - uid: 741
+ - uid: 757
components:
- - pos: 17.449137,2.529461
+ - type: Transform
+ pos: 17.449137,2.529461
parent: 1
- type: Transform
- proto: LockerSyndicatePersonal
entities:
- - uid: 356
+ - uid: 363
components:
- - pos: -1.5,-5.5
+ - type: Transform
+ pos: -1.5,-5.5
parent: 1
- type: Transform
- - air:
+ - type: EntityStorage
+ air:
volume: 200
immutable: False
temperature: 293.1496
moles:
- - 1.8977377
- - 7.139109
+ - 1.8978093
+ - 7.139378
- 0
- 0
- 0
@@ -4481,1296 +4624,1099 @@ entities:
- 0
- 0
- 0
- type: EntityStorage
- - containers:
+ - type: ContainerContainer
+ containers:
entity_storage: !type:Container
showEnts: False
occludes: True
ents:
- - 373
- - 369
- - 358
- - 360
- - 359
- - 372
- - 357
- - 365
- - 364
- - 371
- - 361
- - 362
- - 366
- - 363
+ - 378
+ - 377
+ - 379
- 367
- - 368
- - 370
+ - 366
+ - 380
+ - 376
+ - 365
+ - 118
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
ent: null
- type: ContainerContainer
- proto: MedkitCombatFilled
entities:
- - uid: 742
+ - uid: 758
components:
- - pos: -0.28039455,-3.70372
+ - type: Transform
+ pos: -0.28039455,-3.70372
parent: 1
- type: Transform
- proto: MedkitFilled
entities:
- - uid: 743
+ - uid: 759
components:
- - pos: -0.57726955,-3.500595
+ - type: Transform
+ pos: -0.57726955,-3.500595
parent: 1
- type: Transform
-- proto: NukeDiskFake
+- proto: Mirror
entities:
- - uid: 744
+ - uid: 957
components:
- - pos: 16.778532,-0.7526432
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-3.5
parent: 1
- type: Transform
-- proto: Paper
+- proto: NukeDiskFake
entities:
- - uid: 375
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 376
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 377
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 378
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 379
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 380
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 381
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 382
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 383
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 384
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 385
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 386
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 387
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 388
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 389
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 390
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 391
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 392
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 393
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 394
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 395
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 396
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 397
- components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 398
+ - uid: 760
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ pos: 16.778532,-0.7526432
+ parent: 1
- proto: PaperArtifactAnalyzer
entities:
- - uid: 560
+ - uid: 424
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 561
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.456674,0.66285014
+ parent: 1
+ - uid: 428
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 562
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.456674,0.66285014
+ parent: 1
+ - uid: 433
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 563
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.456674,0.66285014
+ parent: 1
+ - uid: 542
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 564
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.456674,0.66285014
+ parent: 1
+ - uid: 546
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.456674,0.66285014
+ parent: 1
- proto: PaperBin10
entities:
- - uid: 745
+ - uid: 87
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 761
components:
- - pos: 7.5,-5.5
+ - type: Transform
+ pos: 7.5,-5.5
parent: 1
- type: Transform
- proto: PaperCaptainsThoughts
entities:
- - uid: 565
+ - uid: 430
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 566
+ - type: Transform
+ pos: 8.519173,0.64722514
+ parent: 1
+ - uid: 437
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 567
+ - type: Transform
+ pos: 8.519173,0.64722514
+ parent: 1
+ - uid: 537
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 568
+ - type: Transform
+ pos: 8.519173,0.64722514
+ parent: 1
+ - uid: 547
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 569
+ - type: Transform
+ pos: 8.519173,0.64722514
+ parent: 1
+ - uid: 553
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ pos: 8.519173,0.64722514
+ parent: 1
- proto: PaperCargoBountyManifest
entities:
- - uid: 570
+ - uid: 426
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 571
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 429
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 572
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 434
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 573
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 435
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 574
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 544
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 575
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+- proto: PaperCargoInvoice
+ entities:
+ - uid: 431
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 576
+ - type: Transform
+ pos: 8.487924,0.6316004
+ parent: 1
+ - uid: 436
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 577
+ - type: Transform
+ pos: 8.487924,0.6316004
+ parent: 1
+ - uid: 438
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 578
+ - type: Transform
+ pos: 8.487924,0.6316004
+ parent: 1
+ - uid: 439
components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 579
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
-- proto: PaperCargoInvoice
- entities:
- - uid: 580
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 581
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 582
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 583
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 584
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 585
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 586
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 587
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 588
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 589
- components:
- - flags: InContainer
- type: MetaData
- - parent: 544
- type: Transform
- - canCollide: False
- type: Physics
-- proto: PaperOffice
- entities:
- - uid: 399
+ - type: Transform
+ pos: 8.487924,0.6316004
+ parent: 1
+ - uid: 538
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 400
+ - type: Transform
+ pos: 8.487924,0.6316004
+ parent: 1
+- proto: PaperCNCSheet
+ entities:
+ - uid: 539
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 401
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 545
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 402
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 556
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 403
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 559
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 404
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+ - uid: 560
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 405
+ - type: Transform
+ pos: 8.503549,0.6316006
+ parent: 1
+- proto: PlushieNuke
+ entities:
+ - uid: 762
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 406
+ - type: Transform
+ pos: 6.565984,3.4567177
+ parent: 1
+ - uid: 763
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 407
+ - type: Transform
+ pos: 16.527655,-0.5029521
+ parent: 1
+- proto: PlushieRouny
+ entities:
+ - uid: 764
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 408
+ - type: Transform
+ pos: 6.487859,1.4254675
+ parent: 1
+- proto: PosterContrabandDonk
+ entities:
+ - uid: 765
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 409
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+- proto: PosterContrabandSyndicateRecruitment
+ entities:
+ - uid: 766
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 410
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,6.5
+ parent: 1
+- proto: PosterLegitHotDonkExplosion
+ entities:
+ - uid: 767
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 411
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 1
+- proto: PosterLegitNoERP
+ entities:
+ - uid: 578
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 412
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,3.5
+ parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 768
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 413
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 18
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 414
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 1
+ - uid: 19
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 415
+ - type: Transform
+ pos: 12.5,-2.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 21
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 416
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 375
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 417
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 731
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
- - uid: 418
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 896
components:
- - flags: InContainer
- type: MetaData
- - parent: 374
- type: Transform
- - canCollide: False
- type: Physics
-- proto: PlushieNuke
- entities:
- - uid: 746
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 917
components:
- - pos: 6.565984,3.4567177
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
parent: 1
- type: Transform
- - uid: 747
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 956
components:
- - pos: 16.527655,-0.5029521
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-3.5
parent: 1
- type: Transform
-- proto: PlushieRouny
- entities:
- - uid: 748
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 958
components:
- - pos: 6.487859,1.4254675
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,1.5
parent: 1
- type: Transform
-- proto: PosterContrabandDonk
- entities:
- - uid: 749
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 963
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,4.5
parent: 1
- type: Transform
-- proto: PosterContrabandSyndicateRecruitment
+ - type: DeviceLinkSink
+ links:
+ - 46
+- proto: PoweredLightColoredRed
entities:
- - uid: 750
+ - uid: 20
components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,6.5
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-4.5
parent: 1
- type: Transform
-- proto: PosterLegitHotDonkExplosion
- entities:
- - uid: 751
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 22
components:
- - rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
+ - type: Transform
+ pos: 12.5,2.5
parent: 1
- type: Transform
-- proto: PowerCellRecharger
- entities:
- - uid: 752
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 23
components:
- - pos: 8.5,1.5
+ - type: Transform
+ pos: -1.5,-5.5
parent: 1
- type: Transform
-- proto: PoweredLightColoredRed
- entities:
- - uid: 753
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 769
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-0.5
parent: 1
- type: Transform
+ - type: DeviceLinkSink
+ links:
+ - 46
- type: Timer
- - uid: 754
+ - uid: 770
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,4.5
parent: 1
- type: Transform
- - uid: 755
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 771
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,2.5
parent: 1
- type: Transform
+ - type: DeviceLinkSink
+ links:
+ - 46
- type: Timer
- - uid: 756
+ - uid: 772
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- - uid: 757
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 773
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,0.5
parent: 1
- type: Transform
+ - type: DeviceLinkSink
+ links:
+ - 46
- type: Timer
- - uid: 758
+ - uid: 774
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 8.5,0.5
parent: 1
- type: Transform
- - uid: 759
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 775
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,-6.5
parent: 1
- type: Transform
+ - type: DeviceLinkSink
+ links:
+ - 46
+ - uid: 952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 46
- proto: Rack
entities:
- - uid: 764
+ - uid: 776
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,5.5
parent: 1
- type: Transform
- - uid: 765
+ - uid: 777
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 4.5,5.5
parent: 1
- type: Transform
- - uid: 766
+ - uid: 778
components:
- - pos: -0.5,-3.5
+ - type: Transform
+ pos: -0.5,-3.5
parent: 1
- type: Transform
- proto: RandomArcade
entities:
- - uid: 767
+ - uid: 779
components:
- - pos: 7.5,-2.5
+ - type: Transform
+ pos: 7.5,-2.5
parent: 1
- type: Transform
- proto: RandomPosterContraband
entities:
- - uid: 768
+ - uid: 780
components:
- - pos: 9.5,3.5
+ - type: Transform
+ pos: 9.5,3.5
parent: 1
- type: Transform
- - uid: 769
+ - uid: 781
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 0.5,0.5
parent: 1
- type: Transform
- - uid: 770
- components:
- - pos: 5.5,0.5
- parent: 1
- type: Transform
- - uid: 771
+ - uid: 782
components:
- - pos: 11.5,3.5
+ - type: Transform
+ pos: 5.5,0.5
parent: 1
- type: Transform
- - uid: 772
+ - uid: 784
components:
- - pos: -1.5,-4.5
+ - type: Transform
+ pos: -1.5,-4.5
parent: 1
- type: Transform
- - uid: 773
+ - uid: 785
components:
- - pos: 14.5,-3.5
+ - type: Transform
+ pos: 14.5,-3.5
parent: 1
- type: Transform
- - uid: 774
+ - uid: 786
components:
- - pos: 5.5,-3.5
+ - type: Transform
+ pos: 5.5,-3.5
parent: 1
- type: Transform
- proto: RandomVendingDrinks
entities:
- - uid: 775
+ - uid: 787
components:
- - pos: 4.5,-2.5
+ - type: Transform
+ pos: 4.5,-2.5
parent: 1
- type: Transform
- type: Emagged
- proto: RandomVendingSnacks
entities:
- - uid: 776
+ - uid: 788
components:
- - pos: 4.5,-3.5
+ - type: Transform
+ pos: 4.5,-3.5
parent: 1
- type: Transform
- type: Emagged
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 7
+ - uid: 789
components:
- - pos: 10.5,-1.5
+ - type: Transform
+ pos: 10.5,-1.5
parent: 1
- type: Transform
- - uid: 777
+ - uid: 790
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 10.5,-5.5
parent: 1
- type: Transform
- - uid: 778
+ - uid: 791
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 12.5,-5.5
parent: 1
- type: Transform
- - uid: 779
+ - uid: 792
components:
- - pos: 13.5,-0.5
+ - type: Transform
+ pos: 13.5,-0.5
parent: 1
- type: Transform
- - uid: 780
+ - uid: 793
components:
- - pos: 13.5,0.5
+ - type: Transform
+ pos: 13.5,0.5
parent: 1
- type: Transform
- - uid: 781
+ - uid: 794
components:
- - pos: 13.5,2.5
+ - type: Transform
+ pos: 13.5,2.5
parent: 1
- type: Transform
- - uid: 782
+ - uid: 795
components:
- - pos: 13.5,1.5
+ - type: Transform
+ pos: 13.5,1.5
parent: 1
- type: Transform
- - uid: 783
+ - uid: 796
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 11.5,-5.5
parent: 1
- type: Transform
- - uid: 784
+ - uid: 797
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
pos: 13.5,-5.5
parent: 1
- type: Transform
- - uid: 785
+ - uid: 798
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
pos: 6.5,-6.5
parent: 1
- type: Transform
- - uid: 786
+ - uid: 799
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
pos: 7.5,-6.5
parent: 1
- type: Transform
- - uid: 787
+ - uid: 800
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
pos: 8.5,-6.5
parent: 1
- type: Transform
+- proto: RubberStampApproved
+ entities:
+ - uid: 407
+ components:
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampCaptain
entities:
- - uid: 420
+ - uid: 417
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampCE
entities:
- - uid: 421
+ - uid: 413
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampChaplain
entities:
- - uid: 422
+ - uid: 416
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampClown
entities:
- - uid: 423
+ - uid: 414
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampCMO
entities:
- - uid: 424
+ - uid: 412
+ components:
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: RubberStampDenied
+ entities:
+ - uid: 411
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampHop
entities:
- - uid: 425
+ - uid: 419
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampHos
entities:
- - uid: 426
+ - uid: 409
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampMantis
entities:
- - uid: 427
+ - uid: 415
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampMime
entities:
- - uid: 428
+ - uid: 420
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampQm
entities:
- - uid: 429
+ - uid: 408
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampRd
entities:
- - uid: 430
+ - uid: 418
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampSyndicate
entities:
- - uid: 431
+ - uid: 410
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: RubberStampWarden
entities:
- - uid: 432
+ - uid: 406
components:
- - flags: InContainer
- type: MetaData
- - parent: 419
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 405
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: SalvageLorePaperGamingSpawner
entities:
- - uid: 788
+ - uid: 801
components:
- - pos: 12.5,-9.5
+ - type: Transform
+ pos: 12.5,-9.5
parent: 1
- type: Transform
- proto: SheetPlasteel
entities:
- - uid: 789
+ - uid: 802
components:
- - pos: -1.4864182,5.563302
+ - type: Transform
+ pos: -1.4864182,5.563302
parent: 1
- type: Transform
- proto: SheetRPGlass
entities:
- - uid: 790
+ - uid: 803
components:
- - pos: -1.2364185,5.563302
+ - type: Transform
+ pos: -1.2364185,5.563302
parent: 1
- type: Transform
- proto: SheetSteel
entities:
- - uid: 791
+ - uid: 804
components:
- - pos: -1.6895431,5.500802
+ - type: Transform
+ pos: -1.6895431,5.500802
parent: 1
- type: Transform
- proto: SignalButton
entities:
- - uid: 792
+ - uid: 805
components:
- - name: bridge blast doors button
- type: MetaData
- - rot: 3.141592653589793 rad
+ - type: MetaData
+ name: bridge blast doors button
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: 11.5,-1.5
parent: 1
- type: Transform
- - linkedPorts:
- 348:
+ - type: DeviceLinkSource
+ linkedPorts:
+ 354:
- Pressed: Toggle
- 346:
+ 352:
- Pressed: Toggle
- 345:
+ 351:
- Pressed: Toggle
- 347:
+ 353:
- Pressed: Toggle
- 947:
+ 361:
- Pressed: Toggle
- type: DeviceLinkSource
- - uid: 793
+ - uid: 806
components:
- - desc: A note taped to it reads, "Be sure to keep it bolted, else those crazy guards might try to drink vacuum"
+ - type: MetaData
+ desc: A note taped to it reads, "Be sure to keep it bolted, else those crazy guards might try to drink vacuum"
name: external bolts button
- type: MetaData
- - pos: 4.5,4.5
+ - type: Transform
+ pos: 4.5,4.5
parent: 1
- type: Transform
- - linkedPorts:
+ - type: DeviceLinkSource
+ linkedPorts:
4:
- Pressed: DoorBolt
- type: DeviceLinkSource
- - uid: 795
+ - uid: 807
components:
- - name: rec room blast shields button
- type: MetaData
- - rot: 1.5707963267948966 rad
+ - type: MetaData
+ name: rec room blast shields button
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 5.5,-2.5
parent: 1
- type: Transform
- - linkedPorts:
- 344:
+ - type: DeviceLinkSource
+ linkedPorts:
+ 350:
- Pressed: Toggle
- 349:
+ 355:
- Pressed: Toggle
- 350:
+ 356:
- Pressed: Toggle
- 351:
+ 357:
- Pressed: Toggle
- 352:
+ 358:
- Pressed: Toggle
- 353:
+ 359:
- Pressed: Toggle
- 354:
+ 360:
- Pressed: Toggle
- type: DeviceLinkSource
+- proto: SignalSwitchDirectional
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-1.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 773:
+ - On: Off
+ - Off: On
+ 21:
+ - On: On
+ - Off: Off
+ 917:
+ - On: On
+ - Off: Off
+ 771:
+ - On: Off
+ - Off: On
+ 770:
+ - Off: On
+ - On: Off
+ 963:
+ - On: On
+ - Off: Off
+ 769:
+ - Off: On
+ - On: Off
+ 375:
+ - On: On
+ - Off: Off
+ 774:
+ - Off: On
+ - On: Off
+ 958:
+ - On: On
+ - Off: Off
+ 731:
+ - On: On
+ - Off: Off
+ 772:
+ - On: Off
+ - Off: On
+ 896:
+ - On: On
+ - Off: Off
+ 775:
+ - On: Off
+ - Off: On
+ 956:
+ - On: On
+ - Off: Off
+ 20:
+ - On: Off
+ - Off: On
+ 23:
+ - On: Off
+ - Off: On
+ 955:
+ - On: Off
+ - Off: On
+ 19:
+ - On: On
+ - Off: Off
+ 22:
+ - On: Off
+ - Off: On
- proto: SinkStemlessWater
entities:
- - uid: 796
+ - uid: 808
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -1.5,-3.5
parent: 1
- type: Transform
- proto: SoapSyndie
entities:
- - uid: 797
+ - uid: 809
components:
- - rot: 6.283185307179586 rad
+ - type: Transform
+ rot: 6.283185307179586 rad
pos: -1.5109272,-2.2405348
parent: 1
- type: Transform
- proto: soda_dispenser
entities:
- - uid: 798
+ - uid: 810
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,-4.5
parent: 1
- type: Transform
- type: Emagged
- proto: SpawnMobRadioGuard
entities:
- - uid: 799
+ - uid: 811
components:
- - pos: 9.5,-0.5
+ - type: Transform
+ pos: 9.5,-0.5
parent: 1
- type: Transform
- - uid: 800
+ - uid: 812
components:
- - pos: 2.5,2.5
+ - type: Transform
+ pos: 2.5,2.5
parent: 1
- type: Transform
- proto: SpawnPointGhostSyndicateListener
entities:
- - uid: 801
+ - uid: 813
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+ - uid: 814
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+- proto: StationMapBroken
+ entities:
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+- proto: SubstationWallBasic
+ entities:
+ - uid: 816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,5.5
+ parent: 1
+- proto: SuitStorageEVASyndicate
+ entities:
+ - uid: 611
components:
- - pos: -0.5,1.5
+ - type: Transform
+ pos: -0.5,-7.5
parent: 1
- type: Transform
- - uid: 802
+ - uid: 817
components:
- - pos: -1.5,1.5
+ - type: Transform
+ pos: -1.5,-7.5
parent: 1
- type: Transform
-- proto: StationMapBroken
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: SyndicateMonitoringServer
entities:
- - uid: 803
+ - uid: 338
components:
- - pos: 1.5,4.5
+ - type: Transform
+ pos: 2.5,-7.5
parent: 1
- type: Transform
-- proto: SubstationWallBasic
+- proto: SyndicatePersonalAI
entities:
- - uid: 804
+ - uid: 819
components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.4855704,-4.514364
parent: 1
- type: Transform
-- proto: SuitStorageEVASyndicate
+- proto: SyndieHandyFlag
entities:
- - uid: 760
+ - uid: 951
components:
- - pos: -1.5,-7.5
+ - type: Transform
+ pos: 1.9013485,-7
parent: 1
- type: Transform
-- proto: SyndicateMonitoringServer
+- proto: SynthesizerInstrument
entities:
- - uid: 809
+ - uid: 820
components:
- - pos: 11.5,2.5
+ - type: Transform
+ pos: 6.5734386,-5.497705
parent: 1
- type: Transform
- proto: TableCarpet
entities:
- - uid: 810
+ - uid: 821
components:
- - pos: 7.5,-5.5
+ - type: Transform
+ pos: 7.5,-5.5
parent: 1
- type: Transform
- - uid: 811
+ - uid: 822
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 1.5,1.5
parent: 1
- type: Transform
- - uid: 812
+ - uid: 823
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: 7.5,-4.5
parent: 1
- type: Transform
- proto: TableGlass
entities:
- - uid: 813
+ - uid: 824
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-2.5
parent: 1
- type: Transform
- - uid: 814
+ - uid: 825
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 1.5,-3.5
parent: 1
- type: Transform
- - uid: 815
+ - uid: 826
components:
- - pos: 1.5,-4.5
+ - type: Transform
+ pos: 1.5,-4.5
parent: 1
- type: Transform
-- proto: TablePlasmaGlass
+- proto: TableWoodReinforced
entities:
- - uid: 816
+ - uid: 382
components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,0.5
parent: 1
- type: Transform
- - uid: 817
+ - uid: 383
components:
- - rot: 1.5707963267948966 rad
- pos: 4.5,1.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,2.5
parent: 1
- type: Transform
-- proto: TableReinforced
- entities:
- - uid: 818
+ - uid: 385
components:
- - pos: 8.5,2.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,1.5
parent: 1
- type: Transform
- - uid: 819
+ - uid: 386
components:
- - pos: 8.5,1.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-0.5
parent: 1
- type: Transform
- - uid: 820
+ - uid: 387
components:
- - rot: 1.5707963267948966 rad
- pos: 12.5,2.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,1.5
parent: 1
- type: Transform
- proto: TelecomServerFilled
entities:
- - uid: 594
+ - uid: 612
components:
- - pos: 10.5,2.5
+ - type: Transform
+ pos: 1.5,-7.5
parent: 1
- type: Transform
- - containers:
+ - type: ContainerContainer
+ containers:
key_slots: !type:Container
showEnts: False
occludes: True
ents:
- - 602
- - 601
- - 599
- - 595
- - 600
- - 598
- - 597
- - 596
- - 603
+ - 613
+ - 614
+ - 615
machine_board: !type:Container
showEnts: False
occludes: True
@@ -5779,693 +5725,707 @@ entities:
showEnts: False
occludes: True
ents: []
- type: ContainerContainer
- proto: ToiletEmpty
entities:
- - uid: 821
+ - uid: 832
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,-2.5
parent: 1
- type: Transform
- proto: ToolboxSyndicateFilled
entities:
- - uid: 822
+ - uid: 833
components:
- - pos: 4.5174317,5.701203
+ - type: Transform
+ pos: 4.5174317,5.701203
parent: 1
- type: Transform
- - uid: 823
+ - uid: 834
components:
- - pos: 4.5330567,5.310578
+ - type: Transform
+ pos: 4.5330567,5.310578
parent: 1
- type: Transform
- proto: ToyFigurineNukie
entities:
- - uid: 824
+ - uid: 835
components:
- - pos: 12.208444,2.8347092
+ - type: Transform
+ pos: 12.208444,2.8347092
parent: 1
- type: Transform
- proto: ToyFigurineNukieCommander
entities:
- - uid: 825
+ - uid: 836
components:
- - pos: 12.791773,2.838885
+ - type: Transform
+ pos: 12.791773,2.838885
parent: 1
- type: Transform
- proto: ToyFigurineNukieElite
entities:
- - uid: 826
+ - uid: 837
components:
- - pos: 12.489692,2.4701266
+ - type: Transform
+ pos: 12.489692,2.4701266
parent: 1
- type: Transform
- proto: ToyNuke
entities:
- - uid: 827
+ - uid: 838
components:
- - pos: 16.198624,-0.765656
+ - type: Transform
+ pos: 16.198624,-0.765656
parent: 1
- type: Transform
- proto: VendingMachineBooze
entities:
- - uid: 828
+ - uid: 839
components:
- - pos: 4.5,-4.5
+ - type: Transform
+ pos: 4.5,-4.5
parent: 1
- type: Transform
- type: Emagged
+- proto: VendingMachineCigs
+ entities:
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
- proto: VendingMachineGames
entities:
- - uid: 829
+ - uid: 840
components:
- - pos: 8.5,-2.5
+ - type: Transform
+ pos: 8.5,-2.5
parent: 1
- type: Transform
- type: Emagged
- proto: VendingMachineNutri
entities:
- - uid: 830
+ - uid: 841
components:
- - pos: 12.5,-2.5
+ - type: Transform
+ pos: 12.5,-2.5
parent: 1
- type: Transform
- type: Emagged
- proto: VendingMachineSeedsUnlocked
entities:
- - uid: 831
+ - uid: 842
components:
- - pos: 11.5,-2.5
+ - type: Transform
+ pos: 11.5,-2.5
parent: 1
- type: Transform
- type: Emagged
- proto: VendingMachineSyndieDrobe
entities:
- - uid: 832
+ - uid: 843
components:
- - pos: -2.5,0.5
+ - type: Transform
+ pos: -2.5,0.5
parent: 1
- type: Transform
- type: Emagged
- proto: VendingMachineTankDispenserEVA
entities:
- - uid: 833
+ - uid: 844
components:
- - pos: -1.5,3.5
+ - type: Transform
+ pos: -1.5,3.5
parent: 1
- type: Transform
- proto: WallPlastitanium
entities:
- - uid: 806
- components:
- - pos: -2.5,-8.5
- parent: 1
- type: Transform
- - uid: 807
- components:
- - pos: -1.5,-8.5
- parent: 1
- type: Transform
- - uid: 808
- components:
- - pos: -0.5,-8.5
- parent: 1
- type: Transform
- - uid: 834
- components:
- - pos: -0.5,-1.5
- parent: 1
- type: Transform
- - uid: 835
- components:
- - pos: -2.5,6.5
- parent: 1
- type: Transform
- - uid: 836
- components:
- - pos: 3.5,-1.5
- parent: 1
- type: Transform
- - uid: 837
+ - uid: 54
components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,-2.5
+ - type: Transform
+ pos: 5.5,-8.5
parent: 1
- type: Transform
- - uid: 838
+ - uid: 332
components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,-1.5
+ - type: Transform
+ pos: 10.5,3.5
parent: 1
- type: Transform
- - uid: 839
+ - uid: 335
components:
- - pos: 8.5,-1.5
+ - type: Transform
+ pos: 2.5,-8.5
parent: 1
- type: Transform
- - uid: 840
+ - uid: 336
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,1.5
+ - type: Transform
+ pos: 1.5,-8.5
parent: 1
- type: Transform
- - uid: 841
+ - uid: 340
components:
- - rot: 1.5707963267948966 rad
- pos: -3.5,0.5
+ - type: Transform
+ pos: 0.5,-8.5
parent: 1
- type: Transform
- - uid: 842
+ - uid: 425
components:
- - pos: 5.5,5.5
+ - type: Transform
+ pos: 4.5,-8.5
parent: 1
- type: Transform
- - uid: 844
+ - uid: 617
components:
- - pos: -1.5,-4.5
+ - type: Transform
+ pos: 3.5,-8.5
parent: 1
- type: Transform
- uid: 845
components:
- - pos: -2.5,-5.5
+ - type: Transform
+ pos: -2.5,-8.5
parent: 1
- type: Transform
- uid: 846
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,6.5
+ - type: Transform
+ pos: -1.5,-8.5
parent: 1
- type: Transform
- uid: 847
components:
- - pos: -0.5,6.5
+ - type: Transform
+ pos: -0.5,-8.5
parent: 1
- type: Transform
- uid: 848
components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,6.5
+ - type: Transform
+ pos: -0.5,-1.5
parent: 1
- type: Transform
- uid: 849
components:
- - pos: 5.5,-4.5
+ - type: Transform
+ pos: -2.5,6.5
parent: 1
- type: Transform
- uid: 850
components:
- - pos: 9.5,-1.5
+ - type: Transform
+ pos: 3.5,-1.5
parent: 1
- type: Transform
- uid: 851
components:
- - pos: 11.5,-1.5
+ - type: Transform
+ pos: 14.5,-2.5
parent: 1
- type: Transform
- uid: 852
components:
- - pos: 12.5,-1.5
+ - type: Transform
+ pos: 14.5,-1.5
parent: 1
- type: Transform
- uid: 853
components:
- - pos: 5.5,-3.5
+ - type: Transform
+ pos: 8.5,-1.5
parent: 1
- type: Transform
- uid: 854
components:
- - pos: 5.5,-2.5
+ - type: Transform
+ pos: -3.5,1.5
parent: 1
- type: Transform
- uid: 855
components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,-7.5
+ - type: Transform
+ pos: -3.5,0.5
parent: 1
- type: Transform
- uid: 856
components:
- - pos: 7.5,-1.5
+ - type: Transform
+ pos: 5.5,5.5
parent: 1
- type: Transform
- uid: 857
components:
- - pos: 13.5,-1.5
+ - type: Transform
+ pos: -1.5,-4.5
parent: 1
- type: Transform
- uid: 858
components:
- - pos: 13.5,3.5
+ - type: Transform
+ pos: -2.5,-5.5
parent: 1
- type: Transform
- uid: 859
components:
- - pos: 3.5,-5.5
+ - type: Transform
+ pos: 2.5,6.5
parent: 1
- type: Transform
- uid: 860
components:
- - pos: 4.5,-5.5
+ - type: Transform
+ pos: -0.5,6.5
parent: 1
- type: Transform
- uid: 861
components:
- - pos: -2.5,4.5
+ - type: Transform
+ pos: 4.5,6.5
parent: 1
- type: Transform
- uid: 862
components:
- - pos: 5.5,-5.5
+ - type: Transform
+ pos: 5.5,-4.5
parent: 1
- type: Transform
- uid: 863
components:
- - rot: 1.5707963267948966 rad
- pos: 5.5,-6.5
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 1
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 11.5,-1.5
parent: 1
- type: Transform
- uid: 865
components:
- - pos: 1.5,-5.5
+ - type: Transform
+ pos: 12.5,-1.5
parent: 1
- type: Transform
- uid: 866
components:
- - pos: 0.5,-5.5
+ - type: Transform
+ pos: 5.5,-3.5
parent: 1
- type: Transform
- uid: 867
components:
- - pos: 0.5,-4.5
+ - type: Transform
+ pos: 5.5,-2.5
parent: 1
- type: Transform
- uid: 868
components:
- - pos: 12.5,3.5
+ - type: Transform
+ pos: 5.5,-7.5
parent: 1
- type: Transform
- uid: 869
components:
- - pos: -2.5,-4.5
+ - type: Transform
+ pos: 7.5,-1.5
parent: 1
- type: Transform
- uid: 870
components:
- - pos: -2.5,-2.5
+ - type: Transform
+ pos: 13.5,-1.5
parent: 1
- type: Transform
- uid: 871
components:
- - pos: 0.5,-7.5
+ - type: Transform
+ pos: 13.5,3.5
parent: 1
- type: Transform
- uid: 872
components:
- - pos: -0.5,-7.5
+ - type: Transform
+ pos: 3.5,-5.5
parent: 1
- type: Transform
- uid: 873
components:
- - pos: -2.5,-6.5
+ - type: Transform
+ pos: 4.5,-5.5
parent: 1
- type: Transform
- uid: 874
components:
- - pos: -0.5,-4.5
+ - type: Transform
+ pos: -2.5,4.5
parent: 1
- type: Transform
- uid: 875
components:
- - pos: 0.5,0.5
+ - type: Transform
+ pos: 5.5,-5.5
parent: 1
- type: Transform
- uid: 876
components:
- - pos: 0.5,1.5
+ - type: Transform
+ pos: 5.5,-6.5
parent: 1
- type: Transform
- uid: 877
components:
- - pos: -1.5,2.5
+ - type: Transform
+ pos: 1.5,-5.5
parent: 1
- type: Transform
- uid: 878
components:
- - pos: 7.5,4.5
+ - type: Transform
+ pos: 0.5,-5.5
parent: 1
- type: Transform
- uid: 879
components:
- - pos: 0.5,5.5
+ - type: Transform
+ pos: 0.5,-4.5
parent: 1
- type: Transform
- uid: 880
components:
- - pos: -2.5,2.5
+ - type: Transform
+ pos: 12.5,3.5
parent: 1
- type: Transform
- uid: 881
components:
- - pos: -2.5,3.5
+ - type: Transform
+ pos: -2.5,-4.5
parent: 1
- type: Transform
- uid: 882
components:
- - pos: -2.5,5.5
+ - type: Transform
+ pos: -2.5,-2.5
parent: 1
- type: Transform
- uid: 883
components:
- - rot: -1.5707963267948966 rad
- pos: 1.5,4.5
- parent: 1
- type: Transform
- - uid: 884
- components:
- - pos: 1.5,-7.5
+ - type: Transform
+ pos: 0.5,-7.5
parent: 1
- type: Transform
- uid: 885
components:
- - pos: -2.5,-1.5
+ - type: Transform
+ pos: -2.5,-6.5
parent: 1
- type: Transform
- uid: 886
components:
- - pos: 1.5,-1.5
+ - type: Transform
+ pos: -0.5,-4.5
parent: 1
- type: Transform
- uid: 887
components:
- - pos: 0.5,-1.5
+ - type: Transform
+ pos: 0.5,0.5
parent: 1
- type: Transform
- uid: 888
components:
- - pos: 0.5,-3.5
+ - type: Transform
+ pos: 0.5,1.5
parent: 1
- type: Transform
- uid: 889
components:
- - pos: -2.5,-3.5
+ - type: Transform
+ pos: -1.5,2.5
parent: 1
- type: Transform
- uid: 890
components:
- - pos: 0.5,-2.5
+ - type: Transform
+ pos: 7.5,4.5
parent: 1
- type: Transform
- uid: 891
components:
- - pos: 11.5,3.5
+ - type: Transform
+ pos: 0.5,5.5
parent: 1
- type: Transform
- uid: 892
components:
- - pos: 10.5,3.5
+ - type: Transform
+ pos: -2.5,2.5
parent: 1
- type: Transform
- uid: 893
components:
- - pos: 9.5,3.5
+ - type: Transform
+ pos: -2.5,3.5
parent: 1
- type: Transform
- uid: 894
components:
- - pos: 5.5,-1.5
+ - type: Transform
+ pos: -2.5,5.5
parent: 1
- type: Transform
- uid: 895
components:
- - pos: 4.5,-1.5
- parent: 1
- type: Transform
- - uid: 896
- components:
- - pos: 7.5,2.5
+ - type: Transform
+ pos: 1.5,4.5
parent: 1
- type: Transform
- uid: 897
components:
- - pos: 7.5,1.5
+ - type: Transform
+ pos: -2.5,-1.5
parent: 1
- type: Transform
- uid: 898
components:
- - pos: 7.5,0.5
+ - type: Transform
+ pos: 1.5,-1.5
parent: 1
- type: Transform
- uid: 899
components:
- - pos: 7.5,3.5
+ - type: Transform
+ pos: 0.5,-1.5
parent: 1
- type: Transform
- uid: 900
components:
- - pos: 8.5,3.5
+ - type: Transform
+ pos: 0.5,-3.5
parent: 1
- type: Transform
- uid: 901
components:
- - pos: 5.5,0.5
+ - type: Transform
+ pos: -2.5,-3.5
parent: 1
- type: Transform
- uid: 902
components:
- - pos: 6.5,0.5
+ - type: Transform
+ pos: 0.5,-2.5
parent: 1
- type: Transform
- uid: 903
components:
- - pos: -2.5,-7.5
- parent: 1
- type: Transform
- - uid: 904
- components:
- - pos: 3.5,-7.5
+ - type: Transform
+ pos: 11.5,3.5
parent: 1
- type: Transform
- uid: 905
components:
- - pos: 2.5,-7.5
+ - type: Transform
+ pos: 9.5,3.5
parent: 1
- type: Transform
- uid: 906
components:
- - pos: -2.5,-0.5
+ - type: Transform
+ pos: 5.5,-1.5
parent: 1
- type: Transform
- uid: 907
components:
- - pos: 4.5,-7.5
+ - type: Transform
+ pos: 4.5,-1.5
parent: 1
- type: Transform
- uid: 908
components:
- - pos: 0.5,2.5
+ - type: Transform
+ pos: 7.5,2.5
parent: 1
- type: Transform
- uid: 909
components:
- - pos: -0.5,2.5
+ - type: Transform
+ pos: 7.5,1.5
parent: 1
- type: Transform
- uid: 910
components:
- - pos: -2.5,1.5
+ - type: Transform
+ pos: 7.5,0.5
parent: 1
- type: Transform
- uid: 911
components:
- - rot: -1.5707963267948966 rad
- pos: 0.5,4.5
+ - type: Transform
+ pos: 7.5,3.5
parent: 1
- type: Transform
- uid: 912
components:
- - rot: -1.5707963267948966 rad
- pos: 2.5,4.5
+ - type: Transform
+ pos: 8.5,3.5
parent: 1
- type: Transform
- uid: 913
components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,1.5
+ - type: Transform
+ pos: 5.5,0.5
parent: 1
- type: Transform
- uid: 914
components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,4.5
+ - type: Transform
+ pos: 6.5,0.5
parent: 1
- type: Transform
- uid: 915
components:
- - rot: -1.5707963267948966 rad
- pos: 5.5,3.5
+ - type: Transform
+ pos: -2.5,-7.5
parent: 1
- type: Transform
- uid: 916
components:
- - rot: -1.5707963267948966 rad
- pos: 4.5,4.5
- parent: 1
- type: Transform
- - uid: 917
- components:
- - pos: -1.5,6.5
+ - type: Transform
+ pos: 3.5,-7.5
parent: 1
- type: Transform
- uid: 918
components:
- - pos: 0.5,6.5
+ - type: Transform
+ pos: -2.5,-0.5
parent: 1
- type: Transform
- uid: 920
components:
- - pos: 6.5,4.5
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 921
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 922
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 0.5,4.5
parent: 1
- type: Transform
- uid: 924
components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,-6.5
+ - type: Transform
+ pos: 2.5,4.5
parent: 1
- type: Transform
- uid: 925
components:
- - pos: 9.5,-4.5
+ - type: Transform
+ pos: 5.5,1.5
parent: 1
- type: Transform
- uid: 926
components:
- - pos: 5.5,6.5
+ - type: Transform
+ pos: 5.5,4.5
parent: 1
- type: Transform
- uid: 927
components:
- - pos: 9.5,-2.5
+ - type: Transform
+ pos: 5.5,3.5
parent: 1
- type: Transform
- uid: 928
components:
- - pos: 1.5,6.5
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ pos: -1.5,6.5
parent: 1
- type: Transform
- uid: 930
components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,-3.5
+ - type: Transform
+ pos: 0.5,6.5
parent: 1
- type: Transform
- uid: 931
components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,-4.5
+ - type: Transform
+ pos: 6.5,4.5
parent: 1
- type: Transform
- uid: 932
components:
- - rot: 1.5707963267948966 rad
- pos: 14.5,-5.5
+ - type: Transform
+ pos: 9.5,-6.5
parent: 1
- type: Transform
- uid: 933
components:
- - rot: 1.5707963267948966 rad
- pos: 9.5,-5.5
+ - type: Transform
+ pos: 9.5,-4.5
parent: 1
- type: Transform
- uid: 934
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 935
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 14.5,-3.5
+ parent: 1
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 14.5,-4.5
+ parent: 1
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 14.5,-5.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
pos: -3.5,-0.5
parent: 1
- type: Transform
- proto: WarpPoint
entities:
- - uid: 935
+ - uid: 942
+ components:
+ - type: MetaData
+ name: Syndicate Listening Post
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+- proto: WashingMachineFilledClothes
+ entities:
+ - uid: 2
components:
- - name: Syndicate Listening Post
- type: MetaData
- - pos: 10.5,0.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-7.5
parent: 1
- type: Transform
- proto: WaterCooler
entities:
- - uid: 936
+ - uid: 943
components:
- - pos: 1.5,0.5
+ - type: Transform
+ pos: 1.5,0.5
parent: 1
- type: Transform
- proto: WaterTankHighCapacity
entities:
- - uid: 937
+ - uid: 944
components:
- - pos: 13.5,-2.5
+ - type: Transform
+ pos: 13.5,-2.5
parent: 1
- type: Transform
- proto: WeaponShotgunKammerer
entities:
- - uid: 372
+ - uid: 379
components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- - uid: 373
+ - uid: 380
components:
- - flags: InContainer
- type: MetaData
- - parent: 356
- type: Transform
- - canCollide: False
- type: Physics
+ - type: Transform
+ parent: 363
+ - type: Physics
+ canCollide: False
- type: InsideEntityStorage
- proto: Windoor
entities:
- - uid: 919
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-7.5
+ parent: 1
+ - uid: 945
components:
- - rot: 3.141592653589793 rad
+ - type: Transform
+ rot: 3.141592653589793 rad
pos: -1.5,-7.5
parent: 1
- type: Transform
- - uid: 938
+ - uid: 946
components:
- - rot: -1.5707963267948966 rad
+ - type: Transform
+ rot: -1.5707963267948966 rad
pos: 4.5,5.5
parent: 1
- type: Transform
- - uid: 939
+ - uid: 947
components:
- - rot: 1.5707963267948966 rad
+ - type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,0.5
parent: 1
- type: Transform
- proto: WindoorSecure
entities:
- - uid: 944
+ - uid: 610
components:
- - pos: -1.5,5.5
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-7.5
parent: 1
- type: Transform
- - uid: 945
+ - uid: 783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-7.5
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 1
+ - uid: 949
components:
- - pos: -0.5,5.5
+ - type: Transform
+ pos: -0.5,5.5
parent: 1
- type: Transform
- proto: WoodDoor
entities:
- - uid: 946
+ - uid: 12
components:
- - pos: -1.5,-1.5
+ - type: Transform
+ pos: -1.5,-1.5
parent: 1
- type: Transform
- - secondsUntilStateChange: -14097.95
- state: Opening
- type: Door
...
diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml
index 88a2488db09..1e014aab734 100644
--- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/ghost_roles.yml
@@ -1,4 +1,8 @@
-- type: entity
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
+- type: entity
id: SpawnPointPlayerCharacter
name: ghost role spawn point
suffix: player character, DO NOT MAP
@@ -32,11 +36,13 @@
time: 259200 # 72 hours
- !type:DepartmentTimeRequirement
department: Security
- time: 40000 # 11.5 hours
+ time: 40000 # 11.1 hours
- !type:DepartmentTimeRequirement
department: Civilian
- time: 72000 # 20 hours
- - !type:WhitelistRequirement
+ time: 40000 # 11.1 hours
+ - !type:DepartmentTimeRequirement
+ department: Command
+ time: 40000 # 11.1 hours
- type: GhostRoleMobSpawner
prototype: MobHumanSyndicateListener
- type: Sprite
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml
index 070ff606473..507aa467932 100644
--- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/salvage.yml
@@ -1,11 +1,20 @@
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
- type: entity
name: Syndicate Guard
parent: BaseMobHuman
id: MobRadioGuard
+ description: "Mindwiped and hypno-indoctrinated into perfect loyalty by the Syndicate. They will throw their life away to defend their objective."
components:
- type: NpcFactionMember
factions:
- Syndicate
+ - type: MobThresholds
+ thresholds:
+ 0: Alive
+ 100: Dead #Tweak for "Acidify on Crit"
- type: MindContainer
showExamineInfo: False
- type: Loadout
@@ -42,3 +51,54 @@
- type: AutoImplant
implants:
- DeathAcidifierImplant
+ - type: Sprite
+ layers:
+ - map: [ "enum.HumanoidVisualLayers.Chest" ]
+ - map: [ "enum.HumanoidVisualLayers.Head" ]
+ - map: [ "enum.HumanoidVisualLayers.Snout" ]
+ - map: [ "enum.HumanoidVisualLayers.Eyes" ]
+ - map: [ "enum.HumanoidVisualLayers.RArm" ]
+ - map: [ "enum.HumanoidVisualLayers.LArm" ]
+ - map: [ "enum.HumanoidVisualLayers.RLeg" ]
+ - map: [ "enum.HumanoidVisualLayers.LLeg" ]
+ - shader: StencilClear
+ sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115
+ # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear.
+ # sprite refactor when
+ state: l_leg
+ - shader: StencilMask
+ map: ["enum.HumanoidVisualLayers.StencilMask"]
+ sprite: Mobs/Customization/masking_helpers.rsi
+ state: unisex_full
+ visible: false
+ - map: ["jumpsuit"]
+ - map: ["enum.HumanoidVisualLayers.LFoot"]
+ - map: ["enum.HumanoidVisualLayers.RFoot"]
+ - map: ["enum.HumanoidVisualLayers.LHand"]
+ - map: ["enum.HumanoidVisualLayers.RHand"]
+ - map: [ "gloves" ]
+ - map: [ "shoes" ]
+ - map: [ "ears" ]
+ - map: [ "eyes" ]
+ - map: [ "belt" ]
+ - map: [ "id" ]
+ - map: [ "neck" ]
+ - map: [ "back" ]
+ - map: [ "enum.HumanoidVisualLayers.FacialHair" ]
+ - map: [ "enum.HumanoidVisualLayers.Hair" ]
+ - map: [ "enum.HumanoidVisualLayers.HeadSide" ]
+ - map: [ "enum.HumanoidVisualLayers.HeadTop" ]
+ - map: [ "enum.HumanoidVisualLayers.Tail" ]
+ - map: [ "mask" ]
+ - map: [ "head" ]
+ - map: ["enum.HumanoidVisualLayers.Handcuffs"]
+ color: "#ffffff"
+ sprite: Objects/Misc/handcuffs.rsi
+ state: body-overlay-2
+ visible: false
+ - map: [ "clownedon" ] # Dynamically generated
+ sprite: "Effects/creampie.rsi"
+ state: "creampie_human"
+ visible: false
+ - sprite: Objects/Weapons/Guns/Pistols/viper.rsi
+ state: inhand-left
diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml
index 5240ce21ab6..6ee3a7543f7 100644
--- a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml
@@ -1,3 +1,7 @@
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
- type: entity
parent: BasePDA
id: CorpsmanPDA
@@ -35,3 +39,16 @@
scanDelay: 1
scanningEndSound:
path: "/Audio/Items/Medical/healthscanner.ogg"
+
+- type: entity
+ parent: SyndiPDA
+ id: SyndiListeningPostPDA
+ components:
+ - type: Pda
+ id: SyndicateIDCard
+ state: pda-syndi-agent
+ penSlot:
+ startingItem: CyberPen
+ whitelist:
+ tags:
+ - Write
diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/faxmachines.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/faxmachines.yml
new file mode 100644
index 00000000000..550aaed534b
--- /dev/null
+++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/faxmachines.yml
@@ -0,0 +1,20 @@
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
+- type: entity
+ parent: FaxMachineBase
+ id: FaxMachineListeningSyndie
+ name: listening post long range fax machine
+ suffix: Syndicate
+ components:
+ - type: Sprite
+ sprite: DeltaV/Structures/Machines/syndicate_fax_machine.rsi
+ layers:
+ - state: icon
+ map: [ "base" ]
+ color: "#a3a3a3"
+ - type: FaxMachine
+ name: "Unknown?"
+ responsePings: false
+ - type: Emagged
diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml
index 9edf69d2e12..b4a1f8808eb 100644
--- a/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Structures/Machines/syndicate_monitor_server.yml
@@ -1,4 +1,8 @@
-- type: entity # This is *meant* to make use of the concept that StationLimitedNetwork doesn't allow recievers to reciever across two different grids, however this uh, doesn't seem to be relevant. The Pirate Radio shuttle can still recieve across grids....
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
+- type: entity
id: SyndicateMonitoringServer
parent: BaseMachinePowered
name: suspicious crew monitoring server
@@ -30,8 +34,7 @@
receiveFrequencyId: SuitSensor
autoConnect: false
- type: WirelessNetworkConnection
- range: 2000
- #- type: StationLimitedNetwork
+ range: 10000 # Mega range for Listening Post
- type: ApcPowerReceiver
powerLoad: 200
priority: Low
@@ -59,7 +62,7 @@
min: 1
max: 2
- type: AmbientSound
- volume: -5 # Hacked so it's louder?
- range: 5
+ volume: -1
+ range: 2
sound:
path: /Audio/Ambience/Objects/server_fans.ogg
diff --git a/Resources/Prototypes/DeltaV/GameRules/events.yml b/Resources/Prototypes/DeltaV/GameRules/events.yml
index a88e5296cba..73b0ca6549c 100644
--- a/Resources/Prototypes/DeltaV/GameRules/events.yml
+++ b/Resources/Prototypes/DeltaV/GameRules/events.yml
@@ -52,9 +52,12 @@
noSpawn: true
components:
- type: StationEvent
- earliestStart: 20
+ earliestStart: 15
weight: 5
minimumPlayers: 25
maxOccurrences: 1
duration: 1
- type: PirateRadioSpawnRule
+ debrisCount: 6
+ distanceModifier: 13
+ debrisDistanceModifier: 3
diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml
index 77796713507..60b6e3c6e90 100644
--- a/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml
+++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Fun/misc_startinggear.yml
@@ -1,3 +1,6 @@
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
#Misc outfit startingGear definitions.
@@ -62,7 +65,7 @@
ears: ClothingHeadsetAltSyndicateListening
gloves: ClothingHandsGlovesCombat
shoes: ClothingShoesSlippers
- id: SyndiPDA
+ id: SyndiListeningPostPDA
innerClothingSkirt: ClothingUniformJumpsuitPyjamaSyndicatePink
# Mobsters
@@ -96,4 +99,4 @@
pocket1: CombatKnife
innerClothingSkirt: ClothingUniformJumpsuitSuitBrown
satchel: ClothingBackpackMafiaFilled
- duffelbag: ClothingBackpackMafiaFilled
\ No newline at end of file
+ duffelbag: ClothingBackpackMafiaFilled
diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml
index 15415894426..a1984279e9f 100644
--- a/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml
+++ b/Resources/Prototypes/DeltaV/Roles/Jobs/NPC/syndicateNPCs.yml
@@ -1,12 +1,25 @@
+#Delta-V - This file is licensed under AGPLv3
+# Copyright (c) 2024 Delta-V Contributors
+# See AGPLv3.txt for details.
+
- type: startingGear
id: RadioGuardGear
equipment:
jumpsuit: ClothingUniformJumpsuitLawyerBlack
shoes: ClothingShoesBootsLaceup
- id: SyndicateIDCard
+ id: SyndiListeningPostPDA
ears: ClothingHeadsetAltSyndicate
mask: ClothingMaskGasSyndicate
eyes: ClothingEyesHudSyndicate
gloves: ClothingHandsGlovesCombat
- outerClothing: ClothingOuterArmorPlateCarrier
- pocket1: WeaponPistolViper
+ outerClothing: ClothingOuterArmorPlateCarrierUnremoveable
+
+- type: entity
+ parent: ClothingOuterArmorPlateCarrier
+ id: ClothingOuterArmorPlateCarrierUnremoveable
+ name: grafted plate carrier
+ suffix: Unremoveable
+ description: An off-the-shelf plate carrier that has been cruelly grafted onto its wearers body
+ noSpawn: true
+ components:
+ - type: Unremoveable
diff --git a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml
index b069d28a33b..72027d2243e 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/crew_monitor_server.yml
@@ -30,7 +30,7 @@
receiveFrequencyId: SuitSensor
autoConnect: false
- type: WirelessNetworkConnection
- range: 500
+ range: 10000 # Delta-V Maximises the range for the Crew Monitor Server to make it work for Listening Post
- type: StationLimitedNetwork
- type: ApcPowerReceiver
powerLoad: 200
diff --git a/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/icon.png b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/icon.png
new file mode 100644
index 00000000000..e8a4c3df289
Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/icon.png differ
diff --git a/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/idle.png b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/idle.png
new file mode 100644
index 00000000000..cda35143132
Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/idle.png differ
diff --git a/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/inserting.png b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/inserting.png
new file mode 100644
index 00000000000..9bbaee1f38f
Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/inserting.png differ
diff --git a/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/meta.json
new file mode 100644
index 00000000000..bfe2d60e0a3
--- /dev/null
+++ b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/meta.json
@@ -0,0 +1,65 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Resprited by DangerRevolution from TauCetiClassic at commit https://github.com/TauCetiStation/TauCetiClassic/tree/23b5c47245804dd24507b75f250de5e87d34e294",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "idle",
+ "delays": [
+ [
+ 0.4,
+ 0.4,
+ 0.4,
+ 0.4
+ ]
+ ]
+ },
+ {
+ "name": "inserting",
+ "delays": [
+ [
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "printing",
+ "delays": [
+ [
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2,
+ 0.2
+ ]
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/printing.png b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/printing.png
new file mode 100644
index 00000000000..b01d5b0ec64
Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/syndicate_fax_machine.rsi/printing.png differ