diff --git a/Content.Server/Devour/DevourSystem.cs b/Content.Server/Devour/DevourSystem.cs index febbd093a6c..d9c50f260a3 100644 --- a/Content.Server/Devour/DevourSystem.cs +++ b/Content.Server/Devour/DevourSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Body.Components; using Content.Server.Body.Systems; using Content.Shared.Chemistry.Components; using Content.Shared.Devour; @@ -15,6 +16,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent(OnGibContents); } private void OnDoAfter(EntityUid uid, DevourerComponent component, DevourDoAfterEvent args) @@ -45,5 +47,15 @@ private void OnDoAfter(EntityUid uid, DevourerComponent component, DevourDoAfter _audioSystem.PlayPvs(component.SoundDevour, uid); } + + private void OnGibContents(EntityUid uid, DevourerComponent component, ref BeingGibbedEvent args) + { + if (!component.ShouldStoreDevoured) + return; + + // For some reason we have two different systems that should handle gibbing, + // and for some another reason GibbingSystem, which should empty all containers, doesn't get involved in this process + ContainerSystem.EmptyContainer(component.Stomach); + } } diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index 53c6c62cdb8..02dcd6ad19f 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -21,6 +21,9 @@ using Robust.Server.GameObjects; using Robust.Shared.Containers; using Robust.Shared.Player; +using Content.Shared.Mobs.Components; // Frontier +using Content.Shared.NPC.Components; // Frontier +using Content.Shared.Mobs; // Frontier namespace Content.Server.Mech.Systems; @@ -228,6 +231,17 @@ private void OnMechEntry(EntityUid uid, MechComponent component, MechEntryEvent return; } + // Frontier - Make AI Attack mechs based on user. + if (TryComp(args.User, out var _)) + EnsureComp(uid); + if (TryComp(args.User, out var faction)) + { + var factionMech = EnsureComp(uid); + if (faction.Factions != null) + factionMech.Factions = faction.Factions; + } + // Frontier + TryInsert(uid, args.Args.User, component); _actionBlocker.UpdateCanMove(uid); @@ -256,6 +270,9 @@ private void OnDamageChanged(EntityUid uid, MechComponent component, DamageChang var damage = args.DamageDelta * component.MechToPilotDamageMultiplier; _damageable.TryChangeDamage(component.PilotSlot.ContainedEntity, damage); } + + if (TryComp(component.PilotSlot.ContainedEntity, out var state) && state.CurrentState != MobState.Alive) // Frontier - Eject players from mechs when they go crit + TryEject(uid, component); } private void ToggleMechUi(EntityUid uid, MechComponent? component = null, EntityUid? user = null) diff --git a/Content.Server/NPC/HTN/HTNSystem.cs b/Content.Server/NPC/HTN/HTNSystem.cs index cfa670e1445..69a47a4bb13 100644 --- a/Content.Server/NPC/HTN/HTNSystem.cs +++ b/Content.Server/NPC/HTN/HTNSystem.cs @@ -13,6 +13,10 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Content.Server.Worldgen; // Frontier +using Content.Server.Worldgen.Components; // Frontier +using Content.Server.Worldgen.Systems; // Frontier +using Robust.Server.GameObjects; // Frontier namespace Content.Server.NPC.HTN; @@ -22,6 +26,12 @@ public sealed class HTNSystem : EntitySystem [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly NPCSystem _npc = default!; [Dependency] private readonly NPCUtilitySystem _utility = default!; + // Frontier + [Dependency] private readonly WorldControllerSystem _world = default!; + [Dependency] private readonly TransformSystem _transform = default!; + private EntityQuery _mapQuery; + private EntityQuery _loadedQuery; + // Frontier private readonly JobQueue _planQueue = new(0.004); @@ -31,6 +41,8 @@ public sealed class HTNSystem : EntitySystem public override void Initialize() { base.Initialize(); + _mapQuery = GetEntityQuery(); // Frontier + _loadedQuery = GetEntityQuery(); // Frontier SubscribeLocalEvent(_npc.OnMobStateChange); SubscribeLocalEvent(_npc.OnNPCMapInit); SubscribeLocalEvent(_npc.OnPlayerNPCAttach); @@ -153,6 +165,9 @@ public void UpdateNPC(ref int count, int maxUpdates, float frameTime) if (count >= maxUpdates) break; + if (!IsNPCActive(uid)) // Frontier + continue; + if (comp.PlanningJob != null) { if (comp.PlanningJob.Exception != null) @@ -241,6 +256,18 @@ public void UpdateNPC(ref int count, int maxUpdates, float frameTime) } } + private bool IsNPCActive(EntityUid entity) // Frontier + { + var transform = Transform(entity); + + if (!_mapQuery.TryGetComponent(transform.MapUid, out var worldComponent)) + return true; + + var chunk = _world.GetOrCreateChunk(WorldGen.WorldToChunkCoords(_transform.GetWorldPosition(transform)).Floored(), transform.MapUid.Value, worldComponent); + + return _loadedQuery.TryGetComponent(chunk, out var loaded) && loaded.Loaders is not null; + } + private void AppendDebugText(HTNTask task, StringBuilder text, List planBtr, List btr, ref int level) { // If it's the selected BTR then highlight. diff --git a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs index 97b5bfeba6f..3e759945ce6 100644 --- a/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs +++ b/Content.Shared/Mech/EntitySystems/SharedMechSystem.cs @@ -19,6 +19,8 @@ using Robust.Shared.Network; using Robust.Shared.Serialization; using Robust.Shared.Timing; +using Content.Shared.Mobs.Components; // Frontier +using Content.Shared.NPC.Components; // Frontier namespace Content.Shared.Mech.EntitySystems; @@ -388,6 +390,14 @@ public bool TryEject(EntityUid uid, MechComponent? component = null) RemoveUser(uid, pilot); _container.RemoveEntity(uid, pilot); UpdateAppearance(uid, component); + + // Frontier - Make NPC AI attack Mechs + if (TryComp(uid, out var _)) + RemComp(uid); + if (TryComp(uid, out var _)) + RemComp(uid); + // Frontier + return true; } diff --git a/Content.Shared/NPC/Components/NpcFactionMemberComponent.cs b/Content.Shared/NPC/Components/NpcFactionMemberComponent.cs index 91521e98545..edf8a8b76f5 100644 --- a/Content.Shared/NPC/Components/NpcFactionMemberComponent.cs +++ b/Content.Shared/NPC/Components/NpcFactionMemberComponent.cs @@ -2,10 +2,11 @@ using Content.Shared.NPC.Systems; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; +using Content.Shared.Mech.EntitySystems; // Frontier namespace Content.Shared.NPC.Components; -[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem))] +[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem), typeof(SharedMechSystem))] // Frontier - Added MechSystem public sealed partial class NpcFactionMemberComponent : Component { /// diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index ef40027a6ec..ef3cc41d228 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4861,3 +4861,29 @@ Entries: existing mail, expect the mail to find you soon. id: 5017 time: '2024-06-07T17:10:14.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: The Mail Truck got a full rework, + id: 5018 + time: '2024-06-07T21:53:00.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: Dragons can devour people again without deleting them. + id: 5019 + time: '2024-06-08T14:40:33.0000000+00:00' +- author: whatston3 + changes: + - type: Tweak + message: >- + The Brigmedic HUD now has job icon, wanted status, and health icon + display. + id: 5020 + time: '2024-06-08T22:01:36.0000000+00:00' +- author: Tych0theSynth and Deeja + changes: + - type: Add + message: Added the NSF Broadhead, a new medium-size detective vessel. + id: 5021 + time: '2024-06-09T17:53:08.0000000+00:00' diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/broadhead.yml b/Resources/Maps/_NF/Shuttles/Nfsd/broadhead.yml new file mode 100644 index 00000000000..15f2bb59ed0 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/Nfsd/broadhead.yml @@ -0,0 +1,5117 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 30: FloorDark + 34: FloorDarkMini + 45: FloorFreezer + 46: FloorGlass + 52: FloorGrayConcrete + 77: FloorRGlass + 107: FloorTechMaint + 116: FloorWhiteMono + 121: FloorWood + 124: Lattice + 125: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: 149.94681,17.377306 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAANAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAACeQAAAAABeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAACeQAAAAABeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAACeQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: HgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACTQAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAATQAAAAABHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACTQAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADTQAAAAABHgAAAAACfQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAATQAAAAAAHgAAAAADfQAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAAAHgAAAAACfQAAAAAAHgAAAAADHgAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAACfQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAfQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABTQAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAACfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAABeQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAACIgAAAAADIgAAAAACfQAAAAAAeQAAAAABeQAAAAACeQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIgAAAAAAIgAAAAADIgAAAAADfQAAAAAAeQAAAAACeQAAAAACeQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAABfQAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAHgAAAAADLQAAAAAALQAAAAAAHgAAAAAAHgAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAHgAAAAABLQAAAAAALQAAAAAAHgAAAAABHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAHgAAAAADfQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#5C7D4DFF' + id: Bot + decals: + 139: 5,-10 + 140: 6,-10 + 141: 7,-11 + 142: 8,-12 + 143: 8,-13 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 0: 7,-18 + 1: 7,-19 + 7: -4,-19 + 8: -3,-18 + 9: 0,-19 + 10: 1,-19 + 11: 2,-19 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 17: -4,-13 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 6: 0,-19 + - node: + color: '#5C7D4D99' + id: BrickTileSteelCornerNe + decals: + 129: 6,-10 + 130: 7,-12 + 147: 5,-6 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelCornerNe + decals: + 98: 7,-15 + 105: 3,-10 + - node: + color: '#5C7D4D99' + id: BrickTileSteelCornerNw + decals: + 136: 5,-10 + 144: 4,-6 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelCornerNw + decals: + 80: 1,-10 + 85: -3,-15 + - node: + color: '#5C7D4D99' + id: BrickTileSteelCornerSe + decals: + 113: 2,-8 + 131: 7,-13 + 146: 5,-8 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelCornerSe + decals: + 97: 7,-16 + - node: + color: '#5C7D4D99' + id: BrickTileSteelCornerSw + decals: + 133: 5,-13 + 145: 4,-8 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelCornerSw + decals: + 89: -3,-16 + - node: + color: '#5C7D4D99' + id: BrickTileSteelEndN + decals: + 111: 2,-6 + - node: + color: '#5C7D4D99' + id: BrickTileSteelEndW + decals: + 110: 1,-8 + - node: + color: '#5C7D4D99' + id: BrickTileSteelInnerNe + decals: + 123: -1,-4 + 124: 3,-4 + 138: 6,-12 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelInnerNe + decals: + 106: 3,-15 + - node: + color: '#5C7D4D99' + id: BrickTileSteelInnerNw + decals: + 121: 5,-4 + 122: 1,-4 + 150: 2,-8 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelInnerNw + decals: + 88: 1,-15 + - node: + color: '#5C7D4D99' + id: BrickTileSteelInnerSe + decals: + 125: -1,-4 + 126: 3,-4 + - node: + color: '#5C7D4D99' + id: BrickTileSteelInnerSw + decals: + 119: 1,-4 + 120: 5,-4 + - node: + color: '#52B4E9DC' + id: BrickTileSteelLineE + decals: + 3: 5,-18 + 5: 5,-19 + - node: + color: '#5C7D4D99' + id: BrickTileSteelLineE + decals: + 112: 2,-7 + 137: 6,-11 + 149: 5,-7 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelLineE + decals: + 102: 3,-14 + 103: 3,-12 + 104: 3,-11 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelLineN + decals: + 86: -1,-15 + 87: 0,-15 + 99: 6,-15 + 100: 5,-15 + 101: 4,-15 + - node: + color: '#5C7D4D99' + id: BrickTileSteelLineS + decals: + 132: 6,-13 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelLineS + decals: + 90: -1,-16 + 91: 0,-16 + 92: 1,-16 + 93: 2,-16 + 94: 3,-16 + 95: 4,-16 + 96: 5,-16 + - node: + color: '#5C7D4D99' + id: BrickTileSteelLineW + decals: + 114: 2,-7 + 134: 5,-12 + 135: 5,-11 + 148: 4,-7 + - node: + color: '#5C7D4D9B' + id: BrickTileSteelLineW + decals: + 81: 1,-11 + 82: 1,-12 + 83: 1,-13 + 84: 1,-14 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteCornerSe + decals: + 54: 1,-15 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteCornerSw + decals: + 55: 3,-15 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteInnerNe + decals: + 64: -3,-16 + 115: 1,-4 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteInnerNw + decals: + 63: 7,-16 + 117: 3,-4 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteInnerSe + decals: + 60: 1,-10 + 65: -3,-15 + 116: 1,-4 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteInnerSw + decals: + 61: 3,-10 + 62: 7,-15 + 118: 3,-4 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteLineE + decals: + 50: 1,-14 + 51: 1,-13 + 52: 1,-12 + 53: 1,-11 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteLineN + decals: + 72: 6,-16 + 73: 5,-16 + 74: 4,-16 + 75: 3,-16 + 76: 2,-16 + 77: 1,-16 + 78: 0,-16 + 79: -1,-16 + 152: -2,-16 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteLineS + decals: + 59: 2,-10 + 66: -2,-15 + 67: -1,-15 + 68: 0,-15 + 69: 4,-15 + 70: 5,-15 + 71: 6,-15 + - node: + color: '#5C7D4D7F' + id: BrickTileWhiteLineW + decals: + 56: 3,-14 + 57: 3,-12 + 58: 3,-11 + 109: 3,-13 + - node: + color: '#EFB3413F' + id: CheckerNESW + decals: + 14: -1,-19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 18: -3,-3 + 19: -1,-7 + 20: -1,-6 + 21: -5,-17 + 22: -4,-13 + 23: -2,-19 + 24: 5,-18 + 37: 2,-14 + 38: 2,-4 + 39: 2,-2 + 153: 2,-18 + 189: 7,-3 + 190: 6,-3 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 154: 6,-19 + 155: 2,-13 + 156: -1,-8 + 157: 2,-8 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 166: -3,-15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 27: 9,-17 + 28: -5,-17 + 29: -5,-15 + 30: 2,-18 + 31: -3,-19 + 32: -2,-19 + 33: -1,-19 + 34: -2,-13 + 35: -3,-13 + 36: -4,-13 + 162: 9,-15 + 193: -5,-16 + 194: 9,-16 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 158: -1,-8 + 159: 0,-8 + 163: 4,-16 + 195: 9,-16 + 196: -5,-16 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 164: 6,-18 + 165: 7,-15 + 197: 6,-12 + 198: 0,-7 + 199: -1,-6 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 167: -3,-16 + 168: 0,-15 + 169: 3,-12 + 170: 6,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 160: -1,-7 + 171: 5,-13 + 180: 4,-7 + 181: 5,-6 + 182: 2,-6 + 183: 1,-16 + 184: -2,-15 + 185: 5,-15 + 186: 3,-13 + 187: 7,-13 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 172: 7,-12 + 173: 1,-8 + 174: 5,-8 + 188: -1,-16 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 175: 3,-4 + 176: -2,-4 + 177: 1,-4 + 178: 5,-4 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 179: 4,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 25: 9,-15 + 26: 9,-17 + 161: 0,-7 + - node: + color: '#5C7D4D7F' + id: MiniTileCheckerAOverlay + decals: + 45: 1,-2 + 46: 1,-1 + 47: 2,-1 + 48: 3,-1 + 49: 3,-2 + - node: + color: '#EFB3413F' + id: QuarterTileOverlayGreyscale + decals: + 12: -3,-19 + - node: + color: '#EFB3413F' + id: QuarterTileOverlayGreyscale180 + decals: + 13: -3,-19 + - node: + color: '#C2AE989B' + id: WarnLineGreyscaleE + decals: + 107: 3,-13 + - node: + color: '#C2AE98CC' + id: WarnLineGreyscaleE + decals: + 192: -5,-16 + - node: + color: '#C2AE989B' + id: WarnLineGreyscaleN + decals: + 108: 2,-10 + - node: + color: '#EFB34166' + id: WarnLineGreyscaleN + decals: + 127: -2,-15 + - node: + color: '#52B4E966' + id: WarnLineGreyscaleS + decals: + 128: 6,-16 + - node: + color: '#EFB34166' + id: WarnLineGreyscaleS + decals: + 151: -2,-16 + - node: + color: '#C2AE98CC' + id: WarnLineGreyscaleW + decals: + 191: 9,-16 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 2: 5,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 4: 0,-4 + - node: + cleanable: True + color: '#1861D5BD' + id: splatter + decals: + 43: 4.4332733,-19.20188 + 44: 3.8082733,-18.45188 + - node: + cleanable: True + color: '#951710D0' + id: splatter + decals: + 40: 4.2301483,-18.905005 + - node: + cleanable: True + color: '#951710F8' + id: splatter + decals: + 41: 3.8863983,-18.98313 + - node: + cleanable: True + color: '#951710FF' + id: splatter + decals: + 42: 4.1832733,-19.23313 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#DE3A3AEC' + id: splatter + decals: + 15: -0.4963379,-6.011963 + 16: 0.3317871,-5.652588 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4895 + 1,0: + 0: 4991 + 1: 9344 + 2,0: + 1: 1 + -2,-4: + 0: 36044 + -2,-3: + 0: 8 + 1: 128 + -1,-4: + 0: 65535 + -1,-3: + 0: 61439 + 1: 4096 + -1,-2: + 1: 4642 + 0: 60620 + -1,-1: + 0: 65535 + -1,0: + 1: 33825 + 0: 2254 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 63351 + 1: 2184 + 1,-1: + 0: 65535 + 2,-4: + 0: 14199 + 2,-3: + 0: 275 + 1: 4128 + 2,-2: + 1: 4096 + 2,-1: + 0: 4369 + 0,-6: + 1: 4096 + 0: 57344 + 0,-5: + 0: 65535 + 1,-6: + 1: 30720 + 0: 32896 + 1,-5: + 0: 65535 + 2,-6: + 0: 4112 + 1: 256 + 2,-5: + 0: 30513 + 1: 2 + -2,-5: + 0: 52352 + 1: 8 + -1,-6: + 0: 12336 + 1: 49920 + -1,-5: + 0: 65535 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + anchored: True + pos: -3.5,-18.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockEngineering + entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 +- proto: AirlockMedical + entities: + - uid: 9 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 +- proto: AirlockNfsdGlassLocked + entities: + - uid: 10 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 +- proto: AirlockNfsdLocked + entities: + - uid: 14 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 +- proto: AmeController + entities: + - uid: 19 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - type: AmeController + injecting: True + - type: ContainerContainer + containers: + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 20 +- proto: AmeJar + entities: + - uid: 20 + components: + - type: Transform + parent: 19 + - type: Physics + canCollide: False + - uid: 21 + components: + - type: Transform + pos: -3.6844177,-11.467476 + parent: 1 +- proto: AmeShielding + entities: + - uid: 22 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - type: PointLight + radius: 2 + enabled: True + - uid: 25 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 31 + components: + - type: MetaData + name: Aft APC + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 32 + components: + - type: MetaData + name: Fore APC + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: MetaData + name: Midships APC + - type: Transform + pos: 7.5,-9.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 38 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 +- proto: Bed + entities: + - uid: 70 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: BedsheetNfsd + entities: + - uid: 73 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - type: Physics + canCollide: False + - uid: 74 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - type: Physics + canCollide: False +- proto: BedsheetSyndie + entities: + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 +- proto: BodyBagFolded + entities: + - uid: 76 + components: + - type: Transform + pos: 4.8115997,-17.48552 + parent: 1 +- proto: BoxBodyBag + entities: + - uid: 77 + components: + - type: Transform + pos: 4.252304,-17.141243 + parent: 1 +- proto: BoxEvidenceMarkers + entities: + - uid: 78 + components: + - type: Transform + pos: 1.3819122,-10.411967 + parent: 1 +- proto: BoxFlashbang + entities: + - uid: 79 + components: + - type: Transform + pos: 5.6434326,-11.430737 + parent: 1 + - type: Physics + canCollide: False +- proto: BoxForensicPad + entities: + - uid: 80 + components: + - type: Transform + pos: 1.3819122,-10.990092 + parent: 1 +- proto: BoxZiptie + entities: + - uid: 81 + components: + - type: Transform + pos: 5.3621826,-11.149487 + parent: 1 + - type: Physics + canCollide: False +- proto: ButtonFrameCaution + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: ButtonFrameGrey + entities: + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 +- proto: ButtonFrameJanitor + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 87 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 +- proto: CableHV + entities: + - uid: 163 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 +- proto: CableMV + entities: + - uid: 174 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 +- proto: Carpet + entities: + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 217 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 +- proto: CarpetBlue + entities: + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 222 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 223 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 +- proto: Chair + entities: + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 244 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 246 + components: + - type: Transform + pos: 4.7395782,-17.03013 + parent: 1 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: This decreases your running speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingHandsGlovesLatex + entities: + - uid: 247 + components: + - type: Transform + pos: 4.6665497,-17.446497 + parent: 1 +- proto: ComputerTabletopIFF + entities: + - uid: 248 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 249 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 250 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 251 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 252 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 +- proto: EvidenceMarkerSeven + entities: + - uid: 266 + components: + - type: Transform + pos: 1.3013916,-11.433389 + parent: 1 + - type: Physics + canCollide: False +- proto: EvidenceMarkerSix + entities: + - uid: 267 + components: + - type: Transform + pos: 1.7725372,-10.286967 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 268 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 269 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 +- proto: filingCabinetDrawerRandom + entities: + - uid: 270 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: filingCabinetRandom + entities: + - uid: 271 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 +- proto: FlashlightNfsdLite + entities: + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.767334,-10.771452 + parent: 1 + - type: Physics + canCollide: False +- proto: FolderSpawner + entities: + - uid: 284 + components: + - type: Transform + pos: 7.326782,-3.3080797 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -1.1270905,-0.32656097 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 7.686157,-3.4955797 + parent: 1 +- proto: ForensicPad + entities: + - uid: 287 + components: + - type: Transform + pos: -1.984436,-0.15344048 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -1.359436,-0.46594048 + parent: 1 +- proto: ForensicScanner + entities: + - uid: 289 + components: + - type: Transform + pos: 4.496521,-18.425962 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 297 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 298 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 299 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 300 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 301 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 304 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 307 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 308 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 309 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 317 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 331 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 333 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 336 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 342 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 343 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 344 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 345 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 346 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 347 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 353 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 354 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 355 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 356 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 358 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 359 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 384 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 387 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 392 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 395 + components: + - type: MetaData + name: Distro Pump + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 399 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 404 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 405 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 408 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 413 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 415 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 417 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 418 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 420 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 +- proto: Grille + entities: + - uid: 421 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: GyroscopeSecurity + entities: + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 432 + components: + - type: Transform + pos: 4.2256927,-17.641241 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 433 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: JanitorServiceLight + entities: + - uid: 435 + components: + - type: MetaData + desc: Indicates wether a forensic autopsy is in progress. Would probably be best if you didn't accidently enter the room with this on. + name: Autopsy Light + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 1 + - type: DeviceLinkSink + links: + - 500 +- proto: LampGold + entities: + - uid: 436 + components: + - type: Transform + pos: 6.522354,-0.18920326 + parent: 1 +- proto: LampInterrogator + entities: + - uid: 437 + components: + - type: Transform + pos: 5.511429,-6.1891766 + parent: 1 +- proto: LockerDetectiveFilled + entities: + - uid: 438 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: LockerNfsdEvidence + entities: + - uid: 439 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 +- proto: LockerNfsdSilver + entities: + - uid: 442 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 +- proto: LuxuryPen + entities: + - uid: 443 + components: + - type: Transform + pos: -1.765686,-0.6534405 + parent: 1 + - type: Stamp + stampedName: Deeja +- proto: Morgue + entities: + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 1 +- proto: NoticeBoard + entities: + - uid: 446 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 +- proto: OperatingTable + entities: + - uid: 447 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 +- proto: Paper + entities: + - uid: 448 + components: + - type: Transform + pos: -1.953186,-0.49719048 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -1.062561,-0.5909405 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -1.468811,-0.15344048 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 +- proto: PaperOffice + entities: + - uid: 452 + components: + - type: Transform + pos: -1.578186,-0.40344048 + parent: 1 +- proto: PosterContrabandBountyHunters + entities: + - uid: 453 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 +- proto: PosterContrabandMissingGloves + entities: + - uid: 454 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 455 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 +- proto: PosterContrabandRevolver + entities: + - uid: 456 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 +- proto: PosterLegit12Gauge + entities: + - uid: 457 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 +- proto: PosterLegitDickGumshue + entities: + - uid: 458 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 459 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 +- proto: PosterLegitNoERP + entities: + - uid: 460 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 +- proto: PosterLegitReportCrimes + entities: + - uid: 461 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 +- proto: PosterLegitSecWatch + entities: + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 +- proto: PosterLegitSpaceCops + entities: + - uid: 463 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 464 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-18.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-12.5 + parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 + - type: DeviceLinkSink + links: + - 501 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: PointLight + enabled: False + - type: ApcPowerReceiver + powerLoad: 0 +- proto: Rack + entities: + - uid: 481 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 482 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 491 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 498 + - uid: 492 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 498 + - uid: 493 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 502 + - uid: 494 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 502 + - uid: 495 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 499 + - uid: 496 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 499 + - uid: 497 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 499 +- proto: SignalButton + entities: + - uid: 498 + components: + - type: MetaData + name: Shutter Control + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 492: + - Pressed: Toggle + 491: + - Pressed: Toggle + - uid: 499 + components: + - type: MetaData + name: Shutter Control + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 495: + - Pressed: Toggle + 496: + - Pressed: Toggle + 497: + - Pressed: Toggle + - uid: 500 + components: + - type: MetaData + name: Service Light + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 435: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 501 + components: + - type: MetaData + name: Light Switch + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 480: + - Pressed: Toggle + - uid: 502 + components: + - type: MetaData + name: Shutter Control + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 493: + - Pressed: Toggle + 494: + - Pressed: Toggle +- proto: SignArmory + entities: + - uid: 503 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 504 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 +- proto: SignConspiracyBoard + entities: + - uid: 505 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 506 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 507 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 +- proto: SignInterrogation + entities: + - uid: 508 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 +- proto: SignMorgue + entities: + - uid: 509 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 +- proto: SignSec + entities: + - uid: 510 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 512 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 514 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 515 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 +- proto: SuitStorageDeputy + entities: + - uid: 516 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: SuitStorageWallmountEVAPrisoner + entities: + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 519 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 525 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 526 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 +- proto: TableWood + entities: + - uid: 527 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 +- proto: ThrusterSecurity + entities: + - uid: 533 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 534 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-21.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 537 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 538 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-20.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 549 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 550 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 +- proto: TintedWindow + entities: + - uid: 553 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 +- proto: ToyFigurineDetective + entities: + - uid: 554 + components: + - type: Transform + pos: 1.6742249,-11.356704 + parent: 1 + - type: Physics + canCollide: False +- proto: WallReinforced + entities: + - uid: 555 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 688 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 1 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + - uid: 696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 +- proto: WardrobePrisonFilled + entities: + - uid: 698 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 699 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 700 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 +- proto: WeaponRackBase + entities: + - uid: 701 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 +- proto: WindoorSecureBrigLocked + entities: + - uid: 702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 1 +- proto: Wrench + entities: + - uid: 705 + components: + - type: Transform + pos: -3.5363617,-18.502089 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/mailtruck.yml b/Resources/Maps/_NF/Shuttles/mailtruck.yml index 147de2b0c17..a75945a8c94 100644 --- a/Resources/Maps/_NF/Shuttles/mailtruck.yml +++ b/Resources/Maps/_NF/Shuttles/mailtruck.yml @@ -3,121 +3,200 @@ meta: postmapinit: false tilemap: 0: Space - 33: FloorDarkMono - 85: FloorSteel - 93: FloorSteelMono - 97: FloorTechMaint - 113: Lattice - 114: Plating + 88: FloorShuttleWhite + 107: FloorTechMaint + 124: Lattice + 125: Plating entities: - proto: "" entities: - - uid: 103 + - uid: 1 components: - type: MetaData - - pos: 0.015568733,-0.010050297 + name: grid + - type: Transform + pos: -0.48958334,-0.5208333 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: 0,0: ind: 0,0 - tiles: VQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADIQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXQAAAAACVQAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAVQAAAAACVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAVQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree + - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: - angle: -1.5707963267948966 rad - color: '#95E5FFFF' - id: ArrowsGreyscale + color: '#4D65B4FF' + id: MiniTileWhiteCornerNe + decals: + 24: 6,1 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteCornerNw + decals: + 9: 0,1 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteCornerSe + decals: + 5: 1,-3 + 6: 6,-3 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteCornerSw decals: - 12: -2,1 - 13: -2,-1 + 4: 0,-3 + 7: 5,-3 - node: - color: '#95E5FFB2' - id: BotGreyscale + color: '#4D65B4FF' + id: MiniTileWhiteInnerSe decals: - 10: -2,1 - 11: -2,-1 + 29: 1,-1 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteInnerSw + decals: + 28: 5,-1 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteLineE + decals: + 8: 6,-1 + 23: 6,0 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteLineN + decals: + 10: 1,1 + 11: 2,1 + 12: 3,1 + 14: 5,1 + 39: 4,1 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteLineS + decals: + 25: 2,-1 + 26: 3,-1 + 27: 4,-1 + - node: + color: '#4D65B4FF' + id: MiniTileWhiteLineW + decals: + 15: 0,0 + 16: 0,-1 + - node: + color: '#B33831FF' + id: StandClearGreyscale + decals: + 18: 5,1 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineE + id: WarnLineE decals: - 0: 0,3 - 1: 0,2 - 2: 0,1 - 3: 0,0 - 4: 0,-1 + 42: 4,3 - node: - color: '#66A2FFFF' - id: BrickTileWhiteLineE + color: '#FFFFFFFF' + id: WarnLineN decals: - 5: 0,3 - 6: 0,2 - 7: 0,1 - 8: 0,0 - 9: 0,-1 + 1: 1,-4 + 3: 6,-4 + 22: 5,2 + 34: 0,-2 + 35: 1,-2 + 36: 5,-2 + 37: 6,-2 + 41: 5,2 - node: color: '#FFFFFFFF' - id: WarnCornerSE + id: WarnLineS decals: - 14: 0,-2 + 43: 4,3 - node: color: '#FFFFFFFF' - id: WarnCornerSmallSE + id: WarnLineW decals: - 15: -1,-2 - type: DecalGrid - - version: 2 + 0: 1,-4 + 2: 6,-4 + 20: 5,2 + 30: 0,-2 + 31: 1,-2 + 32: 5,-2 + 33: 6,-2 + 40: 5,2 + - type: GridAtmosphere + version: 2 data: tiles: 0,0: - 0: 13107 - 1: 17476 + 0: 1 + 1: 254 + 2: 61440 0,-1: - 0: 14195 - 1: 16388 - -1,-1: - 1: 104 - 0: 61056 - -1,0: - 0: 52974 - 1: 8192 + 1: 62258 + 2: 136 0,1: - 0: 1 - 1: 6 + 2: 15 + -1,0: + 2: 50244 -1,1: - 1: 4 - 0: 8 + 2: 12 + 1,0: + 1: 12915 + 3: 4 + 2: 32768 + 1,-1: + 1: 30308 + 1,1: + 2: 8 + -1,-1: + 2: 17476 uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 23.57087 + - 88.67137 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -134,7 +213,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -148,776 +227,1266 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - id: MailTruck - type: BecomesStation - - type: SpreaderGrid -- proto: AirAlarm +- proto: AirCanister entities: - - uid: 67 + - uid: 154 + components: + - type: Transform + anchored: True + pos: 4.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternalGlass + entities: + - uid: 14 components: - - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 103 - type: Transform - - ShutdownSubscribers: - - 120 - - 51 - type: DeviceNetwork - - devices: - - 120 - - 51 - type: DeviceList -- proto: AirCanister + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 +- proto: AirlockExternalGlassMailCarrierLocked entities: - - uid: 50 + - uid: 11 components: - - anchored: True - pos: -0.5,-1.5 - parent: 103 - type: Transform - - bodyType: Static - type: Physics + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 - proto: AirlockGlassShuttle entities: - - uid: 13 + - uid: 19 components: - - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 103 - type: Transform - - uid: 32 + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 87 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 103 - type: Transform + - type: Transform + pos: 1.5,-3.5 + parent: 1 - proto: APCBasic entities: - - uid: 66 + - uid: 39 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 103 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 12 + - uid: 7 components: - - pos: 1.5,2.5 - parent: 103 - type: Transform - - uid: 45 + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 24 components: - - pos: -2.5,1.5 - parent: 103 - type: Transform - - uid: 46 + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 30 components: - - pos: -2.5,-0.5 - parent: 103 - type: Transform + - type: Transform + pos: 1.5,-3.5 + parent: 1 - proto: AtmosFixBlockerMarker entities: - - uid: 97 + - uid: 78 components: - - pos: -2.5,-2.5 - parent: 103 - type: Transform - - uid: 98 + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 95 components: - - pos: 2.5,0.5 - parent: 103 - type: Transform - - uid: 99 + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 113 components: - - pos: -1.5,4.5 - parent: 103 - type: Transform - - uid: 101 + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 143 components: - - pos: 1.5,4.5 - parent: 103 - type: Transform - - uid: 104 + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 165 components: - - pos: 2.5,3.5 - parent: 103 - type: Transform - - uid: 110 + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 170 components: - - pos: -2.5,3.5 - parent: 103 - type: Transform - - uid: 111 + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 171 components: - - pos: 2.5,4.5 - parent: 103 - type: Transform - - uid: 112 + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 172 components: - - pos: 2.5,2.5 - parent: 103 - type: Transform - - uid: 113 + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 173 components: - - pos: 2.5,1.5 - parent: 103 - type: Transform - - uid: 114 + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 174 components: - - pos: 2.5,-0.5 - parent: 103 - type: Transform - - uid: 115 + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 175 components: - - pos: 2.5,-3.5 - parent: 103 - type: Transform - - uid: 116 + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 176 components: - - pos: -0.5,-3.5 - parent: 103 - type: Transform - - uid: 117 + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 187 components: - - pos: -1.5,-2.5 - parent: 103 - type: Transform -- proto: BoxPaperOffice + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 +- proto: BoxMailCapsulePrimed entities: - - uid: 72 + - uid: 37 components: - - pos: 0.5136911,0.57866454 - parent: 103 - type: Transform + - type: Transform + pos: 3.220196,1.8447859 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 3.7306128,1.8343692 + parent: 1 +- proto: ButtonFrameExit + entities: + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 - proto: CableApcExtension entities: - - uid: 68 + - uid: 17 components: - - pos: 0.5,-0.5 - parent: 103 - type: Transform - - uid: 69 + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 23 components: - - pos: -0.5,-0.5 - parent: 103 - type: Transform - - uid: 70 + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 25 components: - - pos: -1.5,-0.5 - parent: 103 - type: Transform - - uid: 73 + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 33 components: - - pos: 0.5,0.5 - parent: 103 - type: Transform - - uid: 74 + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 80 components: - - pos: 0.5,1.5 - parent: 103 - type: Transform - - uid: 75 + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 81 components: - - pos: 0.5,2.5 - parent: 103 - type: Transform - - uid: 76 + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 104 components: - - pos: 0.5,3.5 - parent: 103 - type: Transform - - uid: 77 + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 114 components: - - pos: 1.5,-0.5 - parent: 103 - type: Transform - - uid: 79 + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 115 components: - - pos: -0.5,1.5 - parent: 103 - type: Transform - - uid: 80 + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 118 components: - - pos: -1.5,1.5 - parent: 103 - type: Transform + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 - proto: CableHV entities: - - uid: 60 + - uid: 94 components: - - pos: -0.5,-2.5 - parent: 103 - type: Transform - - uid: 106 + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 110 components: - - pos: 0.5,-2.5 - parent: 103 - type: Transform + - type: Transform + pos: 7.5,1.5 + parent: 1 - proto: CableMV entities: - - uid: 61 + - uid: 22 components: - - pos: -0.5,-2.5 - parent: 103 - type: Transform - - uid: 62 + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 31 components: - - pos: 0.5,-2.5 - parent: 103 - type: Transform - - uid: 63 + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 46 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 49 components: - - pos: 0.5,-1.5 - parent: 103 - type: Transform + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 - uid: 64 components: - - pos: 0.5,-0.5 - parent: 103 - type: Transform + - type: Transform + pos: 3.5,4.5 + parent: 1 - uid: 65 components: - - pos: 1.5,-0.5 - parent: 103 - type: Transform -- proto: Chair - entities: - - uid: 85 + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 66 components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 103 - type: Transform -- proto: ClothingHeadMailCarrier + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 +- proto: ChairOfficeLight entities: - - uid: 92 + - uid: 116 components: - - pos: 0.29172873,0.90015525 - parent: 103 - type: Transform -- proto: ClothingOuterWinterCoatMail + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5087351,0.69835764 + parent: 1 +- proto: ClosetWall entities: - - uid: 93 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 91 + - 93 + - 92 +- proto: ClothingBackpackMessengerMailCarrier + entities: + - uid: 83 components: - - pos: 0.4088018,0.59283876 - parent: 103 - type: Transform + - type: Transform + pos: 2.4522166,1.6468692 + parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 43 + - uid: 45 components: - - pos: 0.5,3.5 - parent: 103 - type: Transform + - type: Transform + pos: 1.5,1.5 + parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 90 + - uid: 71 components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 103 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots - proto: DefibrillatorCabinetFilled entities: - - uid: 1 + - uid: 44 components: - - pos: -1.5,2.5 - parent: 103 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 +- proto: DogBed + entities: + - uid: 144 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 - proto: EmergencyLight entities: - - uid: 58 + - uid: 12 components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 103 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 71 + - uid: 32 components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 103 - type: Transform + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 - proto: FaxMachineShip entities: - - uid: 53 + - uid: 88 components: - - pos: -0.5,3.5 - parent: 103 - type: Transform -- proto: GasPassiveVent + - type: Transform + pos: 0.5,1.5 + parent: 1 +- proto: Floodlight entities: - - uid: 100 + - uid: 151 components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: Transform + pos: -1.4297498,2.745983 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeBend entities: - - uid: 59 + - uid: 200 components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 52 + - uid: 99 components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 105 + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 201 components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - - uid: 96 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 103 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 56 + - uid: 9 components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 51 - components: - - pos: -0.5,-0.5 - parent: 103 - type: Transform - - ShutdownSubscribers: - - 67 - type: DeviceNetwork - - color: '#0000CCFF' - type: AtmosPipeColor + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 120 + - uid: 106 components: - - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 103 - type: Transform - - ShutdownSubscribers: - - 67 - type: DeviceNetwork - - color: '#990000FF' - type: AtmosPipeColor + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 24 + - uid: 103 components: - - pos: 1.5,-1.5 - parent: 103 - type: Transform + - type: Transform + pos: -1.5,-1.5 + parent: 1 - proto: Grille entities: - - uid: 35 + - uid: 26 components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 103 - type: Transform - - uid: 36 + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 43 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 103 - type: Transform - - uid: 37 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 52 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 103 - type: Transform - - uid: 38 + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 76 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 103 - type: Transform - - uid: 39 + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 100 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 103 - type: Transform - - uid: 40 + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 117 components: - - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 103 - type: Transform - - uid: 41 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 120 components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 103 - type: Transform -- proto: MailBag + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 +- proto: Gyroscope entities: - - uid: 95 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 +- proto: LockableButtonMailCarrier + entities: + - uid: 158 components: - - pos: 0.54131335,0.71341455 - parent: 103 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 79: + - Pressed: Toggle + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 123: + - Pressed: Toggle - proto: PlasticFlapsAirtightClear entities: - - uid: 42 + - uid: 55 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 86 components: - - pos: 1.5,2.5 - parent: 103 - type: Transform -- proto: PortableGeneratorPacman + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 49 + - uid: 96 components: - - anchored: True - pos: 0.5,-2.5 - parent: 103 - type: Transform - - storage: - Plasma: 1500 - type: MaterialStorage - - bodyType: Static - type: Physics - - type: InsertingMaterialStorage + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PowerCellRecharger + entities: + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 - proto: Poweredlight entities: - - uid: 6 + - uid: 41 components: - - rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 103 - type: Transform - - uid: 89 + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 61 components: - - rot: 3.141592653589793 rad - pos: -0.5,-1.5 - parent: 103 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: SheetPlasma + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 +- proto: Railing entities: - - uid: 108 + - uid: 75 components: - - pos: 0.541206,0.48403737 - parent: 103 - type: Transform - - count: 15 - type: Stack - - size: 15 - type: Item -- proto: ShuttersNormalOpen + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 +- proto: RailingCorner entities: - - uid: 118 + - uid: 131 components: - - pos: 1.5,2.5 - parent: 103 - type: Transform - - links: - - 119 - type: DeviceLinkSink -- proto: ShuttleWindow + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 +- proto: ReinforcedWindow entities: - - uid: 2 + - uid: 8 components: - - pos: -0.5,4.5 - parent: 103 - type: Transform - - uid: 3 + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 10 components: - - pos: 0.5,4.5 - parent: 103 - type: Transform - - uid: 20 + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 27 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 103 - type: Transform - - uid: 25 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - uid: 34 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 103 - type: Transform - - uid: 28 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 50 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 103 - type: Transform - - uid: 30 + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 54 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 103 - type: Transform - - uid: 34 + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 162 components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 103 - type: Transform -- proto: SignalButtonDirectional + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 +- proto: ServiceTechFab entities: - - uid: 119 + - uid: 126 components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 103 - type: Transform - - linkedPorts: - 118: - - Pressed: Toggle - type: DeviceLinkSource -- proto: SignMail + - type: Transform + pos: 6.5,0.5 + parent: 1 +- proto: SheetGlass entities: - - uid: 54 + - uid: 93 components: - - pos: 1.5,0.5 - parent: 103 - type: Transform - - uid: 55 + - type: Transform + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma + entities: + - uid: 146 components: - - pos: -2.5,2.5 - parent: 103 - type: Transform -- proto: SmallGyroscope + - type: Transform + pos: 6.491864,1.5018094 + parent: 1 +- proto: SheetPlastic entities: - - uid: 26 + - uid: 92 components: - - pos: 1.5,-2.5 - parent: 103 - type: Transform -- proto: SpawnPointLatejoin + - type: Transform + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel entities: - uid: 91 components: - - pos: 0.5,-1.5 - parent: 103 - type: Transform -- proto: SpawnPointMailCarrier + - type: Transform + parent: 166 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShuttersNormalOpen entities: - - uid: 102 + - uid: 79 components: - - pos: -0.5,1.5 - parent: 103 - type: Transform -- proto: SubstationWallBasic + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 158 + - uid: 123 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 159 +- proto: SignMail entities: - - uid: 57 + - uid: 84 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 103 - type: Transform -- proto: SuitStorageWallmountEVAAlternate + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 +- proto: SignSpace entities: - - uid: 9 + - uid: 77 components: - - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 103 - type: Transform -- proto: TableReinforced + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 +- proto: SpawnPointLatejoin entities: - - uid: 44 + - uid: 90 components: - - pos: -0.5,3.5 - parent: 103 - type: Transform - - uid: 48 + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 +- proto: SuitStorageWallmountMailCarrier + entities: + - uid: 73 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - type: Physics + canCollide: False +- proto: Table + entities: + - uid: 13 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,0.5 - parent: 103 - type: Transform - - uid: 83 + parent: 1 + - uid: 16 components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 103 - type: Transform - - uid: 84 + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 20 components: - - pos: -0.5,2.5 - parent: 103 - type: Transform - - uid: 86 + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 36 components: - - pos: 0.5,3.5 - parent: 103 - type: Transform -- proto: Thruster - entities: - - uid: 15 + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 53 components: - - rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 103 - type: Transform - - uid: 18 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 59 components: - - pos: 2.5,4.5 - parent: 103 - type: Transform - - uid: 33 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 97 components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 103 - type: Transform - - uid: 47 + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 135 components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 103 - type: Transform -- proto: WallShuttle + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 +- proto: Thruster entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 4 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 103 - type: Transform - - uid: 5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 101 components: - - pos: 1.5,3.5 - parent: 103 - type: Transform - - uid: 8 + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 +- proto: ToolboxMechanicalFilled + entities: + - uid: 153 components: - - pos: -1.5,3.5 - parent: 103 - type: Transform - - uid: 10 + - type: Transform + pos: 3.423067,-0.39479744 + parent: 1 +- proto: WallReinforced + entities: + - uid: 2 components: - - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 103 - type: Transform - - uid: 11 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 6 components: - - pos: 1.5,1.5 - parent: 103 - type: Transform - - uid: 14 + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 18 components: - - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 103 - type: Transform - - uid: 19 + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 28 components: - - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 103 - type: Transform - - uid: 21 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 40 components: - - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 103 - type: Transform - - uid: 27 + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 42 components: - - rot: 1.5707963267948966 rad + - type: Transform pos: -0.5,-2.5 - parent: 103 - type: Transform - - uid: 31 + parent: 1 + - uid: 47 components: - - rot: 3.141592653589793 rad - pos: -2.5,-1.5 - parent: 103 - type: Transform -- proto: WallShuttleDiagonal - entities: - - uid: 7 + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 51 components: - - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 103 - type: Transform - - uid: 16 + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 62 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 103 - type: Transform - - uid: 17 + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + - uid: 72 components: - - pos: -1.5,4.5 - parent: 103 - type: Transform - - uid: 22 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 89 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 103 - type: Transform - - uid: 23 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 98 components: - - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 103 - type: Transform - - uid: 29 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 102 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 103 - type: Transform + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 - proto: WarpPointShip entities: - - uid: 94 + - uid: 149 components: - - pos: -0.5,0.5 - parent: 103 - type: Transform - - location: Mail Truck - type: WarpPoint -- proto: Wrench + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: WeaponMailLake entities: - - uid: 107 + - uid: 5 components: - - pos: 0.28022814,0.68464565 - parent: 103 - type: Transform + - type: Transform + pos: 3.4022338,1.5843692 + parent: 1 ... diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml index 3f75faf75e1..5b6ea708ec0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/turrets.yml @@ -29,6 +29,7 @@ SheetSteel1: min: 2 max: 4 + - type: MobState # Frontier (otherwise NPCs won't attack the entity) - type: entity parent: BaseStructure diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml index 2976aa2f847..2b204ddeacd 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/hud.yml @@ -22,7 +22,7 @@ sprite: _NF/Clothing/Eyes/Hud/mail.rsi - type: entity - parent: ClothingEyesBase + parent: [ClothingEyesHudMedical, ClothingEyesHudNfsd] id: ClothingEyesHudNfsdMed name: brigmedic hud description: An eye display that looks like a mixture of medical and nfsd huds. @@ -34,9 +34,6 @@ - type: Construction graph: HudMedSec node: medsecHud - - type: ShowHealthBars - damageContainers: - - Biological - type: entity parent: ClothingEyesHudSecurity diff --git a/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml index 17445ac4d3e..bf4127a2323 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Doors/Airlocks/access.yml @@ -169,6 +169,15 @@ containers: board: [ DoorElectronicsArmory ] +- type: entity + parent: AirlockExternal + id: AirlockExternalMailCarrierLocked + suffix: Mail, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMailCarrier ] + # Glass Airlocks - type: entity parent: AirlockCommandGlassLocked @@ -229,4 +238,13 @@ components: - type: ContainerFill containers: - board: [ DoorElectronicsMercenary ] \ No newline at end of file + board: [ DoorElectronicsMercenary ] + +- type: entity + parent: AirlockExternalGlass + id: AirlockExternalGlassMailCarrierLocked + suffix: Mail, Glass, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMailCarrier ] diff --git a/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/switch.yml b/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/switch.yml new file mode 100644 index 00000000000..0ae3182ae62 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Wallmounts/switch.yml @@ -0,0 +1,7 @@ +- type: entity + id: LockableButtonMailCarrier + suffix: Mail + parent: LockableButton + components: + - type: AccessReader + access: [["Mail"]] diff --git a/Resources/Prototypes/_NF/Palettes/frontier.yml b/Resources/Prototypes/_NF/Palettes/frontier.yml index 3344379134c..033ed631662 100644 --- a/Resources/Prototypes/_NF/Palettes/frontier.yml +++ b/Resources/Prototypes/_NF/Palettes/frontier.yml @@ -5,6 +5,7 @@ nfsd brown: "#49392696" nfsd green: "#4b653e96" + mercenary: "#5e7c1696" mercenary light: "#b8b873" mercenary medium: "#7b7b3f" mercenary dark: "#5e7c1696" @@ -17,3 +18,8 @@ sr green mid: "#1f6626ff" sr green light: "#2e9935ff" sr gold: "#f1b223ff" + + mail blue light: "#8fd3ff" + mail blue mid: "#4d9be6" + mail blue dark: "#4d65b4" + mail red: "#b33831" diff --git a/Resources/Prototypes/_NF/Shipyard/Nfsd/broadhead.yml b/Resources/Prototypes/_NF/Shipyard/Nfsd/broadhead.yml new file mode 100644 index 00000000000..6937bf84ab3 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/Nfsd/broadhead.yml @@ -0,0 +1,28 @@ +- type: vessel + id: Broadhead + name: NSF Broadhead + description: A medium size detective ship with facilities for autopsies, interrogations and detailed investigations. + price: 50000 + category: Medium + group: Security + shuttlePath: /Maps/_NF/Shuttles/Nfsd/broadhead.yml + +- type: gameMap + id: Broadhead + mapName: 'NSF Broadhead' + mapPath: /Maps/_NF/Shuttles/Nfsd/broadhead.yml + minPlayers: 0 + stations: + Broadhead: + stationProto: StandardFrontierSecurityVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Broadhead {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Detective: [ 0, 0 ] + SecurityOfficer: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/mailtruck.yml b/Resources/Prototypes/_NF/Shipyard/mailtruck.yml index da4c0594c7b..7f4ccf3a58d 100644 --- a/Resources/Prototypes/_NF/Shipyard/mailtruck.yml +++ b/Resources/Prototypes/_NF/Shipyard/mailtruck.yml @@ -12,7 +12,7 @@ id: MailTruck name: NC Mail Truck description: A cramped yet reliable shuttle for delivering packages. - price: 10150 + price: 16000 category: Small group: None shuttlePath: /Maps/_NF/Shuttles/mailtruck.yml