diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index 9208fa2990e..9ab291f5142 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -24,10 +24,13 @@ using Content.Server.UserInterface; using Content.Shared.StationRecords; using Content.Server.Chat.Systems; +using Content.Server.Forensics; using Content.Server.Mind; +using Content.Server.Preferences.Managers; +using Content.Server.StationRecords; using Content.Server.StationRecords.Systems; using Content.Shared.Database; -using System.Xml.Linq; +using Content.Shared.Preferences; namespace Content.Server.Shipyard.Systems; @@ -37,6 +40,7 @@ public sealed partial class ShipyardSystem : SharedShipyardSystem [Dependency] private readonly AccessReaderSystem _access = default!; [Dependency] private readonly PopupSystem _popup = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly IServerPreferencesManager _prefManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly RadioSystem _radio = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; @@ -147,14 +151,13 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component { R = 10, G = 50, - B = 175, - A = 155 + B = 100, + A = 100 }); } if (TryComp(targetId, out var newCap)) { - //later we will make a custom pilot job, for now they get the captain treatment var newAccess = newCap.Tags.ToList(); newAccess.Add($"Captain"); @@ -179,16 +182,40 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component else channel = component.SecurityShipyardChannel; + // The following block of code is entirely to do with trying to sanely handle moving records from station to station. + // it is ass. + // This probably shouldnt be messed with further until station records themselves become more robust + // and not entirely dependent upon linking ID card entity to station records key lookups + // its just bad + + var stationList = EntityQueryEnumerator(); + if (TryComp(targetId, out var keyStorage) - && shuttleStation !=null - && keyStorage.Key != null - && _records.TryGetRecord(station, keyStorage.Key.Value, out var record)) + && shuttleStation != null + && keyStorage.Key != null) { - _records.RemoveRecord(station, keyStorage.Key.Value); - _records.CreateGeneralRecord((EntityUid) shuttleStation, targetId, record.Name, record.Age, record.Species, record.Gender, $"Captain", record.Fingerprint, record.DNA); - _records.Synchronize((EntityUid) shuttleStation); - _records.Synchronize(station); + bool recSuccess = false; + while (stationList.MoveNext(out var stationUid, out var stationRecComp)) + { + if (!_records.TryGetRecord(stationUid, keyStorage.Key.Value, out var record)) + continue; + + _records.RemoveRecord(stationUid, keyStorage.Key.Value); + _records.CreateGeneralRecord((EntityUid) shuttleStation, targetId, record.Name, record.Age, record.Species, record.Gender, $"Captain", record.Fingerprint, record.DNA); + recSuccess = true; + break; + } + + if (!recSuccess + && _prefManager.GetPreferences(args.Session.UserId).SelectedCharacter is HumanoidCharacterProfile profile) + { + TryComp(player, out var fingerprintComponent); + TryComp(player, out var dnaComponent); + _records.CreateGeneralRecord((EntityUid) shuttleStation, targetId, profile.Name, profile.Age, profile.Species, profile.Gender, $"Captain", fingerprintComponent!.Fingerprint, dnaComponent!.DNA); + } } + _records.Synchronize(shuttleStation!.Value); + _records.Synchronize(station); //if (ShipyardConsoleUiKey.Security == (ShipyardConsoleUiKey) args.UiKey) Enable in the case we force this on every security ship // EnsureComp(shuttle.Owner); Enable in the case we force this on every security ship diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5241266a6ca..36f2a896fc7 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1710,3 +1710,46 @@ Entries: message: Added tiny fans on airlocks for the SLI Gourd id: 4604 time: '2023-11-08T02:10:03.0000000+00:00' +- author: Cheackraze + changes: + - type: Fix + message: Fixed Record Consoles sometimes not showing player records. + id: 4605 + time: '2023-11-09T03:18:44.0000000+00:00' +- author: Bing Guss + changes: + - type: Add + message: Added new lobby art. + id: 4606 + time: '2023-11-09T22:55:16.0000000+00:00' +- author: Lokey82 + changes: + - type: Add + message: >- + CentCom has become tired of supplying Esquires with mass-media consoles, + so they have contracted the help of a new ship engineer. Please welcome + the NT14-WaveShot, A new ship for reporters! + id: 4607 + time: '2023-11-12T20:53:03.0000000+00:00' +- author: cynical24 + changes: + - type: Add + message: >- + Due to a lack of Detective-based ships, the NSF Inquisitor has been + added to Security's shipyard! + id: 4608 + time: '2023-11-12T21:02:02.0000000+00:00' +- author: CharcoalShipyard + changes: + - type: Add + message: 'Kosmologistika note was added on the shuttle console. ' + - type: Tweak + message: Price was changed + - type: Fix + message: Powergrid was changed for the better. + id: 4609 + time: '2023-11-12T21:30:19.0000000+00:00' +- author: ErhardSteinhauer + changes: [] + id: 4610 + time: '2023-11-12T21:31:01.0000000+00:00' diff --git a/Resources/Maps/Shuttles/bulker.yml b/Resources/Maps/Shuttles/bulker.yml new file mode 100644 index 00000000000..bc50f0a7643 --- /dev/null +++ b/Resources/Maps/Shuttles/bulker.yml @@ -0,0 +1,4786 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorArcadeBlue2 + 28: FloorDarkDiagonal + 32: FloorDarkMono + 36: FloorDarkPlastic + 56: FloorHydro + 58: FloorKitchen + 62: FloorMetalDiamond + 64: FloorMono + 70: FloorPlastic + 72: FloorReinforced + 93: FloorSteelOffset + 96: FloorTechMaint + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.5 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: JAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAcQAAAAAARgAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARgAAAAAARgAAAAAAcQAAAAAAcQAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAJAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAJAAAAAAAJAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#6E505BFF' + id: Bushe2 + decals: + 131: -10,1 + 132: -11,1 + 133: 8,-1 + 134: 8,1 + - node: + cleanable: True + color: '#FED80821' + id: Caution + decals: + 127: -5,2 + 128: -4,2 + 129: 4,2 + 130: 5,2 + - node: + color: '#860000FF' + id: ConcreteTrimCornerNe + decals: + 14: 11,-3 + - node: + color: '#FED85146' + id: ConcreteTrimCornerNe + decals: + 41: 6,2 + 48: -3,2 + - node: + color: '#FED85146' + id: ConcreteTrimCornerNw + decals: + 44: 3,2 + 45: -6,2 + - node: + color: '#860000FF' + id: ConcreteTrimCornerSe + decals: + 19: 11,-5 + - node: + color: '#FED85146' + id: ConcreteTrimCornerSe + decals: + 42: 6,-3 + 43: -3,-3 + - node: + color: '#860000FF' + id: ConcreteTrimCornerSw + decals: + 18: 8,-5 + - node: + color: '#FED85146' + id: ConcreteTrimCornerSw + decals: + 46: -6,-3 + 47: 3,-3 + - node: + color: '#860000FF' + id: ConcreteTrimLineE + decals: + 22: 11,-4 + - node: + color: '#860000FF' + id: ConcreteTrimLineN + decals: + 15: 10,-3 + 16: 9,-3 + 17: 8,-3 + - node: + color: '#860000FF' + id: ConcreteTrimLineS + decals: + 20: 9,-5 + 21: 10,-5 + - node: + color: '#860000FF' + id: ConcreteTrimLineW + decals: + 23: 8,-4 + 24: 8,-3 + - node: + color: '#FED85146' + id: DeliveryGreyscale + decals: + 25: -5,1 + 26: -4,1 + 27: -4,0 + 28: -5,0 + 29: -5,-1 + 30: -4,-1 + 31: 4,1 + 32: 5,1 + 33: 5,0 + 34: 4,0 + 35: 4,-1 + 36: 5,-1 + 37: 5,-2 + 38: 4,-2 + 39: -4,-2 + 40: -5,-2 + - node: + cleanable: True + color: '#000000FF' + id: Dirt + decals: + 94: -4,-2 + 95: -4,-1 + 96: -4,0 + 97: -4,1 + 98: -5,1 + 99: -5,0 + 100: -5,-1 + 101: -5,-2 + 102: 4,1 + 103: 4,0 + 104: 4,-1 + 105: 4,-2 + 106: 5,-2 + 107: 5,-1 + 108: 5,0 + 109: 5,1 + - node: + cleanable: True + color: '#000000FF' + id: DirtHeavy + decals: + 115: 3,-2 + 116: 6,1 + 117: 4,2 + 118: 6,-3 + - node: + cleanable: True + color: '#000000FF' + id: DirtHeavyMonotile + decals: + 86: -5,2 + 89: -6,0 + 91: -5,-3 + 125: -4,-3 + - node: + cleanable: True + color: '#000000FF' + id: DirtLight + decals: + 71: -5,1 + 72: -5,0 + 73: -5,-1 + 74: -5,-2 + 75: -4,-2 + 76: -4,-1 + 77: -4,0 + 78: -4,1 + 79: -4,2 + 80: -3,2 + 81: -3,1 + 82: -3,0 + 83: -3,-1 + 84: -3,-2 + 87: -6,2 + 88: -6,1 + 92: -6,-2 + 93: -3,-3 + 110: 3,2 + 111: 3,-3 + 112: 5,2 + 113: 3,-1 + 114: 5,-3 + 119: 3,0 + 120: 3,1 + 121: 6,2 + 122: 6,0 + 123: 6,-2 + 124: 4,-3 + - node: + cleanable: True + color: '#000000FF' + id: DirtMedium + decals: + 85: -3,-1 + 90: -6,-1 + - node: + color: '#860000FF' + id: MiniTileWhiteLineE + decals: + 0: 11,-5 + 1: 11,-4 + 2: 11,-3 + - node: + color: '#860000FF' + id: MiniTileWhiteLineN + decals: + 3: 11,-3 + 4: 10,-3 + 5: 9,-3 + 6: 8,-3 + - node: + color: '#860000FF' + id: MiniTileWhiteLineS + decals: + 7: 11,-5 + 8: 10,-5 + 9: 9,-5 + 10: 8,-5 + - node: + color: '#860000FF' + id: MiniTileWhiteLineW + decals: + 11: 8,-5 + 12: 8,-3 + 13: 8,-4 + - node: + color: '#FED8511E' + id: WarnLineE + decals: + 49: -3,1 + 50: -3,0 + 51: -3,-2 + 52: 6,1 + 53: 6,0 + 54: 6,-2 + 67: -3,-1 + - node: + cleanable: True + color: '#FED80821' + id: WarnLineGreyscaleS + decals: + 126: -4,-3 + - node: + color: '#FED8511E' + id: WarnLineGreyscaleS + decals: + 68: -5,-3 + 69: 4,-3 + 70: 5,-3 + - node: + color: '#FED8511E' + id: WarnLineS + decals: + 59: -6,1 + 60: -6,0 + 61: -6,-1 + 62: -6,-2 + 63: 3,1 + 64: 3,0 + 65: 3,-1 + 66: 3,-2 + - node: + color: '#FED8511E' + id: WarnLineW + decals: + 55: 5,2 + 56: 4,2 + 57: -4,2 + 58: -5,2 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 4095 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 32767 + 2,1: + 0: 12563 + 2,2: + 0: 65535 + 2,3: + 0: 14207 + 3,0: + 0: 307 + 0,-2: + 0: 65535 + 1,-2: + 0: 65521 + 1,-1: + 0: 65535 + 2,-2: + 0: 65520 + 2,-1: + 0: 65535 + 3,-2: + 0: 12544 + 3,-1: + 0: 13107 + -4,0: + 0: 136 + -3,0: + 0: 53247 + -3,2: + 0: 61166 + -3,3: + 0: 36046 + -3,1: + 0: 32776 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 8191 + -4,-2: + 0: 32768 + -4,-1: + 0: 34952 + -3,-2: + 0: 65504 + -3,-1: + 0: 65535 + -2,-2: + 0: 65520 + -2,-1: + 0: 65535 + -1,-2: + 0: 65535 + -2,4: + 0: 31 + 2,4: + 0: 17 + 1,4: + 0: 14 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Bulker + type: BecomesStation +- proto: Airlock + entities: + - uid: 638 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - links: + - 640 + type: DeviceLinkSink + - uid: 639 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - links: + - 640 + type: DeviceLinkSink +- proto: AirlockCaptainGlassLocked + entities: + - uid: 614 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 620 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 622 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 569 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 354 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 30 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 30 + components: + - flags: InContainer + type: MetaData + - parent: 354 + type: Transform + - canCollide: False + type: Physics + - uid: 319 + components: + - pos: 8.752778,0.54067695 + parent: 1 + type: Transform +- proto: AmeShielding + entities: + - uid: 9 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 424 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 434 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 460 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 431 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 52 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 345 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 425 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 33 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform +- proto: BedsheetBlack + entities: + - uid: 629 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 631 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 632 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - links: + - 616 + type: DeviceLinkSink + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + type: Transform + - links: + - 616 + type: DeviceLinkSink + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - links: + - 616 + type: DeviceLinkSink + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - links: + - 616 + type: DeviceLinkSink + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - links: + - 612 + type: DeviceLinkSink + - uid: 394 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - links: + - 612 + type: DeviceLinkSink + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - links: + - 612 + type: DeviceLinkSink + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - links: + - 612 + type: DeviceLinkSink +- proto: CableApcExtension + entities: + - uid: 2 + components: + - pos: -9.5,-3.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 179 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 242 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 243 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 248 + components: + - pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 251 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 255 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 529 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 530 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 533 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 534 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 557 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 558 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 604 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 605 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 14 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 421 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 457 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 582 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 583 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 584 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 585 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 586 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 587 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 593 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 599 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 6 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -8.5,0.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: -10.5,0.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -8.5,-5.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 491 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 57 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 77 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 221 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 607 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 609 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 610 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 663 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 667 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 664 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: CheapLighter + entities: + - uid: 671 + components: + - pos: -0.46583557,-1.4999573 + parent: 1 + type: Transform +- proto: CigaretteLicoxide + entities: + - uid: 670 + components: + - pos: -0.6064606,-1.5155823 + parent: 1 + type: Transform +- proto: CigCartonBlack + entities: + - uid: 668 + components: + - pos: -0.34261942,-1.4062073 + parent: 1 + type: Transform +- proto: CigPackBlack + entities: + - uid: 669 + components: + - pos: -0.6220856,-1.4530823 + parent: 1 + type: Transform +- proto: ClosetChefFilled + entities: + - uid: 598 + components: + - pos: -8.079324,-4.504981 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ComputerShuttle + entities: + - uid: 564 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 101 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 93 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - links: + - 436 + type: DeviceLinkSink + - uid: 192 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - links: + - 619 + type: DeviceLinkSink + - uid: 219 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - links: + - 611 + type: DeviceLinkSink + - uid: 302 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - links: + - 619 + type: DeviceLinkSink + - uid: 571 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - links: + - 436 + type: DeviceLinkSink + - uid: 572 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - links: + - 436 + type: DeviceLinkSink + - uid: 573 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - links: + - 436 + type: DeviceLinkSink + - uid: 574 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - links: + - 613 + type: DeviceLinkSink + - uid: 575 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - links: + - 613 + type: DeviceLinkSink + - uid: 576 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - links: + - 613 + type: DeviceLinkSink + - uid: 577 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - links: + - 611 + type: DeviceLinkSink + - uid: 618 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - links: + - 613 + type: DeviceLinkSink +- proto: DrinkMugBlue + entities: + - uid: 642 + components: + - pos: 1.7313313,-1.5972764 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Tea + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkMugGreen + entities: + - uid: 643 + components: + - pos: 0.7425383,-1.6214733 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Tea + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkMugMetal + entities: + - uid: 644 + components: + - pos: -0.24680173,-1.6572151 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Tea + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkMugOne + entities: + - uid: 641 + components: + - pos: 0.298383,-1.2045224 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Tea + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkShaker + entities: + - uid: 155 + components: + - pos: -7.5619183,-2.2442498 + parent: 1 + type: Transform +- proto: DrinkTeapot + entities: + - uid: 645 + components: + - pos: 0.51183414,-1.3359832 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 100 + reagents: + - data: null + ReagentId: Tea + Quantity: 20 + type: SolutionContainerManager +- proto: FaxMachineShip + entities: + - uid: 169 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 122 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 83 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 87 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 154 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 230 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 231 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 322 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 228 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 79 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 84 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 134 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 135 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 137 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 145 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 147 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 152 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 157 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 158 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 159 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 160 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 161 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 165 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 167 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 173 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 175 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 199 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 200 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 223 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 224 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 225 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 275 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 280 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 283 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 320 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 323 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 163 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 282 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 95 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasValve + entities: + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 85 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 146 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 201 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 138 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 142 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 148 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 94 + components: + - pos: -10.5,1.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 341 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 466 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 496 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 98 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 625 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 627 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 628 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 273 + components: + - pos: -7.640341,-2.51385 + parent: 1 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 272 + components: + - pos: -7.5690746,-2.4322877 + parent: 1 + type: Transform +- proto: hydroponicsTrayAnchored + entities: + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 285 + components: + - pos: -8.5,-2.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 156 + components: + - pos: -9.5,-2.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 542 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 578 + components: + - pos: 4.2649918,-5.505001 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: 4.7801595,-5.50373 + parent: 1 + type: Transform +- proto: OreProcessor + entities: + - uid: 218 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: Paper + entities: + - uid: 580 + components: + - pos: 0.507485,3.5411854 + parent: 1 + type: Transform + - stampState: paper_stamp-qm + stampedBy: + - stampedBorderless: False + stampedColor: '#A23E3EFF' + stampedName: stamp-component-stamped-name-qm + content: >- + [color=#B50F1D]██░░██░░█░██░░░░░██[/color] + + [color=#B50F1D]█░░░██░█░░██░░░░░░█[/color] + + [color=#B50F1D]█░░░███░░░██░░░░░░█[/color] [head=3]Kosmologistika[/head] + + [color=#B50F1D]█░░░███░░░██░░░░░░█[/color] [head=3]Corporation[/head] + + [color=#B50F1D]█░░░██░█░░██░░░░░░█[/color] + + [color=#B50F1D]██░░██░░█░█████░░██[/color] + + ===================================================== + [color=#B50F1D][head=3]WELCOME ON BOARD, CAPTAIN OF THE BULKER[/head][/color] + ===================================================== + + On behalf of Kosmologistika Corporation, I, a senior design engineer, thank you for investing in the future of endless logistics space. This ship model is designed for the convenience of mining ore from asteroids located in the deepest parts of inhabited sectors. Despite the fact that the ship is equipped with a kitchen - which will certainly contribute to your survival, we advise you to take care of issues of fuel, medicine and oxygen supplies. + + + We sincerely hope that your experience in using this ship will be extremely pleasant and that you will recommend it to your fellow miners. Far away into beauty, captain! + type: Paper +- proto: PaperCaptainsThoughts + entities: + - uid: 615 + components: + - pos: 1.4735854,3.6244934 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 374 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 635 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 636 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: PlushieSharkGrey + entities: + - uid: 633 + components: + - pos: 8.526497,-4.4368896 + parent: 1 + type: Transform +- proto: PosterContrabandEAT + entities: + - uid: 650 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 651 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 652 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: PosterLegitBuild + entities: + - uid: 646 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform +- proto: PosterLegitCarbonDioxide + entities: + - uid: 647 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform +- proto: PosterLegitDejaVu + entities: + - uid: 648 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform +- proto: PosterLegitDoNotQuestion + entities: + - uid: 649 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 653 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 654 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: PosterLegitPieSlice + entities: + - uid: 656 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform +- proto: PosterLegitPizzaHope + entities: + - uid: 655 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 658 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 3 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 397 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 399 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 402 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 435 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 439 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 442 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 447 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredBlack + entities: + - uid: 592 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredRed + entities: + - uid: 589 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 590 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 657 + components: + - pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 659 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform +- proto: PoweredlightSodium + entities: + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 451 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 452 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 453 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 4 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 269 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 387 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 565 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 612 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - linkedPorts: + 389: + - Pressed: Toggle + 394: + - Pressed: Toggle + 395: + - Pressed: Toggle + 396: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 616 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - linkedPorts: + 59: + - Pressed: Toggle + 58: + - Pressed: Toggle + 56: + - Pressed: Toggle + 55: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 640 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 638: + - Pressed: DoorBolt + 639: + - Pressed: DoorBolt + type: DeviceLinkSource +- proto: SignDirectionalDorms + entities: + - uid: 679 + components: + - rot: 1.5707963267948966 rad + pos: 7.534562,-2.851059 + parent: 1 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 673 + components: + - rot: -1.5707963267948966 rad + pos: -6.4839354,1.1364328 + parent: 1 + type: Transform + - uid: 678 + components: + - rot: 1.5707963267948966 rad + pos: 7.532778,1.1989328 + parent: 1 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 677 + components: + - rot: -1.5707963267948966 rad + pos: -6.508532,-2.8458476 + parent: 1 + type: Transform +- proto: SignNosmoking + entities: + - uid: 676 + components: + - rot: -1.5707963267948966 rad + pos: 0.4938879,-5.661054 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 420 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 681 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 682 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 680 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 432 + components: + - pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 660 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 661 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 662 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 92 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 1 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 591 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 624 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 62 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + type: Transform + - uid: 344 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 465 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + type: Transform + - uid: 487 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + type: Transform + - uid: 500 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + type: Transform +- proto: ToyRubberDuck + entities: + - uid: 634 + components: + - pos: 8.698372,-4.2025146 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 436 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 573: + - Left: Forward + - Right: Reverse + - Middle: Off + 572: + - Left: Forward + - Right: Reverse + - Middle: Off + 571: + - Left: Forward + - Right: Reverse + - Middle: Off + 93: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 611 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 577: + - Left: Forward + - Right: Reverse + - Middle: Off + 219: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 613 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 576: + - Left: Forward + - Right: Reverse + - Middle: Off + 575: + - Left: Forward + - Right: Reverse + - Middle: Off + 574: + - Left: Forward + - Right: Reverse + - Middle: Off + 618: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 619 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 302: + - Left: Forward + - Right: Reverse + - Middle: Off + 192: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: Vapor + entities: + - uid: 375 + components: + - rot: 1.5470368128868217 rad + pos: 3.5446036,-2.1256375 + parent: 1 + type: Transform + - solutions: + vapor: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: SpaceCleaner + Quantity: 10 + type: SolutionContainerManager + - active: True + type: Vapor + - bodyStatus: InAir + angularDamping: 0 + linearDamping: 0 + type: Physics + - fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - MidImpassable + - HighImpassable + - LowImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + throw-fixture: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + - BulletImpassable + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + type: Fixtures + - lifetime: 0.40769318 + type: TimedDespawn + - playLandSound: True + landTime: 2943.6792537 + thrownTime: 2943.1715605 + thrower: invalid + type: ThrownItem +- proto: VendingMachineSalvage + entities: + - uid: 672 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + type: Transform + - uid: 20 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 27 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 1 + type: Transform + - uid: 342 + components: + - rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 346 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 409 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1 + type: Transform + - uid: 412 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 1 + type: Transform + - uid: 413 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-5.5 + parent: 1 + type: Transform + - uid: 414 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 1 + type: Transform + - uid: 415 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + type: Transform + - uid: 416 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 459 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 482 + components: + - rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 + type: Transform + - uid: 489 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 490 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 499 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 501 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 1 + type: Transform + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 509 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 514 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 1 + type: Transform + - uid: 566 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 596 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 637 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 1 + type: Transform + - uid: 11 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 22 + components: + - rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 1 + type: Transform + - uid: 26 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 1 + type: Transform + - uid: 43 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 54 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 411 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 464 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 469 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 470 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,0.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 477 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 481 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 484 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 488 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 493 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 1 + type: Transform + - uid: 518 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + type: Transform + - uid: 532 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 551 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 552 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 606 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform +- proto: WarningAir + entities: + - uid: 674 + components: + - pos: -11.5,-0.5 + parent: 1 + type: Transform +- proto: WarningWaste + entities: + - uid: 675 + components: + - pos: -11.5,1.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 683 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: WaterTankFull + entities: + - uid: 277 + components: + - pos: -7.4149184,-4.4996915 + parent: 1 + type: Transform +- proto: WheatSeeds + entities: + - uid: 141 + components: + - pos: -10.504226,-3.3023734 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -10.532775,-4.2655826 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -10.515279,-2.3114727 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/decadedove.yml b/Resources/Maps/Shuttles/decadedove.yml new file mode 100644 index 00000000000..7a17f07810c --- /dev/null +++ b/Resources/Maps/Shuttles/decadedove.yml @@ -0,0 +1,6214 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 11: FloorAsteroidTile + 12: FloorBar + 15: FloorBlueCircuit + 27: FloorDark + 32: FloorDarkMono + 36: FloorDarkPlastic + 54: FloorHull + 70: FloorPlastic + 71: FloorRGlass + 72: FloorReinforced + 84: FloorSteel + 85: FloorSteelCheckerDark + 89: FloorSteelDirty + 96: FloorTechMaint + 97: FloorTechMaint2 + 110: FloorWood + 112: Lattice + 113: Plating + 114: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: -2.0101273,0.04338789 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAIAAAAAABcgAAAAAAIAAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAIAAAAAACWQAAAAAAIAAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAIAAAAAABIAAAAAAAVAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAIAAAAAADIAAAAAAAVAAAAAAAcgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAcQAAAAAAAAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAABWQAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAcQAAAAAAAAAAAAAADAAAAAACDAAAAAABWQAAAAAADAAAAAACWQAAAAAAcgAAAAAAIAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAWQAAAAAADAAAAAABDAAAAAACCwAAAAAAIAAAAAACWQAAAAAAIAAAAAACcgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADRwAAAAADAAAAAAAADAAAAAACWQAAAAAADAAAAAABDAAAAAADIAAAAAABWQAAAAAAIAAAAAACIAAAAAACIAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAABAAAAAAAAAAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAWQAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcgAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcgAAAAAAYAAAAAAAYAAAAAAAIAAAAAADIAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAIAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAACYAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAIAAAAAACIAAAAAACYAAAAAAAYQAAAAAADwAAAAAADwAAAAAADwAAAAAAGwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAIAAAAAABIAAAAAADWQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAIAAAAAABRgAAAAAAIAAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIAAAAAACIAAAAAABIAAAAAABYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIAAAAAABYQAAAAAAYQAAAAAAIAAAAAABWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAIAAAAAADIAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAYQAAAAAAYQAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAAAIAAAAAADIAAAAAAAWQAAAAAAIAAAAAAAIAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIAAAAAAAYQAAAAAAcgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAARgAAAAAAWQAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAIAAAAAABYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAcgAAAAAAWQAAAAAAWQAAAAAAIAAAAAABYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAARgAAAAAAIAAAAAACIAAAAAACYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAACVQAAAAAAVQAAAAADWQAAAAAACwAAAAAAWQAAAAAAIAAAAAADIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAACcgAAAAAAWQAAAAAAIAAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAWQAAAAAAWQAAAAAAIAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAIAAAAAABWQAAAAAAIAAAAAAAIAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAABcQAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 42: -1,-8 + 43: -1,-7 + 106: -5,-3 + 107: 5,-3 + 108: 5,-4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRight + decals: + 44: 3,-8 + 45: 3,-7 + 104: -3,-4 + 105: -3,-3 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF18' + id: FullTileOverlayGreyscale + decals: + 46: 2,-8 + - node: + color: '#FFFFFFFF' + id: Rust + decals: + 74: 3,2 + 75: -1,2 + 76: -6,-4 + 77: -4,-3 + 78: -4,-6 + 79: -5,-5 + 80: -5,-5 + 81: 6,-6 + 82: 8,-4 + 83: 6,-3 + 84: 1,-8 + 85: 1,-8 + 86: 2,-7 + 87: 1,-7 + 88: 0,-6 + 89: 4,-6 + 90: 4,-1 + 91: 4,-1 + 92: 0,3 + 93: 0,3 + 94: 0,6 + 95: 5,4 + 96: 5,3 + 97: 6,2 + 98: 6,1 + 99: 6,0 + 100: 8,3 + 101: 7,-3 + 102: 8,-3 + 103: 9,-3 + 109: -5,-3 + 110: -3,-3 + 111: -3,-4 + 112: 5,-4 + 113: 5,-3 + 114: 2,-5 + 115: 3,-5 + 116: -1,-5 + 117: 0,-5 + 118: 7,6 + 119: 8,5 + 120: 7,5 + 121: 8,6 + 122: 6,5 + 123: 4,5 + 124: 5,7 + 125: -4,7 + 126: -2,5 + 127: -4,3 + 128: -3,0 + 129: -4,-2 + 130: 5,0 + 131: 6,-2 + 132: 5,-6 + 133: -3,-6 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Rust + decals: + 47: -5,0 + 48: 0,7 + 49: 3,5 + 50: 0,5 + 51: -3,6 + 52: 6,-4 + 53: -1,-6 + 54: -1,-6 + 55: 2,-8 + 56: 2,-6 + 57: -9,1 + 58: -9,-1 + 59: -9,0 + 60: -9,-1 + 61: 4,1 + 62: -2,-1 + 63: 2,3 + 64: 0,-3 + 65: 0,-3 + 66: 2,-3 + 67: -7,4 + 68: -7,4 + 69: -6,4 + 70: 13,3 + 71: 12,4 + 72: 10,3 + 73: 8,3 + - node: + color: '#8F898BFF' + id: StairsME + decals: + 1: 9,3 + - node: + color: '#FFFFFFFF' + id: StairsWoodW + decals: + 0: 8.9754715,2.9697876 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 5: -8,-1 + 6: -8,0 + 7: -8,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 2: 0,-9 + 3: 1,-9 + 4: 2,-9 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 8: -5,2 + 9: -6,2 + 10: -7,2 + 11: -8,2 + 12: -9,2 + 13: -10,2 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 14: -5,2 + 15: -6,2 + 16: -7,2 + 17: -8,2 + 18: -9,2 + 19: -10,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 23: 11,1 + 32: -3,10 + 33: 6,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 20: 8,1 + 30: -4,10 + 31: 5,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 21: 11,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 22: 8,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 34: 7,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 35: -5,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 27: 11,0 + 36: -3,9 + 37: 6,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 28: 9,1 + 29: 10,1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 24: 9,-1 + 25: 10,-1 + 40: -4,8 + 41: 6,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 26: 8,0 + 38: -4,9 + 39: 5,9 + type: DecalGrid + - type: RadiationGridResistance + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 255 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 4983 + 2,0: + 0: 65535 + 2,1: + 0: 15359 + 2,2: + 0: 17 + 3,0: + 0: 30481 + 3,1: + 0: 14199 + 0,-3: + 0: 65280 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 28928 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-2: + 0: 29456 + 2,-1: + 0: 65527 + 3,-1: + 0: 4352 + -3,-1: + 0: 61128 + -3,-2: + 0: 32768 + -2,-2: + 0: 65516 + -2,-1: + 0: 65535 + -2,-3: + 0: 32768 + -1,-3: + 0: 65024 + -1,-2: + 0: 65535 + -1,-1: + 0: 65535 + -3,0: + 0: 52462 + -3,1: + 0: 140 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 52462 + -2,3: + 0: 136 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 30719 + -1,3: + 0: 26487 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - id: DecadeDove + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 117 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 577 + - 589 + - 588 + - 590 + type: DeviceNetwork + - devices: + - 577 + - 589 + - 588 + - 590 + - 791 + - 750 + type: DeviceList + - uid: 796 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 581 + type: DeviceNetwork + - devices: + - 711 + - 793 + - 581 + type: DeviceList + - uid: 797 + components: + - pos: 6.5,11.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 582 + type: DeviceNetwork + - devices: + - 714 + - 794 + - 582 + type: DeviceList + - uid: 798 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 576 + - 243 + - 581 + type: DeviceNetwork + - devices: + - 795 + - 733 + - 576 + - 243 + - 581 + type: DeviceList + - uid: 799 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 578 + - 576 + type: DeviceNetwork + - devices: + - 785 + - 749 + - 578 + - 576 + type: DeviceList + - uid: 800 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 592 + - 589 + - 908 + type: DeviceNetwork + - devices: + - 779 + - 787 + - 908 + - 589 + - 592 + type: DeviceList + - uid: 801 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 592 + type: DeviceNetwork + - devices: + - 788 + - 784 + - 591 + - 592 + type: DeviceList + - uid: 802 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 578 + - 908 + type: DeviceNetwork + - devices: + - 786 + - 763 + - 908 + - 578 + type: DeviceList + - uid: 804 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + - 580 + - 243 + type: DeviceNetwork + - devices: + - 712 + - 792 + - 590 + - 580 + - 243 + type: DeviceList + - uid: 805 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 23 + type: DeviceNetwork + - devices: + - 790 + - 766 + - 23 + type: DeviceList + - uid: 806 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 278 + - 23 + type: DeviceNetwork + - devices: + - 789 + - 765 + - 278 + - 23 + type: DeviceList +- proto: Airlock + entities: + - uid: 169 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 579 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform +- proto: AirlockAtmospherics + entities: + - uid: 9 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform +- proto: AirlockCargoGlass + entities: + - uid: 72 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 352 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 686 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 166 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - secondsUntilStateChange: -14652.679 + state: Opening + type: Door + - uid: 311 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 180 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 179 + type: DeviceLinkSink + - uid: 225 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 179 + type: DeviceLinkSink + - uid: 866 + components: + - pos: -7.5,-0.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 179 + type: DeviceLinkSink +- proto: AirlockGlass + entities: + - uid: 11 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + type: Transform + - secondsUntilStateChange: -1269.4619 + state: Opening + type: Door + - uid: 418 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform +- proto: AirlockScienceGlass + entities: + - uid: 165 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 785 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 786 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 787 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 788 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 789 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 790 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 791 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 792 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 793 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 794 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 795 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: AmeController + entities: + - uid: 861 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - injecting: True + type: AmeController + - containers: + AmeFuel: !type:ContainerSlot + showEnts: False + occludes: True + ent: 25 + type: ContainerContainer +- proto: AmeJar + entities: + - uid: 25 + components: + - flags: InContainer + type: MetaData + - parent: 861 + type: Transform + - canCollide: False + type: Physics +- proto: AmeShielding + entities: + - uid: 77 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - radius: 2 + enabled: True + type: PointLight + - uid: 108 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 155 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 922 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 927 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 48 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 518 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 85 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 585 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 676 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 687 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 688 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 689 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: Autolathe + entities: + - uid: 59 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 172 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 516 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform +- proto: BedsheetBrown + entities: + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 515 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1 + type: Transform +- proto: BedsheetCE + entities: + - uid: 374 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform +- proto: BenchSofaCorpCorner + entities: + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - fixtures: {} + type: Fixtures +- proto: BenchSofaCorpLeft + entities: + - uid: 506 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpMiddle + entities: + - uid: 505 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpRight + entities: + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BoozeDispenser + entities: + - uid: 173 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform +- proto: BorgCharger + entities: + - uid: 500 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: BoxEncryptionKeyCargo + entities: + - uid: 823 + components: + - pos: 11.83899,1.667138 + parent: 1 + type: Transform +- proto: BoxLighttube + entities: + - uid: 877 + components: + - pos: -5.31096,6.302729 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 2 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -9.5,-0.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: -5.5,-3.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -7.5,1.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 252 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 407 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 410 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 411 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 412 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 417 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 419 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 422 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 424 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 431 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: -9.5,2.5 + parent: 1 + type: Transform + - uid: 440 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 446 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 447 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 494 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 495 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 511 + components: + - pos: -7.5,0.5 + parent: 1 + type: Transform + - uid: 512 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 513 + components: + - pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 514 + components: + - pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 517 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 521 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 522 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 523 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 524 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 525 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 526 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 527 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 528 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 536 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 537 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 538 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 539 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 540 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 541 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 542 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 544 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 545 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 546 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 547 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 548 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 549 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 553 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 554 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 559 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 560 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 569 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 10.5,0.5 + parent: 1 + type: Transform + - uid: 600 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 601 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 602 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 603 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 612 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 613 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 617 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 618 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 619 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 620 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 621 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 622 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 623 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 624 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 14 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 456 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 459 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 460 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 467 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 470 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 471 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 472 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 476 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 478 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 910 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 911 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 912 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 15 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 253 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 496 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 510 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 519 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 520 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform +- proto: CargoPallet + entities: + - uid: 43 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 178 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 249 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 3 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 12 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 262 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 401 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 443 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 483 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 484 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 485 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 486 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 487 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 489 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 558 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 758 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 759 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 836 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 837 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 838 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 840 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 842 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 845 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 846 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 847 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 853 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 858 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 863 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - uid: 454 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + type: Transform + - uid: 497 + components: + - rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + type: Transform +- proto: ClothingHeadHatWelding + entities: + - uid: 657 + components: + - rot: -1.5707963267948966 rad + pos: 7.405751,-4.5731897 + parent: 1 + type: Transform +- proto: ClothingMaskGasExplorer + entities: + - uid: 873 + components: + - flags: InContainer + type: MetaData + - parent: 856 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 919 + components: + - flags: InContainer + type: MetaData + - parent: 915 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSpatio + entities: + - uid: 914 + components: + - flags: InContainer + type: MetaData + - parent: 856 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 916 + components: + - flags: InContainer + type: MetaData + - parent: 915 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 913 + components: + - flags: InContainer + type: MetaData + - parent: 856 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 917 + components: + - flags: InContainer + type: MetaData + - parent: 915 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComputerPowerMonitoring + entities: + - uid: 453 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 65 + components: + - pos: 13.5,5.5 + parent: 1 + type: Transform +- proto: ComputerSalvageExpedition + entities: + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 58 + components: + - pos: 12.5,5.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 480 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 653 + type: DeviceLinkSink + - uid: 232 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 653 + type: DeviceLinkSink + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 653 + type: DeviceLinkSink + - uid: 584 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 653 + type: DeviceLinkSink + - uid: 807 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 653 + type: DeviceLinkSink + - uid: 808 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - invokeCounter: 4 + links: + - 653 + type: DeviceLinkSink +- proto: CrateEmptySpawner + entities: + - uid: 596 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 597 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 107 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CyborgEndoskeleton + entities: + - uid: 839 + components: + - pos: 8.552904,-2.3871548 + parent: 1 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 366 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: DrinkAleGlass + entities: + - uid: 868 + components: + - pos: 2.525982,7.567881 + parent: 1 + type: Transform +- proto: DrinkBananaHonkGlass + entities: + - uid: 869 + components: + - pos: 2.010357,7.505381 + parent: 1 + type: Transform +- proto: DrinkFourteenLokoGlass + entities: + - uid: 338 + components: + - pos: 1.4947319,7.552256 + parent: 1 + type: Transform +- proto: DrinkGinGlass + entities: + - uid: 475 + components: + - pos: 2.697857,7.817881 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 878 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 879 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 880 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 881 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 882 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 883 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 884 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 885 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 886 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 887 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 889 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 890 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 891 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 892 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 893 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 894 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 895 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 896 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 897 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 898 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 899 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 900 + components: + - rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 901 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 902 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 903 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 904 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 905 + components: + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 906 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 1 + type: Transform +- proto: EncryptionKeyCargo + entities: + - uid: 818 + components: + - flags: InContainer + type: MetaData + - parent: 816 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 293 + components: + - flags: InContainer + type: MetaData + - parent: 816 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 819 + components: + - flags: InContainer + type: MetaData + - parent: 816 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyTraffic + entities: + - uid: 466 + components: + - flags: InContainer + type: MetaData + - parent: 816 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 170 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 238 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 652 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 810 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 813 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 814 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 924 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 925 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 345 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 23 + components: + - rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 805 + - 806 + type: DeviceNetwork + - uid: 243 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 798 + - 804 + type: DeviceNetwork + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 806 + type: DeviceNetwork + - uid: 576 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 799 + - 798 + type: DeviceNetwork + - uid: 577 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 117 + type: DeviceNetwork + - uid: 578 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 802 + - 799 + type: DeviceNetwork + - uid: 580 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 804 + type: DeviceNetwork + - uid: 581 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 798 + - 796 + type: DeviceNetwork + - uid: 582 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 797 + type: DeviceNetwork + - uid: 583 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 588 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 117 + type: DeviceNetwork + - uid: 589 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 117 + - 800 + type: DeviceNetwork + - uid: 590 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 117 + - 804 + type: DeviceNetwork + - uid: 591 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 801 + type: DeviceNetwork + - uid: 592 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 800 + - 801 + type: DeviceNetwork + - uid: 908 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 802 + - 800 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 867 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasDualPortVentPump + entities: + - uid: 667 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 669 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 679 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 697 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform +- proto: GasMixer + entities: + - uid: 314 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + type: GasMixer +- proto: GasPassiveVent + entities: + - uid: 870 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 386 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 690 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 700 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 715 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 716 + components: + - rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 717 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 718 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 731 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 768 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 875 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: GasPipeFourway + entities: + - uid: 263 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 756 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 663 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 664 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 665 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 666 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 668 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 671 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 672 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 673 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 674 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 675 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 677 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 680 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 681 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 682 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 683 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 684 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 695 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 696 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 699 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 701 + components: + - rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 702 + components: + - rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 705 + components: + - rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 706 + components: + - rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 708 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 709 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 719 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 720 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 722 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 725 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 726 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 728 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 729 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 730 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 732 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 734 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 735 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 740 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 741 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 747 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 748 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 753 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 754 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 757 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 760 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 761 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 762 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 769 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + type: Transform + - uid: 770 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 771 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 772 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 773 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 774 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 775 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 776 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 777 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 778 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 780 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 781 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 782 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 783 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 871 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 872 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 874 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 876 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 670 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 698 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 704 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 723 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 724 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 737 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 738 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 739 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 764 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 767 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 251 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform +- proto: GasPressurePump + entities: + - uid: 567 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 678 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 685 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 691 + components: + - rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 692 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 703 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 710 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform +- proto: GasVentScrubber + entities: + - uid: 711 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 712 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 714 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 733 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 749 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 750 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 763 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 765 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 779 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 784 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform +- proto: GasVolumePump + entities: + - uid: 639 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform +- proto: GravityGeneratorMini + entities: + - uid: 344 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 217 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 336 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 736 + components: + - pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 742 + components: + - pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 743 + components: + - pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 744 + components: + - pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 745 + components: + - pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 746 + components: + - pos: 14.5,6.5 + parent: 1 + type: Transform +- proto: GunSafe + entities: + - uid: 84 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.8978146 + - 7.139398 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 332 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: Gyroscope + entities: + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform +- proto: HandheldGPSBasic + entities: + - uid: 641 + components: + - rot: -1.5707963267948966 rad + pos: -6.573889,-3.2248359 + parent: 1 + type: Transform +- proto: JetpackMiniFilled + entities: + - uid: 640 + components: + - pos: -6.464514,-3.5529609 + parent: 1 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 87 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 231 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 213 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8977377 + - 7.139109 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 851 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 852 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform +- proto: LockerWallMedical + entities: + - uid: 146 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 153 + type: ContainerContainer + - uid: 221 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - locked: False + type: Lock + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 237 + type: ContainerContainer +- proto: MaterialReclaimer + entities: + - uid: 566 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform +- proto: MedkitFilled + entities: + - uid: 153 + components: + - flags: InContainer + type: MetaData + - parent: 146 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 237 + components: + - flags: InContainer + type: MetaData + - parent: 221 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MopBucketFull + entities: + - uid: 277 + components: + - pos: -5.603009,6.631767 + parent: 1 + type: Transform + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + shark_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 280 + type: ContainerContainer +- proto: MopItem + entities: + - uid: 16 + components: + - pos: -5.710291,6.38702 + parent: 1 + type: Transform +- proto: Multitool + entities: + - uid: 634 + components: + - pos: 7.47893,-4.4417267 + parent: 1 + type: Transform +- proto: NetworkConfigurator + entities: + - uid: 175 + components: + - pos: 8.037279,-4.522475 + parent: 1 + type: Transform + - linkModeActive: False + type: NetworkConfigurator +- proto: NitrogenCanister + entities: + - uid: 282 + components: + - anchored: True + pos: 8.5,6.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: NitrogenTankFilled + entities: + - uid: 857 + components: + - flags: InContainer + type: MetaData + - parent: 856 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 918 + components: + - flags: InContainer + type: MetaData + - parent: 915 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: OreProcessor + entities: + - uid: 308 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 211 + components: + - anchored: True + pos: 8.5,5.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: OxygenTankFilled + entities: + - uid: 862 + components: + - flags: InContainer + type: MetaData + - parent: 856 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 920 + components: + - flags: InContainer + type: MetaData + - parent: 915 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: PaintingAmogusTriptych + entities: + - uid: 812 + components: + - rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + type: Transform +- proto: PinpointerUniversal + entities: + - uid: 89 + components: + - pos: -5.4584627,-4.48482 + parent: 1 + type: Transform + - uid: 921 + components: + - pos: -5.2462606,-4.645467 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 226 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + type: Transform +- proto: PlushieSharkBlue + entities: + - uid: 45 + components: + - pos: 8.354213,1.415276 + parent: 1 + type: Transform + - uid: 280 + components: + - flags: InContainer + type: MetaData + - parent: 277 + type: Transform + - canCollide: False + type: Physics +- proto: PortableScrubber + entities: + - uid: 327 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandBountyHunters + entities: + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandEnergySwords + entities: + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform +- proto: PosterContrabandFreeDrone + entities: + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 638 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 532 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: PosterContrabandMissingGloves + entities: + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 645 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform +- proto: PosterLegitDejaVu + entities: + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitDoNotQuestion + entities: + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 644 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 646 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform +- proto: PosterLegitSecWatch + entities: + - uid: 260 + components: + - rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform +- proto: PosterLegitWorkForAFuture + entities: + - uid: 647 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 534 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 643 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 22 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 204 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 205 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 562 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 573 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + type: Transform + - uid: 586 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 593 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 594 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + type: Transform + - uid: 605 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 825 + components: + - rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 86 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: RadioHandheld + entities: + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 11.558688,1.1160057 + parent: 1 + type: Transform + - uid: 642 + components: + - rot: -1.5707963267948966 rad + pos: -6.620764,-2.9123359 + parent: 1 + type: Transform +- proto: RandomSoap + entities: + - uid: 636 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 565 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 571 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 575 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 595 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 529 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 179 + components: + - pos: -5.334405,0.59689134 + parent: 1 + type: Transform + - linkedPorts: + 180: + - Pressed: DoorBolt + 225: + - Pressed: DoorBolt + 866: + - Pressed: DoorBolt + type: DeviceLinkSource + - type: ItemCooldown + - uid: 479 + components: + - pos: 8.430193,-4.3431497 + parent: 1 + type: Transform +- proto: Saw + entities: + - uid: 923 + components: + - rot: -1.5707963267948966 rad + pos: 8.820338,-4.448793 + parent: 1 + type: Transform +- proto: SheetGlass + entities: + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: -4.5632334,-5.012155 + parent: 1 + type: Transform +- proto: SheetPlastic + entities: + - uid: 848 + components: + - rot: -1.5707963267948966 rad + pos: -4.5319834,-5.46528 + parent: 1 + type: Transform +- proto: SheetSteel + entities: + - uid: 843 + components: + - rot: -1.5707963267948966 rad + pos: -4.5632334,-4.43403 + parent: 1 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 531 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 865 + type: DeviceLinkSink + - uid: 533 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 865 + type: DeviceLinkSink + - uid: 535 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 865 + type: DeviceLinkSink +- proto: ShuttleWindow + entities: + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: 3.141592653589793 rad + pos: 14.5,6.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 1 + type: Transform + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: 13.5,7.5 + parent: 1 + type: Transform + - uid: 464 + components: + - rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + type: Transform + - uid: 465 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + type: Transform + - uid: 557 + components: + - rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + type: Transform + - uid: 713 + components: + - rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 865 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 535: + - Pressed: Toggle + 533: + - Pressed: Toggle + 531: + - Pressed: Toggle + type: DeviceLinkSource + - type: ItemCooldown +- proto: SignLastIdiot + entities: + - uid: 385 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: SignSecureMed + entities: + - uid: 651 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform +- proto: SignShock + entities: + - uid: 650 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 61 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 34 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 659 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 181 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 662 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 660 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 346 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 909 + components: + - pos: -5.271,6.6839633 + parent: 1 + type: Transform +- proto: Stairs + entities: + - uid: 828 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 829 + components: + - pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 830 + components: + - pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: StairStage + entities: + - uid: 831 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 835 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: SuitStorageBase + entities: + - uid: 856 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 914 + - 913 + - 873 + - 862 + - 857 + type: ContainerContainer + - uid: 915 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.734816 + - 6.5262127 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 916 + - 917 + - 918 + - 919 + - 920 + type: ContainerContainer +- proto: Table + entities: + - uid: 501 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 502 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 491 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 492 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 844 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 120 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 626 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 78 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 11.5,0.5 + parent: 1 + type: Transform +- proto: TelecomServer + entities: + - uid: 816 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 818 + - 819 + - 293 + - 466 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: Thruster + entities: + - uid: 41 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 287 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 294 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 349 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - uid: 350 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 353 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: 6.5,13.5 + parent: 1 + type: Transform + - uid: 408 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + type: Transform +- proto: ToiletEmpty + entities: + - uid: 372 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 481 + components: + - pos: 9.474673,-3.3214388 + parent: 1 + type: Transform +- proto: ToyAmongPequeno + entities: + - uid: 633 + components: + - pos: 8.875689,6.0813065 + parent: 1 + type: Transform +- proto: ToySpawner + entities: + - uid: 598 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 630 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 631 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 632 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform +- proto: ToySword + entities: + - uid: 826 + components: + - rot: 3.141592653589793 rad + pos: 1.5671228,7.3006263 + parent: 1 + type: Transform + - uid: 827 + components: + - rot: 3.141592653589793 rad + pos: 1.8639978,7.3475013 + parent: 1 + type: Transform +- proto: TwoWayLever + entities: + - uid: 653 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - linkedPorts: + 232: + - Left: Forward + - Right: Reverse + - Middle: Off + 233: + - Left: Forward + - Right: Reverse + - Middle: Off + 208: + - Left: Forward + - Right: Reverse + - Middle: Off + 584: + - Left: Forward + - Right: Reverse + - Middle: Off + 808: + - Left: Forward + - Right: Reverse + - Middle: Off + 807: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - type: ItemCooldown +- proto: VendingMachineEngivend + entities: + - uid: 357 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 275 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 272 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 130 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 4 + components: + - pos: 14.5,5.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 13 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + type: Transform + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + type: Transform + - uid: 50 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 105 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 12.5,-1.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 7.5,11.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 203 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 212 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 216 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + type: Transform + - uid: 222 + components: + - pos: 14.5,3.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 230 + components: + - pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 241 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 10.5,-1.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 256 + components: + - pos: 11.5,2.5 + parent: 1 + type: Transform + - uid: 257 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 261 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 8.5,9.5 + parent: 1 + type: Transform + - uid: 281 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 283 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 286 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 289 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 290 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 7.5,9.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: -3.5,11.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 323 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 324 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 328 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 4.5,15.5 + parent: 1 + type: Transform + - uid: 335 + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 337 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 347 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 354 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 358 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 359 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 364 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 365 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 9.5,2.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform +- proto: WarningAir + entities: + - uid: 649 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 21 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 383 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: WeaponGrapplingGun + entities: + - uid: 227 + components: + - rot: -1.5707963267948966 rad + pos: -5.2775106,-2.4371333 + parent: 1 + type: Transform + - uid: 926 + components: + - rot: 1.5707963267948966 rad + pos: -5.5066776,-2.3746333 + parent: 1 + type: Transform +- proto: WeaponLaserGun + entities: + - uid: 332 + components: + - flags: InContainer + type: MetaData + - parent: 84 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 635 + components: + - pos: -0.35904384,6.960963 + parent: 1 + type: Transform +- proto: WelderIndustrial + entities: + - uid: 656 + components: + - rot: -1.5707963267948966 rad + pos: 7.765126,-4.3544397 + parent: 1 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 625 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 809 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 637 + components: + - pos: 8.462758,-4.4906874 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/inquisitor.yml b/Resources/Maps/Shuttles/inquisitor.yml new file mode 100644 index 00000000000..32c1de3d50e --- /dev/null +++ b/Resources/Maps/Shuttles/inquisitor.yml @@ -0,0 +1,6979 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 30: FloorDarkHerringbone + 31: FloorDarkMini + 32: FloorDarkMono + 97: FloorTechMaint2 + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: 1.6817646,-5.3364935 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: GwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAYQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAHwAAAAAAGwAAAAAAcAAAAAAAGwAAAAAAYQAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAHwAAAAAAGwAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAHwAAAAAAHwAAAAAAGwAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAABGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGwAAAAAAHwAAAAAAGwAAAAAAcAAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAHwAAAAAAGwAAAAAAcAAAAAAAGwAAAAAAYQAAAAAAGwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAAAYQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - updateAccumulator: 0.58426464 + type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 17: 2,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 16: 2,-2 + - node: + color: '#FFFFFFFF' + id: CautionGreyscale + decals: + 18: 6,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: CautionGreyscale + decals: + 19: 6,-3 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 5: 1,-7 + 6: 2,-7 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 4: 2,-6 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 3: 2,-5 + 7: 2,2 + 12: 1,-6 + 15: 2,4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 2: 2,-4 + 8: 2,3 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 9: 2,5 + 10: 1,5 + - node: + angle: 6.283185307179586 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 11: 1,4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 0: -4,-3 + 1: -4,1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 13: 2,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnLineW + decals: + 14: 2,-2 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 4095 + 0,1: + 0: 4095 + 1,0: + 0: 65535 + 1,1: + 0: 3310 + 2,0: + 0: 61951 + 2,1: + 0: 4095 + 0,-2: + 0: 65535 + 1,-2: + 0: 65260 + 1,-1: + 0: 65535 + 2,-2: + 0: 65535 + 2,-1: + 0: 65521 + -2,-1: + 0: 34952 + -2,0: + 0: 2184 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - id: Inquisitor + type: BecomesStation + - type: RadiationGridResistance + - shakeTimes: 10 + type: GravityShake +- proto: ActionToggleLight + entities: + - uid: 3 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - container: 2 + type: InstantAction + - uid: 4 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - container: 2 + type: InstantAction + - uid: 9 + components: + - flags: InContainer + type: MetaData + - parent: 8 + type: Transform + - container: 8 + type: InstantAction + - uid: 10 + components: + - flags: InContainer + type: MetaData + - parent: 8 + type: Transform + - container: 8 + type: InstantAction + - uid: 25 + components: + - flags: InContainer + type: MetaData + - parent: 24 + type: Transform + - container: 24 + type: InstantAction + - uid: 26 + components: + - flags: InContainer + type: MetaData + - parent: 24 + type: Transform + - container: 24 + type: InstantAction +- proto: ActionToggleSuitPiece + entities: + - uid: 18 + components: + - flags: InContainer + type: MetaData + - parent: 17 + type: Transform + - container: 17 + entIcon: 19 + type: InstantAction + - uid: 34 + components: + - flags: InContainer + type: MetaData + - parent: 33 + type: Transform + - container: 33 + entIcon: 35 + type: InstantAction +- proto: ActionVendingThrow + entities: + - uid: 51 + components: + - flags: InContainer + type: MetaData + - parent: 50 + type: Transform + - container: 50 + type: InstantAction + - uid: 53 + components: + - flags: InContainer + type: MetaData + - parent: 52 + type: Transform + - container: 52 + type: InstantAction +- proto: AirAlarm + entities: + - uid: 54 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 289 + - 290 + - 285 + - 283 + - 291 + - 281 + - 287 + address: AIR-07EE-EDC5 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - devices: + - 84 + - 363 + - 289 + - 290 + - 285 + - 283 + - 291 + - 281 + - 287 + type: DeviceList + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 55 + type: ContainerContainer + - uid: 56 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 285 + address: AIR-1C93-2EB9 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - devices: + - 83 + - 285 + type: DeviceList + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 57 + type: ContainerContainer + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 283 + address: AIR-7F0A-41E3 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - devices: + - 82 + - 283 + type: DeviceList + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 59 + type: ContainerContainer + - uid: 60 + components: + - pos: 10.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 291 + address: AIR-0505-EB98 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - devices: + - 85 + - 364 + - 291 + type: DeviceList + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 61 + type: ContainerContainer + - uid: 62 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 287 + address: AIR-0AFD-90EF + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - devices: + - 86 + - 287 + type: DeviceList + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 63 + type: ContainerContainer + - uid: 64 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 281 + address: AIR-1775-A352 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - devices: + - 81 + - 281 + type: DeviceList + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 65 + type: ContainerContainer +- proto: AirAlarmElectronics + entities: + - uid: 55 + components: + - flags: InContainer + type: MetaData + - parent: 54 + type: Transform + - canCollide: False + type: Physics + - uid: 57 + components: + - flags: InContainer + type: MetaData + - parent: 56 + type: Transform + - canCollide: False + type: Physics + - uid: 59 + components: + - flags: InContainer + type: MetaData + - parent: 58 + type: Transform + - canCollide: False + type: Physics + - uid: 61 + components: + - flags: InContainer + type: MetaData + - parent: 60 + type: Transform + - canCollide: False + type: Physics + - uid: 63 + components: + - flags: InContainer + type: MetaData + - parent: 62 + type: Transform + - canCollide: False + type: Physics + - uid: 65 + components: + - flags: InContainer + type: MetaData + - parent: 64 + type: Transform + - canCollide: False + type: Physics +- proto: AirCanister + entities: + - uid: 66 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform +- proto: AirlockCommandGlass + entities: + - uid: 67 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - wiresAccessible: False + examine: wires-panel-component-on-examine-security-level2 + type: WiresPanelSecurity + - node: medSecurity + type: Construction + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 68 + type: ContainerContainer + - address: 15BA-7CDD + receiveFrequency: 1280 + type: DeviceNetwork +- proto: AirlockEngineeringGlass + entities: + - uid: 69 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 70 + type: ContainerContainer + - address: 43F1-6C63 + receiveFrequency: 1280 + type: DeviceNetwork +- proto: AirlockGlass + entities: + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 72 + type: ContainerContainer + - address: 3497-4A2F + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 432 + type: DeviceLinkSink + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 74 + type: ContainerContainer + - address: 4413-8EE1 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 433 + type: DeviceLinkSink +- proto: AirlockGlassShuttle + entities: + - uid: 75 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 76 + type: ContainerContainer + - address: 2960-D1C2 + receiveFrequency: 1280 + type: DeviceNetwork + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 78 + type: ContainerContainer + - address: 6C41-C2AE + receiveFrequency: 1280 + type: DeviceNetwork + - dnas: [] + fibers: + - black insulative fibers + fingerprints: [] + type: Forensics +- proto: AirlockSecurityGlass + entities: + - uid: 79 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 80 + type: ContainerContainer + - address: 3C12-27EA + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 435 + type: DeviceLinkSink +- proto: AirSensor + entities: + - uid: 81 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - address: SNS-560B-9584 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-1775-A352 + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - uid: 82 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - address: SNS-6277-ED41 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-7F0A-41E3 + trippedThresholds: + - Pressure + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - uid: 83 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - address: SNS-71A0-C8FD + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-1C93-2EB9 + trippedThresholds: + - Pressure + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - uid: 84 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - address: SNS-6C67-0754 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-07EE-EDC5 + trippedThresholds: + - Temperature + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - uid: 85 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - address: SNS-6446-EABF + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-0505-EB98 + trippedThresholds: + - Gas + lastAlarmState: Warning + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - uid: 86 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - address: SNS-1310-25BB + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-0AFD-90EF + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor +- proto: APCBasic + entities: + - uid: 87 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - startingCharge: 0 + type: Battery + - hasAccess: True + lastChargeState: Charging + type: Apc + - uid: 88 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - startingCharge: 0 + type: Battery + - hasAccess: True + lastChargeState: Full + type: Apc + - uid: 89 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - startingCharge: 0 + type: Battery + - hasAccess: True + type: Apc +- proto: AtmosDeviceFanTiny + entities: + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 92 + components: + - desc: Anteriormente ubicado en Spessmerica. + name: Zocalo + type: MetaData + - pos: 9.5,-4.5 + parent: 1 + type: Transform + - current: Zocalo + type: BarSign +- proto: Bed + entities: + - uid: 569 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 570 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform +- proto: BedsheetBlack + entities: + - uid: 571 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 572 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 121 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - dnas: [] + fibers: + - black insulative fibers + fingerprints: [] + type: Forensics + - uid: 127 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 146 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 147 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 148 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 149 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 150 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 151 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 153 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 159 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 162 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform + - uid: 164 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 166 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 170 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 171 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 174 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform +- proto: CableApcStack1 + entities: + - uid: 179 + components: + - flags: InContainer + type: MetaData + - parent: 178 + type: Transform + - count: 5 + type: Stack + - size: 5 + type: Item + - canCollide: False + type: Physics +- proto: CableHV + entities: + - uid: 183 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform +- proto: CableHVStack1 + entities: + - uid: 190 + components: + - flags: InContainer + type: MetaData + - parent: 189 + type: Transform + - count: 5 + type: Stack + - size: 5 + type: Item + - canCollide: False + type: Physics + - uid: 194 + components: + - flags: InContainer + type: MetaData + - parent: 193 + type: Transform + - count: 5 + type: Stack + - size: 5 + type: Item + - canCollide: False + type: Physics +- proto: CableMV + entities: + - uid: 197 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 211 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 215 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform +- proto: CableMVStack1 + entities: + - uid: 221 + components: + - flags: InContainer + type: MetaData + - parent: 220 + type: Transform + - count: 5 + type: Stack + - size: 5 + type: Item + - canCollide: False + type: Physics +- proto: CapacitorStockPart + entities: + - uid: 180 + components: + - flags: InContainer + type: MetaData + - parent: 178 + type: Transform + - canCollide: False + type: Physics + - uid: 181 + components: + - flags: InContainer + type: MetaData + - parent: 178 + type: Transform + - canCollide: False + type: Physics + - uid: 191 + components: + - flags: InContainer + type: MetaData + - parent: 189 + type: Transform + - canCollide: False + type: Physics + - uid: 195 + components: + - flags: InContainer + type: MetaData + - parent: 193 + type: Transform + - canCollide: False + type: Physics + - uid: 222 + components: + - flags: InContainer + type: MetaData + - parent: 220 + type: Transform + - canCollide: False + type: Physics + - uid: 223 + components: + - flags: InContainer + type: MetaData + - parent: 220 + type: Transform + - canCollide: False + type: Physics + - uid: 226 + components: + - flags: InContainer + type: MetaData + - parent: 225 + type: Transform + - canCollide: False + type: Physics +- proto: Catwalk + entities: + - uid: 231 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - uid: 233 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 234 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform + - uid: 235 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 236 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 240 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: CellRechargerCircuitboard + entities: + - uid: 182 + components: + - flags: InContainer + type: MetaData + - parent: 178 + type: Transform + - canCollide: False + type: Physics +- proto: ClosetBase + entities: + - uid: 93 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 94 + - 95 + - 96 + - 102 + - 103 + - 104 + - 105 + - 106 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 107 + components: + - pos: 1.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 120 + - 119 + - 118 + - 117 + - 111 + - 110 + - 109 + - 108 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 6 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17 + - 20 + - 7 + - 22 + - 21 + type: ContainerContainer + - uid: 32 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7458104 + - 6.567589 + - 3.8282697E-06 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 33 + - 36 + - 37 + - 49 + type: ContainerContainer + - dnas: [] + fibers: + - black insulative fibers + fingerprints: [] + type: Forensics +- proto: ClosetWallFireFilledRandom + entities: + - uid: 23 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 29 + - 24 + - 28 + - 31 + - 30 + type: ContainerContainer +- proto: ClosetWallOrange + entities: + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8641734 + - 7.0128436 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7692513 + - 6.655794 + - 1.0433227E-05 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 244 + components: + - pos: 6.4730835,4.565351 + parent: 1 + type: Transform +- proto: ClothingHeadHatCatEars + entities: + - uid: 245 + components: + - pos: 6.5147495,4.620907 + parent: 1 + type: Transform +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 246 + components: + - pos: 6.4939165,4.6486845 + parent: 1 + type: Transform +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 19 + components: + - flags: InContainer + type: MetaData + - parent: 17 + type: Transform + - canCollide: False + type: Physics + - AttachedUid: 17 + type: AttachedClothing + - uid: 35 + components: + - flags: InContainer + type: MetaData + - parent: 33 + type: Transform + - canCollide: False + type: Physics + - AttachedUid: 33 + type: AttachedClothing +- proto: ClothingHeadHelmetFire + entities: + - uid: 24 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - selfToggleActionEntity: 26 + toggleActionEntity: 25 + type: HandheldLight + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 27 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 25 + - 26 + type: ContainerContainer + - canCollide: False + type: Physics + - type: ActionsContainer + - actions: + - 26 + type: Actions + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 12 + components: + - flags: InContainer + type: MetaData + - parent: 7 + type: Transform + - canCollide: False + type: Physics + - uid: 13 + components: + - flags: InContainer + type: MetaData + - parent: 7 + type: Transform + - canCollide: False + type: Physics + - uid: 20 + components: + - flags: InContainer + type: MetaData + - parent: 6 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 36 + components: + - flags: InContainer + type: MetaData + - parent: 32 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedical + entities: + - uid: 38 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics +- proto: ClothingMaskGas + entities: + - uid: 28 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 248 + components: + - flags: InContainer + type: MetaData + - parent: 247 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 252 + components: + - flags: InContainer + type: MetaData + - parent: 251 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingOuterSuitEmergency + entities: + - uid: 17 + components: + - flags: InContainer + type: MetaData + - parent: 6 + type: Transform + - clothingUid: 19 + actionEntity: 18 + type: ToggleableClothing + - containers: + toggleable-clothing: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 18 + type: ContainerContainer + - canCollide: False + type: Physics + - type: ActionsContainer + - type: InsideEntityStorage + - uid: 33 + components: + - flags: InContainer + type: MetaData + - parent: 32 + type: Transform + - clothingUid: 35 + actionEntity: 34 + type: ToggleableClothing + - containers: + toggleable-clothing: !type:ContainerSlot + showEnts: False + occludes: True + ent: 35 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 34 + type: ContainerContainer + - canCollide: False + type: Physics + - type: ActionsContainer + - type: InsideEntityStorage +- proto: ClothingOuterSuitFire + entities: + - uid: 29 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 249 + components: + - flags: InContainer + type: MetaData + - parent: 247 + type: Transform + - address: 20C7-2C7A + transmitFrequency: 1262 + type: DeviceNetwork + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 253 + components: + - flags: InContainer + type: MetaData + - parent: 251 + type: Transform + - address: 0BF0-6E75 + transmitFrequency: 1262 + type: DeviceNetwork + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 255 + components: + - pos: 6.5564165,4.5861845 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 250 + components: + - flags: InContainer + type: MetaData + - parent: 247 + type: Transform + - address: 0F77-CE54 + transmitFrequency: 1262 + type: DeviceNetwork + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 254 + components: + - flags: InContainer + type: MetaData + - parent: 251 + type: Transform + - address: 6F23-4F6E + transmitFrequency: 1262 + type: DeviceNetwork + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComputerCrewMonitoring + entities: + - uid: 256 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + type: Transform + - address: 5D96-2B9F + receiveFrequency: 1261 + type: DeviceNetwork + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 257 + type: ContainerContainer + - dnas: [] + fibers: + - black insulative fibers + fingerprints: [] + type: Forensics +- proto: ComputerShuttle + entities: + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 259 + type: ContainerContainer + - dnas: [] + fibers: + - black insulative fibers + fingerprints: [] + type: Forensics +- proto: ComputerStationRecords + entities: + - uid: 260 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 261 + type: ContainerContainer + - dnas: [] + fibers: + - black insulative fibers + fingerprints: [] + type: Forensics +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 257 + components: + - flags: InContainer + type: MetaData + - parent: 256 + type: Transform + - canCollide: False + type: Physics +- proto: CrowbarRed + entities: + - uid: 14 + components: + - flags: InContainer + type: MetaData + - parent: 7 + type: Transform + - canCollide: False + type: Physics +- proto: DoorElectronics + entities: + - uid: 68 + components: + - flags: InContainer + type: MetaData + - parent: 67 + type: Transform + - canCollide: False + type: Physics + - uid: 70 + components: + - flags: InContainer + type: MetaData + - parent: 69 + type: Transform + - canCollide: False + type: Physics + - uid: 72 + components: + - flags: InContainer + type: MetaData + - parent: 71 + type: Transform + - canCollide: False + type: Physics + - uid: 74 + components: + - flags: InContainer + type: MetaData + - parent: 73 + type: Transform + - canCollide: False + type: Physics + - uid: 76 + components: + - flags: InContainer + type: MetaData + - parent: 75 + type: Transform + - canCollide: False + type: Physics + - uid: 78 + components: + - flags: InContainer + type: MetaData + - parent: 77 + type: Transform + - canCollide: False + type: Physics + - uid: 80 + components: + - flags: InContainer + type: MetaData + - parent: 79 + type: Transform + - canCollide: False + type: Physics + - uid: 263 + components: + - flags: InContainer + type: MetaData + - parent: 262 + type: Transform + - canCollide: False + type: Physics + - uid: 265 + components: + - flags: InContainer + type: MetaData + - parent: 264 + type: Transform + - canCollide: False + type: Physics + - uid: 267 + components: + - flags: InContainer + type: MetaData + - parent: 266 + type: Transform + - canCollide: False + type: Physics + - uid: 269 + components: + - flags: InContainer + type: MetaData + - parent: 268 + type: Transform + - canCollide: False + type: Physics +- proto: EmergencyLight + entities: + - uid: 270 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 10198.422 + type: Battery + - type: ActiveEmergencyLight + - uid: 271 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 5770.106 + type: Battery + - type: ActiveEmergencyLight + - uid: 272 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 9827.992 + type: Battery + - type: ActiveEmergencyLight + - uid: 273 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 10316.518 + type: Battery + - type: ActiveEmergencyLight + - uid: 274 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 9749.828 + type: Battery + - type: ActiveEmergencyLight + - uid: 275 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 6116.946 + type: Battery + - type: ActiveEmergencyLight + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 5948.6265 + type: Battery + - type: ActiveEmergencyLight + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - enabled: True + type: PointLight + - startingCharge: 6078.6914 + type: Battery + - type: ActiveEmergencyLight +- proto: EmergencyMedipen + entities: + - uid: 39 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics +- proto: EmergencyOxygenTankFilled + entities: + - uid: 21 + components: + - flags: InContainer + type: MetaData + - parent: 6 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 40 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 49 + components: + - flags: InContainer + type: MetaData + - parent: 32 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: EuphoniumInstrument + entities: + - uid: 117 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FaxMachineShip + entities: + - uid: 279 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - destinationAddress: 2BAF-50B3 + type: FaxMachine + - address: 4EF3-2C0C + transmitFrequency: 2640 + receiveFrequency: 2640 + type: DeviceNetwork +- proto: filingCabinetRandom + entities: + - uid: 280 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform +- proto: FireExtinguisher + entities: + - uid: 30 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: FirelockElectronics + entities: + - uid: 282 + components: + - flags: InContainer + type: MetaData + - parent: 281 + type: Transform + - canCollide: False + type: Physics + - uid: 284 + components: + - flags: InContainer + type: MetaData + - parent: 283 + type: Transform + - canCollide: False + type: Physics + - uid: 286 + components: + - flags: InContainer + type: MetaData + - parent: 285 + type: Transform + - canCollide: False + type: Physics + - uid: 288 + components: + - flags: InContainer + type: MetaData + - parent: 287 + type: Transform + - canCollide: False + type: Physics +- proto: FirelockGlass + entities: + - uid: 281 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 282 + type: ContainerContainer + - ShutdownSubscribers: + - 54 + - 64 + address: 2A2F-32C5 + receiveFrequency: 1621 + type: DeviceNetwork + - uid: 283 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 284 + type: ContainerContainer + - ShutdownSubscribers: + - 54 + - 58 + address: 69E1-ED5D + receiveFrequency: 1621 + type: DeviceNetwork + - uid: 285 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 286 + type: ContainerContainer + - ShutdownSubscribers: + - 56 + - 54 + address: 4EBA-47B3 + receiveFrequency: 1621 + type: DeviceNetwork + - uid: 287 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 288 + type: ContainerContainer + - ShutdownSubscribers: + - 54 + - 62 + address: 6D3F-5E6B + receiveFrequency: 1621 + type: DeviceNetwork + - uid: 289 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 54 + type: DeviceNetwork + - uid: 290 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 54 + type: DeviceNetwork + - uid: 291 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 54 + - 60 + type: DeviceNetwork +- proto: FlashlightLantern + entities: + - uid: 8 + components: + - flags: InContainer + type: MetaData + - parent: 7 + type: Transform + - selfToggleActionEntity: 10 + toggleActionEntity: 9 + type: HandheldLight + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 9 + - 10 + type: ContainerContainer + - canCollide: False + type: Physics + - type: ActionsContainer + - actions: + - 10 + type: Actions +- proto: FoodSnackChocolate + entities: + - uid: 15 + components: + - flags: InContainer + type: MetaData + - parent: 7 + type: Transform + - canCollide: False + type: Physics + - uid: 16 + components: + - flags: InContainer + type: MetaData + - parent: 7 + type: Transform + - canCollide: False + type: Physics +- proto: FoodSnackSus + entities: + - uid: 94 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 102 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 104 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 105 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 106 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 109 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 110 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 118 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 119 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 120 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: GasPassiveVent + entities: + - uid: 292 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 294 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 295 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 296 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 297 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 298 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 299 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 300 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 303 + components: + - pos: 8.5,-5.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 304 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 305 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 306 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 307 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 308 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 309 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 311 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 312 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 313 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 314 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 316 + components: + - rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 317 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 319 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 320 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 322 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 323 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 324 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 325 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 326 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 327 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 328 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 329 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 330 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 331 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 332 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 333 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 334 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 335 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 336 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 337 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 338 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 339 + components: + - rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 340 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 341 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 342 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 343 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 344 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 345 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 346 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 347 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 348 + components: + - rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 349 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 350 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 351 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 352 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 353 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 354 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 355 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 356 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 357 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 358 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 359 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + type: Transform + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 360 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform + - address: VNT-581C-5F83 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - trippedThresholds: + - Pressure + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 361 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - address: VNT-3184-5791 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - trippedThresholds: + - Pressure + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - color: '#E100FFFF' + type: AtmosPipeColor + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + type: Transform + - address: VNT-7448-1915 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - color: '#E100FFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - address: SCR-5EC7-51F9 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-07EE-EDC5 + trippedThresholds: + - Temperature + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - color: '#80FF00FF' + type: AtmosPipeColor + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 1 + type: Transform + - address: SCR-598A-AED4 + transmitFrequency: 1621 + receiveFrequency: 1621 + type: DeviceNetwork + - registeredDevices: + - AIR-0505-EB98 + gasThresholds: + Oxygen: + lowerWarnAround: + threshold: 1.5 + enabled: True + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0.1 + enabled: True + upperBound: + threshold: 0 + enabled: False + ignore: False + Nitrogen: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0 + enabled: False + ignore: True + CarbonDioxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0025 + enabled: True + ignore: False + Plasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + Tritium: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + WaterVapor: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 1.5 + enabled: True + ignore: False + Miasma: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.05 + enabled: True + ignore: False + NitrousOxide: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0.5 + enabled: True + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.01 + enabled: True + ignore: False + Frezon: + lowerWarnAround: + threshold: 0 + enabled: False + upperWarnAround: + threshold: 0 + enabled: False + lowerBound: + threshold: 0 + enabled: False + upperBound: + threshold: 0.0001 + enabled: True + ignore: False + pressureThreshold: + lowerWarnAround: + threshold: 2.5 + enabled: True + upperWarnAround: + threshold: 0.7 + enabled: True + lowerBound: + threshold: 20 + enabled: True + upperBound: + threshold: 550 + enabled: True + ignore: False + temperatureThreshold: + lowerWarnAround: + threshold: 1.1 + enabled: True + upperWarnAround: + threshold: 0.8 + enabled: True + lowerBound: + threshold: 193.15 + enabled: True + upperBound: + threshold: 393.15 + enabled: True + ignore: False + type: AtmosMonitor + - color: '#80FF00FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 365 + components: + - pos: 9.5,5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 366 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 367 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 368 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 369 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 370 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 371 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 372 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 373 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 374 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 375 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 377 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 383 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 384 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 225 + components: + - pos: 9.5,4.5 + parent: 1 + type: Transform + - containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 227 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 228 + - 229 + - 226 + - 230 + type: ContainerContainer +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 227 + components: + - flags: InContainer + type: MetaData + - parent: 225 + type: Transform + - canCollide: False + type: Physics +- proto: Joint + entities: + - uid: 103 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 108 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: LampGold + entities: + - uid: 2 + components: + - pos: 8.945301,-6.166047 + parent: 1 + type: Transform + - selfToggleActionEntity: 4 + toggleActionEntity: 3 + type: HandheldLight + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 5 + actions: !type:Container + showEnts: False + occludes: True + ents: + - 3 + - 4 + type: ContainerContainer + - type: ActionsContainer + - actions: + - 4 + type: Actions +- proto: LockerDetectiveFilled + entities: + - uid: 385 + components: + - pos: 7.5,-6.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8863183 + - 7.09615 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: LockerEvidence + entities: + - uid: 247 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.13718 + moles: + - 1.8859696 + - 7.0949974 + - 3.6542155E-05 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 248 + - 249 + - 250 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer + - uid: 251 + components: + - pos: 3.5,-1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.08878 + moles: + - 1.8856968 + - 7.093853 + - 1.034816E-05 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 253 + - 252 + - 254 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: LockerSecurityFilled + entities: + - uid: 386 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform +- proto: LockerWardenFilled + entities: + - uid: 387 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform +- proto: Matchbox + entities: + - uid: 96 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 97 + - 98 + - 99 + - 100 + - 101 + type: ContainerContainer + - canCollide: False + type: Physics + - type: InsideEntityStorage + - uid: 111 + components: + - flags: InContainer + type: MetaData + - parent: 107 + type: Transform + - storageUsed: 5 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 112 + - 113 + - 114 + - 115 + - 116 + type: ContainerContainer + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: Matchstick + entities: + - uid: 97 + components: + - flags: InContainer + type: MetaData + - parent: 96 + type: Transform + - canCollide: False + type: Physics + - uid: 98 + components: + - flags: InContainer + type: MetaData + - parent: 96 + type: Transform + - canCollide: False + type: Physics + - uid: 99 + components: + - flags: InContainer + type: MetaData + - parent: 96 + type: Transform + - canCollide: False + type: Physics + - uid: 100 + components: + - flags: InContainer + type: MetaData + - parent: 96 + type: Transform + - canCollide: False + type: Physics + - uid: 101 + components: + - flags: InContainer + type: MetaData + - parent: 96 + type: Transform + - canCollide: False + type: Physics + - uid: 112 + components: + - flags: InContainer + type: MetaData + - parent: 111 + type: Transform + - canCollide: False + type: Physics + - uid: 113 + components: + - flags: InContainer + type: MetaData + - parent: 111 + type: Transform + - canCollide: False + type: Physics + - uid: 114 + components: + - flags: InContainer + type: MetaData + - parent: 111 + type: Transform + - canCollide: False + type: Physics + - uid: 115 + components: + - flags: InContainer + type: MetaData + - parent: 111 + type: Transform + - canCollide: False + type: Physics + - uid: 116 + components: + - flags: InContainer + type: MetaData + - parent: 111 + type: Transform + - canCollide: False + type: Physics +- proto: MedkitOxygenFilled + entities: + - uid: 37 + components: + - flags: InContainer + type: MetaData + - parent: 32 + type: Transform + - storageUsed: 28 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 38 + - 40 + - 39 + - 48 + - 41 + - 42 + - 43 + - 44 + - 45 + - 46 + - 47 + type: ContainerContainer + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: MicroManipulatorStockPart + entities: + - uid: 228 + components: + - flags: InContainer + type: MetaData + - parent: 225 + type: Transform + - canCollide: False + type: Physics + - uid: 229 + components: + - flags: InContainer + type: MetaData + - parent: 225 + type: Transform + - canCollide: False + type: Physics +- proto: PillDexalin + entities: + - uid: 41 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 42 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 43 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 44 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 45 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 46 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics + - uid: 47 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics +- proto: PortableGeneratorPacman + entities: + - uid: 189 + components: + - pos: 8.5,5.5 + parent: 1 + type: Transform + - storage: + Plasma: 3000 + type: MaterialStorage + - supplyRate: 15000 + type: PowerSupplier + - containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 192 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 191 + - 190 + type: ContainerContainer + - type: ItemCooldown + - uid: 193 + components: + - pos: 7.5,5.5 + parent: 1 + type: Transform + - storage: + Plasma: 3000 + type: MaterialStorage + - supplyRate: 15000 + type: PowerSupplier + - containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 196 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 195 + - 194 + type: ContainerContainer + - type: ItemCooldown +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 192 + components: + - flags: InContainer + type: MetaData + - parent: 189 + type: Transform + - canCollide: False + type: Physics + - uid: 196 + components: + - flags: InContainer + type: MetaData + - parent: 193 + type: Transform + - canCollide: False + type: Physics +- proto: PosterContrabandBorgFancy + entities: + - uid: 388 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: PosterContrabandDonutCorp + entities: + - uid: 389 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 390 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 391 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform +- proto: PosterContrabandWehWatches + entities: + - uid: 392 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: PosterLegit12Gauge + entities: + - uid: 393 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: PosterLegitCarbonDioxide + entities: + - uid: 394 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform +- proto: PosterLegitEnlist + entities: + - uid: 395 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform +- proto: PosterLegitFruitBowl + entities: + - uid: 396 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform +- proto: PosterLegitGetYourLEGS + entities: + - uid: 397 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: PosterLegitLoveIan + entities: + - uid: 398 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 400 + components: + - pos: 10.5,-2.5 + parent: 1 + type: Transform +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 401 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: PowerCellMedium + entities: + - uid: 11 + components: + - flags: InContainer + type: MetaData + - parent: 8 + type: Transform + - canCollide: False + type: Physics + - uid: 27 + components: + - flags: InContainer + type: MetaData + - parent: 24 + type: Transform + - canCollide: False + type: Physics +- proto: PowerCellRecharger + entities: + - uid: 178 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - containers: + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 182 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 180 + - 181 + - 179 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver +- proto: PowerCellSmall + entities: + - uid: 5 + components: + - flags: InContainer + type: MetaData + - parent: 2 + type: Transform + - startingCharge: 356.87933 + type: Battery + - canCollide: False + type: Physics +- proto: Poweredlight + entities: + - uid: 402 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 403 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: 8.5,0.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 406 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 407 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 + type: Transform +- proto: PoweredlightColoredRed + entities: + - uid: 408 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 409 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform +- proto: SheetGlass1 + entities: + - uid: 230 + components: + - flags: InContainer + type: MetaData + - parent: 225 + type: Transform + - count: 2 + type: Stack + - size: 2 + type: Item + - canCollide: False + type: Physics +- proto: SheetPlasma + entities: + - uid: 411 + components: + - rot: 3.141592653589793 rad + pos: 7.50222,4.459353 + parent: 1 + type: Transform + - canCollide: False + type: Physics + - uid: 412 + components: + - rot: 3.141592653589793 rad + pos: 7.517845,4.537478 + parent: 1 + type: Transform + - canCollide: False + type: Physics +- proto: ShuttersNormalOpen + entities: + - uid: 262 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 263 + type: ContainerContainer + - address: 4AA5-F3B3 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 435 + type: DeviceLinkSink + - uid: 264 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 265 + type: ContainerContainer + - address: 4967-8FDB + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 434 + type: DeviceLinkSink + - uid: 266 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 267 + type: ContainerContainer + - address: 7927-5FE5 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 434 + type: DeviceLinkSink + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + showEnts: False + occludes: True + ents: + - 269 + type: ContainerContainer + - address: 2F67-D620 + receiveFrequency: 1280 + type: DeviceNetwork + - links: + - 434 + type: DeviceLinkSink +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 259 + components: + - flags: InContainer + type: MetaData + - parent: 258 + type: Transform + - canCollide: False + type: Physics +- proto: ShuttleWindow + entities: + - uid: 413 + components: + - pos: 11.5,-6.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 415 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 416 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + type: Transform + - uid: 418 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 1 + type: Transform + - uid: 419 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: 11.5,-5.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 423 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 424 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 425 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 427 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 428 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: -2.5,-3.5 + parent: 1 + type: Transform + - uid: 430 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 432 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 71: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 433 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - linkedPorts: + 73: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 434 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 266: + - Pressed: Toggle + 268: + - Pressed: Toggle + 264: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 435 + components: + - pos: 8.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 79: + - Pressed: DoorBolt + 262: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 436 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - linkedPorts: + 567: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - linkedPorts: + 566: + - Pressed: DoorBolt + type: DeviceLinkSource + - type: ItemCooldown +- proto: SignBridge + entities: + - uid: 438 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 439 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + type: Transform +- proto: SignConspiracyBoard + entities: + - uid: 440 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform +- proto: SignDirectionalBrig + entities: + - uid: 441 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 442 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: SignEngineering + entities: + - uid: 443 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 444 + components: + - rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 445 + components: + - pos: 7.5,6.5 + parent: 1 + type: Transform +- proto: SignGravity + entities: + - uid: 446 + components: + - pos: 11.5,5.5 + parent: 1 + type: Transform +- proto: SignSec + entities: + - uid: 447 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform +- proto: SignShipDock + entities: + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 451 + components: + - pos: 10.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 452 + components: + - pos: 9.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 453 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 454 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 455 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: StationRecordsComputerCircuitboard + entities: + - uid: 261 + components: + - flags: InContainer + type: MetaData + - parent: 260 + type: Transform + - canCollide: False + type: Physics +- proto: SubstationBasic + entities: + - uid: 456 + components: + - pos: 10.5,4.5 + parent: 1 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 457 + components: + - pos: 9.5,-1.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.14502 + moles: + - 1.8849107 + - 7.0908566 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - uid: 458 + components: + - pos: 10.5,-5.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8852007 + - 7.091946 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageWarden + entities: + - uid: 459 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 292.91797 + moles: + - 1.8809017 + - 7.077882 + - 0.00055792386 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SyringeInaprovaline + entities: + - uid: 48 + components: + - flags: InContainer + type: MetaData + - parent: 37 + type: Transform + - canCollide: False + type: Physics +- proto: TableWood + entities: + - uid: 460 + components: + - pos: 9.5,0.5 + parent: 1 + type: Transform + - uid: 461 + components: + - pos: 9.5,-6.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 463 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 464 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + type: Transform + - uid: 465 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 466 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 467 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 468 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 469 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 7 + components: + - flags: InContainer + type: MetaData + - parent: 6 + type: Transform + - storageUsed: 31 + type: Storage + - containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 14 + - 12 + - 13 + - 15 + - 8 + - 16 + type: ContainerContainer + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: VendingMachineBooze + entities: + - uid: 50 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - actionEntity: 51 + type: VendingMachine + - actions: + - 51 + type: Actions + - type: ActionsContainer + - containers: + actions: !type:Container + ents: + - 51 + type: ContainerContainer +- proto: VendingMachineCigs + entities: + - uid: 52 + components: + - pos: 4.5,-1.5 + parent: 1 + type: Transform + - actionEntity: 53 + type: VendingMachine + - actions: + - 53 + type: Actions + - type: ActionsContainer + - containers: + actions: !type:Container + ents: + - 53 + type: ContainerContainer +- proto: WallShuttle + entities: + - uid: 470 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 471 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 475 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 476 + components: + - rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 478 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 479 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 480 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - uid: 481 + components: + - pos: 9.5,1.5 + parent: 1 + type: Transform + - uid: 482 + components: + - pos: 10.5,1.5 + parent: 1 + type: Transform + - uid: 483 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + type: Transform + - uid: 484 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + type: Transform + - uid: 485 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + type: Transform + - uid: 486 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 487 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 488 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 489 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 490 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - uid: 491 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + type: Transform + - uid: 492 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 493 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + type: Transform + - uid: 494 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 495 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 497 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1 + type: Transform + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 1 + type: Transform + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 1 + type: Transform + - uid: 500 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 501 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 502 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 503 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 504 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 505 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 506 + components: + - pos: 8.5,3.5 + parent: 1 + type: Transform + - uid: 507 + components: + - pos: 9.5,3.5 + parent: 1 + type: Transform + - uid: 508 + components: + - pos: 10.5,3.5 + parent: 1 + type: Transform + - uid: 509 + components: + - pos: 11.5,3.5 + parent: 1 + type: Transform + - uid: 510 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 511 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 512 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + type: Transform + - uid: 513 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + type: Transform + - uid: 514 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + type: Transform + - uid: 515 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 516 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 1 + type: Transform + - uid: 517 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 518 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 519 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 524 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 525 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 526 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 528 + components: + - rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 529 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 530 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 531 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 532 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 533 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 534 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 535 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 537 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - uid: 538 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 539 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 540 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 541 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 542 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 543 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 544 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 548 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 549 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 550 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 551 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 552 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 554 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 555 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 556 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 557 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 558 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 559 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 560 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 561 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 562 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - chargeRate: 13.333334 + type: Charger + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 563 + components: + - pos: 8.5,1.5 + parent: 1 + type: Transform + - chargeRate: 13.333334 + type: Charger + - powerLoad: 0 + type: ApcPowerReceiver + - uid: 564 + components: + - pos: 8.5,-2.5 + parent: 1 + type: Transform + - chargeRate: 13.333334 + type: Charger + - powerLoad: 0 + type: ApcPowerReceiver +- proto: WarpPointShip + entities: + - uid: 565 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 220 + components: + - pos: 8.5,-6.5 + parent: 1 + type: Transform + - containers: + charger_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: + - 224 + machine_parts: !type:Container + showEnts: False + occludes: True + ents: + - 222 + - 223 + - 221 + type: ContainerContainer + - powerLoad: 0 + type: ApcPowerReceiver +- proto: WeaponCapacitorRechargerCircuitboard + entities: + - uid: 224 + components: + - flags: InContainer + type: MetaData + - parent: 220 + type: Transform + - canCollide: False + type: Physics +- proto: WeaponFlareGun + entities: + - uid: 22 + components: + - flags: InContainer + type: MetaData + - parent: 6 + type: Transform + - unspawnedCount: 1 + type: BallisticAmmoProvider + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: WindoorSecure + entities: + - uid: 566 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - invokeCounter: 2 + links: + - 437 + type: DeviceLinkSink + - uid: 567 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - links: + - 436 + type: DeviceLinkSink +- proto: Wrench + entities: + - uid: 568 + components: + - pos: 7.533099,4.573193 + parent: 1 + type: Transform + - canCollide: False + type: Physics +- proto: XylophoneInstrument + entities: + - uid: 95 + components: + - flags: InContainer + type: MetaData + - parent: 93 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: YellowOxygenTankFilled + entities: + - uid: 31 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +... diff --git a/Resources/Maps/Shuttles/liquidator.yml b/Resources/Maps/Shuttles/liquidator.yml new file mode 100644 index 00000000000..ce6e0039a3a --- /dev/null +++ b/Resources/Maps/Shuttles/liquidator.yml @@ -0,0 +1,2729 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 60: FloorLino + 84: FloorSteel + 96: FloorTechMaint + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.4999962,-0.4928913 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: GwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 30: -4,-5 + 31: -2,-5 + 39: -4,-7 + - node: + color: '#3AB3DAFF' + id: BotRightGreyscale + decals: + 40: -2,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 0: -2,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 1: -4,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 2: -2,0 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 3: -4,0 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 4: -2,1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 7: -3,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 5: -3,0 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 6: -4,1 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 14: -2,-2 + 15: -2,-3 + 16: -2,-4 + 17: -2,-5 + - node: + color: '#8932B8FF' + id: BrickTileWhiteLineW + decals: + 27: 0,-2 + 38: 0,-3 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 10: -4,-5 + 11: -4,-4 + 12: -4,-3 + 13: -4,-2 + - node: + color: '#F9801DFF' + id: BrickTileWhiteLineW + decals: + 8: 4,-3 + 9: 4,-2 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 22: 1,2 + 36: 0,2 + - node: + color: '#8932B8FF' + id: CheckerNESW + decals: + 18: 1,-2 + 19: 1,-1 + 20: 1,0 + 21: 1,1 + 32: 2,-2 + 33: 2,-1 + 34: 2,0 + 35: 2,1 + - node: + color: '#B02E26FF' + id: Delivery + decals: + 28: -3,-7 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 24: 3,-3 + 25: 2,-3 + - node: + color: '#3C44AAFF' + id: DeliveryGreyscale + decals: + 29: 3,-1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 26: 3,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 23: 1,2 + 37: 0,2 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 255 + 1,0: + 0: 62837 + 1: 2 + 2: 512 + 1,1: + 0: 2303 + 2,1: + 0: 4369 + 0,-2: + 0: 65534 + 1,-2: + 0: 4369 + 1,-1: + 0: 30583 + -2,1: + 0: 9966 + -2,0: + 0: 51336 + -1,1: + 0: 255 + -2,-2: + 0: 34952 + -2,-1: + 0: 34952 + -1,-2: + 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 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: liquidator + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 53 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 366 + - 249 + - 69 + - 295 + - 327 + - 278 + - 328 + - 234 + type: DeviceNetwork + - devices: + - 366 + - 249 + - 69 + - 295 + - 327 + - 278 + - 328 + - 234 + type: DeviceList +- proto: AirlockCaptainGlassLocked + entities: + - uid: 15 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform +- proto: AirlockEngineeringGlass + entities: + - uid: 281 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 146 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 237 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 111 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockMaintGlass + entities: + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 249 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - uid: 328 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - uid: 366 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 19 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 215 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 241 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 247 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 367 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 368 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 206 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform +- proto: BlastDoor + entities: + - uid: 186 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - links: + - 188 + type: DeviceLinkSink + - uid: 326 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - links: + - 188 + type: DeviceLinkSink +- proto: BoxBeaker + entities: + - uid: 205 + components: + - pos: 5.735236,-1.2296951 + parent: 1 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 72 + components: + - pos: 0.7108896,1.719961 + parent: 1 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 40 + components: + - pos: -1.6615257,1.9856031 + parent: 1 + type: Transform +- proto: BoxLightbulb + entities: + - uid: 183 + components: + - pos: 0.3708086,1.3091961 + parent: 1 + type: Transform +- proto: BoxLighttube + entities: + - uid: 357 + components: + - pos: 0.76756954,1.2525389 + parent: 1 + type: Transform +- proto: Bucket + entities: + - uid: 64 + components: + - pos: 0.9776434,-0.16575927 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -1.9130454,-1.6813397 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 10 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: 0.5,-1.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 144 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 261 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 42 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 142 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: Catwalk + entities: + - uid: 9 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 36 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 38 + components: + - rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 91 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 158 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 355 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform +- proto: ChairWood + entities: + - uid: 277 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: chem_master + entities: + - uid: 348 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: ChemicalPayload + entities: + - uid: 132 + components: + - pos: 5.5085144,-1.3571733 + parent: 1 + type: Transform + - uid: 223 + components: + - pos: 5.2959647,-1.1305447 + parent: 1 + type: Transform +- proto: CigarSpent + entities: + - uid: 71 + components: + - pos: -1.6756959,1.475688 + parent: 1 + type: Transform +- proto: ClosetJanitorFilled + entities: + - uid: 4 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: ClosetL3JanitorFilled + entities: + - uid: 235 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: ClothingBeltJanitorFilled + entities: + - uid: 224 + components: + - pos: 0.6116991,0.51599467 + parent: 1 + type: Transform +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 308 + components: + - pos: 0.3708086,0.88426673 + parent: 1 + type: Transform +- proto: ClothingEyesGlassesChemical + entities: + - uid: 88 + components: + - pos: 5.3809843,-1.4846523 + parent: 1 + type: Transform +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 76 + components: + - pos: 0.54084945,0.600981 + parent: 1 + type: Transform +- proto: ClothingHeadHatPurplesoft + entities: + - uid: 193 + components: + - pos: 0.55501914,0.45933747 + parent: 1 + type: Transform +- proto: ClothingOuterCoatLabChem + entities: + - uid: 13 + components: + - pos: 4.5874624,-1.5838027 + parent: 1 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 262 + components: + - pos: 0.6400392,0.78511643 + parent: 1 + type: Transform +- proto: ClothingShoesGaloshes + entities: + - uid: 98 + components: + - pos: 0.3991487,0.4451735 + parent: 1 + type: Transform +- proto: ClothingShoeSlippersDuck + entities: + - uid: 377 + components: + - pos: 0.4846384,0.38614094 + parent: 1 + type: Transform +- proto: ClothingUniformJumpskirtJanitor + entities: + - uid: 97 + components: + - pos: 0.32829833,0.57265174 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitJanitor + entities: + - uid: 179 + components: + - pos: 0.7108896,0.45933747 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 26 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 273 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 20 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateTrashCartJani + entities: + - uid: 256 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform +- proto: Dropper + entities: + - uid: 255 + components: + - pos: 5.480175,-1.6262951 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 65 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 330 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform +- proto: FireAxeCabinetFilled + entities: + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: FloorDrain + entities: + - uid: 2 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: GasMixerFlipped + entities: + - uid: 60 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - inletTwoConcentration: 0.78 + inletOneConcentration: 0.22 + type: GasMixer + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 11 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 280 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 324 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 131 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 160 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 289 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 369 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 195 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 245 + components: + - pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 7 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 12 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 68 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 92 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 129 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 130 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 153 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 184 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 232 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 251 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 253 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 258 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 266 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 271 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 272 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 279 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 292 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 311 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 343 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 361 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 180 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 287 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 321 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 61 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 196 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 211 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 288 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 290 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 22 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 162 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 230 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 234 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 278 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 295 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 53 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 319 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 14 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 16 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 21 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 46 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 242 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 332 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 260 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform +- proto: JanitorialTrolley + entities: + - uid: 284 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: Jug + entities: + - uid: 375 + components: + - pos: 4.543024,-1.5893128 + parent: 1 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: SpaceCleaner + Quantity: 200 + type: SolutionContainerManager +- proto: Lamp + entities: + - uid: 182 + components: + - rot: -1.5707963267948966 rad + pos: -1.4866235,1.9537734 + parent: 1 + type: Transform +- proto: LargeBeaker + entities: + - uid: 95 + components: + - pos: 5.678556,-1.5271454 + parent: 1 + type: Transform + - uid: 143 + components: + - pos: 5.2817945,-1.2155304 + parent: 1 + type: Transform +- proto: LightReplacer + entities: + - uid: 207 + components: + - pos: 0.46999907,0.77095246 + parent: 1 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 208 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 360 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 203 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform +- proto: MopBucketFull + entities: + - uid: 100 + components: + - pos: -1.8705349,-1.1997533 + parent: 1 + type: Transform +- proto: MopItem + entities: + - uid: 101 + components: + - pos: 0.8607421,-0.6631228 + parent: 1 + type: Transform + - uid: 250 + components: + - pos: -1.7713447,-1.9079685 + parent: 1 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 161 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform +- proto: OxygenCanister + entities: + - uid: 299 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 8 + components: + - pos: -1.2647647,2.0564246 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 236 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform +- proto: PortableScrubber + entities: + - uid: 5 + components: + - pos: -2.5,-6.5 + parent: 1 + type: Transform +- proto: PosterLegitCleanliness + entities: + - uid: 296 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 23 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 114 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 50 + components: + - rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 210 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 254 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 77 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 110 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + type: Transform +- proto: RandomPainting + entities: + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform +- proto: RandomSpawner + entities: + - uid: 283 + components: + - pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform +- proto: RandomSpawner100 + entities: + - uid: 371 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 167 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 274 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 29 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 112 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: 2.5,-3.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 145 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 1.5,-3.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - uid: 202 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 238 + components: + - pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 6.5,-1.5 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 6 + components: + - pos: 2.5246549,-4.5689898 + parent: 1 + type: Transform +- proto: SignalButtonDirectional + entities: + - uid: 188 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform + - linkedPorts: + 326: + - Pressed: Toggle + 186: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignDirectionalJanitor + entities: + - uid: 86 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform +- proto: SignJanitor + entities: + - uid: 264 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + type: Transform +- proto: SinkWide + entities: + - uid: 356 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: SmallLight + entities: + - uid: 136 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 376 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 49 + components: + - pos: 1.5,-5.5 + parent: 1 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 359 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 378 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 322 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 358 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 43 + components: + - pos: 0.5,-5.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 3 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 248 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 154 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 175 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 252 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 276 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 282 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform +- proto: TrashBag + entities: + - uid: 94 + components: + - pos: 0.97410214,-0.8047657 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -2.7065673,-1.9787903 + parent: 1 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 347 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 48 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 4.5,-3.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 163 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 165 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 172 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 178 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 6.5,-3.5 + parent: 1 + type: Transform + - uid: 216 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 244 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform +- proto: WallSolid + entities: + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 0.5,-3.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - uid: 239 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform +- proto: WarningN2 + entities: + - uid: 164 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform +- proto: WarningO2 + entities: + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 228 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 286 + components: + - pos: -2.5,-1.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 364 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 363 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 200 + components: + - rot: -1.5707963267948966 rad + pos: 2.0368552,-4.586635 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/Shuttles/waveshot.yml b/Resources/Maps/Shuttles/waveshot.yml new file mode 100644 index 00000000000..5d3f2bb88a4 --- /dev/null +++ b/Resources/Maps/Shuttles/waveshot.yml @@ -0,0 +1,3183 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 27: FloorDark + 60: FloorLino + 71: FloorRGlass + 72: FloorReinforced + 84: FloorSteel + 97: FloorTechMaint2 + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - pos: -0.48440552,-0.515625 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: bwAAAAABbwAAAAACbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAAAbwAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAABbwAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAAAbwAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADRwAAAAAAbgAAAAAAcQAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABRwAAAAAAcQAAAAAAVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADRwAAAAABbgAAAAABcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbwAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbwAAAAADbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADcQAAAAAAbgAAAAABRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABcQAAAAAARwAAAAADRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAbgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAC + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: GwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 72: -4,3 + 73: -4,3 + 74: -5,2 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 75: -4,1 + 76: -4,1 + 77: -4,1 + - node: + color: '#334E6DC8' + id: MiniTileSteelInnerNe + decals: + 57: 1,14 + 58: 1,14 + 59: 1,14 + 69: 0,15 + 70: 0,15 + 71: 0,15 + - node: + color: '#334E6DC8' + id: MiniTileSteelInnerNw + decals: + 54: -1,14 + 55: -1,14 + 56: -1,14 + 66: 0,15 + 67: 0,15 + 68: 0,15 + - node: + color: '#334E6DC8' + id: MiniTileSteelLineE + decals: + 42: 2,13 + 43: 2,13 + 44: 2,13 + 45: 2,14 + 46: 2,14 + 47: 2,14 + 48: 1,15 + 49: 1,15 + 50: 1,15 + 60: 0,16 + 61: 0,16 + 62: 0,16 + - node: + color: '#334E6DC8' + id: MiniTileSteelLineN + decals: + 18: -2,14 + 19: -2,14 + 20: -2,14 + 21: -1,15 + 22: -1,15 + 23: -1,15 + 24: 0,16 + 25: 0,16 + 26: 0,16 + 27: 1,15 + 28: 1,15 + 29: 1,15 + 30: 2,14 + 31: 2,14 + 32: 2,14 + - node: + color: '#334E6DC8' + id: MiniTileSteelLineS + decals: + 33: 0,13 + 34: 0,13 + 35: 0,13 + 36: -2,13 + 37: -2,13 + 38: -2,13 + 39: 2,13 + 40: 2,13 + 41: 2,13 + - node: + color: '#334E6DC8' + id: MiniTileSteelLineW + decals: + 12: -2,13 + 13: -2,13 + 14: -2,13 + 15: -2,14 + 16: -2,14 + 17: -2,14 + 51: -1,15 + 52: -1,15 + 53: -1,15 + 63: 0,16 + 64: 0,16 + 65: 0,16 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 3: -7,5 + 4: -7,6 + 5: -7,7 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 0: 7,6 + 1: 7,5 + 2: 7,7 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineN + decals: + 6: -7,5 + 7: -7,6 + 8: -7,7 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineN + decals: + 9: 7,5 + 10: 7,6 + 11: 7,7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 88: 2,0 + 89: 2,1 + 90: 2,2 + 91: 2,3 + 92: 2,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 93: -2,4 + 94: -1,4 + 95: 1,4 + 96: 2,4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 83: -2,0 + 84: -1,0 + 85: 0,0 + 86: 1,0 + 87: 2,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 78: -2,3 + 79: -2,2 + 80: -2,1 + 81: -2,0 + 82: -2,4 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 14335 + 1,3: + 0: 13107 + 2,0: + 0: 4096 + 2,1: + 0: 4369 + 2,2: + 0: 1 + -2,0: + 0: 65262 + -2,1: + 0: 65535 + -2,2: + 0: 36079 + -2,3: + 0: 34952 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + -1,4: + 0: 142 + 0,4: + 0: 63 + 0,-1: + 0: 61440 + 1,-1: + 0: 28672 + -2,-1: + 0: 49152 + -1,-1: + 0: 61440 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: WaveShot + type: BecomesStation +- proto: AirAlarm + entities: + - uid: 243 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 241 + - 242 + - 237 + - 240 + - 258 + - 236 + - 239 + - 213 + - 256 + type: DeviceNetwork + - devices: + - 256 + - 241 + - 242 + - 237 + - 240 + - 258 + - 236 + - 239 + - 213 + type: DeviceList + - uid: 244 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 238 + - 250 + - 237 + - 229 + - 235 + - 251 + type: DeviceNetwork + - devices: + - 238 + - 250 + - 237 + - 229 + - 235 + - 251 + type: DeviceList + - uid: 245 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 180 + - 258 + - 252 + type: DeviceNetwork + - devices: + - 180 + - 258 + - 252 + type: DeviceList + - uid: 246 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 178 + - 236 + - 255 + type: DeviceNetwork + - devices: + - 178 + - 236 + - 255 + type: DeviceList + - uid: 247 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 239 + - 216 + - 254 + type: DeviceNetwork + - devices: + - 239 + - 216 + - 254 + type: DeviceList + - uid: 248 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 240 + - 217 + - 253 + type: DeviceNetwork + - devices: + - 240 + - 217 + - 253 + type: DeviceList + - uid: 249 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 241 + - 242 + - 223 + - 257 + type: DeviceNetwork + - devices: + - 241 + - 242 + - 223 + - 257 + type: DeviceList +- proto: AirCanister + entities: + - uid: 260 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 159 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 160 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 161 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 162 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform +- proto: AirlockExternalGlass + entities: + - uid: 77 + components: + - pos: -3.5,12.5 + parent: 1 + type: Transform + - uid: 92 + components: + - pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 139 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 140 + components: + - pos: 4.5,14.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 157 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 142 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 250 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 244 + type: DeviceNetwork + - uid: 251 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 244 + type: DeviceNetwork + - uid: 252 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 245 + type: DeviceNetwork + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 248 + type: DeviceNetwork + - uid: 254 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 247 + type: DeviceNetwork + - uid: 255 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 246 + type: DeviceNetwork + - uid: 256 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 243 + type: DeviceNetwork + - uid: 257 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 249 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 317 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 318 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 319 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 320 + components: + - rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 321 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 147 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + type: Transform + - uid: 149 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + type: Transform + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 1 + type: Transform + - uid: 151 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 1 + type: Transform + - uid: 152 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + type: Transform + - uid: 153 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + type: Transform + - uid: 154 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + type: Transform +- proto: Bed + entities: + - uid: 417 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 418 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + type: Transform +- proto: BookRandom + entities: + - uid: 271 + components: + - pos: -1.3786002,8.560402 + parent: 1 + type: Transform + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: 6.5269995,1.620409 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 174 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 176 + components: + - pos: 0.5,15.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 373 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 374 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 375 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 376 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 377 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 378 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 381 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 382 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 383 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 384 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 385 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 386 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 387 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 388 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 389 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 396 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 398 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 399 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: 0.5,14.5 + parent: 1 + type: Transform + - uid: 402 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 403 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 413 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 414 + components: + - pos: -5.5,9.5 + parent: 1 + type: Transform + - uid: 415 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 448 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 449 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 450 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 451 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 452 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 454 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 455 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 462 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 463 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 464 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 185 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 420 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 325 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: -1.5,1.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 352 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 435 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 278 + components: + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + type: Transform +- proto: CarpetGreen + entities: + - uid: 351 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 457 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 458 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 460 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 461 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: Chair + entities: + - uid: 263 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 279 + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 1 + type: Transform +- proto: Cigarette + entities: + - uid: 273 + components: + - pos: 2.3983235,8.965716 + parent: 1 + type: Transform +- proto: ClosetEmergency + entities: + - uid: 439 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 440 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 445 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingNeckTieRed + entities: + - uid: 170 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitJournalist + entities: + - uid: 212 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitReporter + entities: + - uid: 446 + components: + - flags: InContainer + type: MetaData + - parent: 419 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ComputerMassMedia + entities: + - uid: 459 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: ComputerRadar + entities: + - uid: 166 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,15.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 165 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 171 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 441 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform +- proto: DrinkCoffee + entities: + - uid: 272 + components: + - pos: 2.3670735,8.606341 + parent: 1 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 310 + components: + - pos: 0.1600323,2.487178 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Coffee + Quantity: 20 + type: SolutionContainerManager +- proto: EmergencyLight + entities: + - uid: 429 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 430 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 431 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 432 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 433 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 434 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 442 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 286 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: FireAlarm + entities: + - uid: 259 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 241 + - 242 + - 240 + - 258 + - 236 + - 239 + - 237 + type: DeviceNetwork + - devices: + - 241 + - 242 + - 240 + - 258 + - 236 + - 239 + - 237 + type: DeviceList +- proto: Firelock + entities: + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 246 + type: DeviceNetwork + - uid: 237 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 244 + type: DeviceNetwork + - uid: 238 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 244 + type: DeviceNetwork + - uid: 239 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 247 + type: DeviceNetwork + - uid: 240 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 248 + type: DeviceNetwork + - uid: 241 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 249 + type: DeviceNetwork + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 249 + type: DeviceNetwork + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 259 + - 243 + - 245 + type: DeviceNetwork +- proto: FoodBoxDonut + entities: + - uid: 406 + components: + - pos: 2.493779,14.6571 + parent: 1 + type: Transform +- proto: FoodPlateTin + entities: + - uid: 274 + components: + - desc: A cheap foil tin for cigs + name: Ashtray + type: MetaData + - pos: 2.7420735,8.637591 + parent: 1 + type: Transform +- proto: GasPipeBend + entities: + - uid: 193 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 214 + components: + - rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 218 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 222 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 233 + components: + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: GasPipeStraight + entities: + - uid: 179 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 195 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 200 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform + - uid: 201 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 209 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 210 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 215 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - uid: 219 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + type: Transform + - uid: 220 + components: + - rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 221 + components: + - rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 226 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 228 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 230 + components: + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 231 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 232 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 234 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: GasPipeTJunction + entities: + - uid: 181 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 196 + components: + - rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 208 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: GasPort + entities: + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + type: Transform +- proto: GasVentPump + entities: + - uid: 178 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 246 + type: DeviceNetwork + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 245 + type: DeviceNetwork + - uid: 213 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 243 + type: DeviceNetwork + - uid: 216 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 247 + type: DeviceNetwork + - uid: 217 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 248 + type: DeviceNetwork + - uid: 223 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 249 + type: DeviceNetwork + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 244 + type: DeviceNetwork + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 244 + type: DeviceNetwork +- proto: GravityGeneratorMini + entities: + - uid: 423 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 11 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 34 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 36 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 37 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 38 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 42 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 44 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 45 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 57 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 61 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 96 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 111 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 112 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 113 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 120 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 122 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 411 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1 + type: Transform + - uid: 412 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 + type: Transform +- proto: LampGold + entities: + - uid: 281 + components: + - rot: 1.5707963267948966 rad + pos: -0.08605158,2.9813414 + parent: 1 + type: Transform +- proto: LockerCaptain + entities: + - uid: 419 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 170 + - 212 + - 445 + - 446 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + type: ContainerContainer +- proto: PaperOffice + entities: + - uid: 282 + components: + - pos: 1.0701984,2.6844664 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: 1.2733234,2.4344664 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: 1.0701984,2.5594664 + parent: 1 + type: Transform +- proto: PenCap + entities: + - uid: 285 + components: + - pos: 1.4920734,2.7782164 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 164 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 177 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform +- proto: PosterLegitCarpMount + entities: + - uid: 438 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 312 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 287 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 288 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 7.5,7.5 + parent: 1 + type: Transform + - uid: 291 + components: + - rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 + type: Transform + - uid: 292 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 295 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 1 + type: Transform + - uid: 296 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + type: Transform + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + type: Transform + - uid: 299 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 300 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 301 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 302 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 303 + components: + - rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 304 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 305 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + type: Transform + - uid: 306 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 315 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 298 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform +- proto: RandomPainting + entities: + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 314 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 313 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform +- proto: RandomVending + entities: + - uid: 308 + components: + - pos: -2.5,11.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 2 + components: + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 0.5,17.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -0.5,17.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 5.5,13.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: 1.5,16.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: 2.5,15.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: -4.5,13.5 + parent: 1 + type: Transform + - uid: 35 + components: + - pos: -1.5,15.5 + parent: 1 + type: Transform + - uid: 39 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 65 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 67 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform + - uid: 89 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 90 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 123 + components: + - pos: -4.5,11.5 + parent: 1 + type: Transform + - uid: 124 + components: + - pos: -4.5,10.5 + parent: 1 + type: Transform + - uid: 125 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 126 + components: + - pos: 5.5,11.5 + parent: 1 + type: Transform + - uid: 127 + components: + - pos: 5.5,10.5 + parent: 1 + type: Transform + - uid: 128 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 133 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 134 + components: + - pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 135 + components: + - pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 136 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 137 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform +- proto: SheetPlasma + entities: + - uid: 262 + components: + - pos: -4.4920225,2.52952 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 184 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + type: Transform +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 422 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 424 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 425 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 269 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 270 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: -1.5,14.5 + parent: 1 + type: Transform + - uid: 405 + components: + - pos: 2.5,14.5 + parent: 1 + type: Transform +- proto: TableWood + entities: + - uid: 275 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 436 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 167 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 168 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 169 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 407 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + type: Transform + - uid: 408 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform + - uid: 409 + components: + - pos: 6.5,10.5 + parent: 1 + type: Transform + - uid: 410 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + type: Transform +- proto: ToyFigurineLawyer + entities: + - uid: 447 + components: + - desc: A figure depicting a reporter ready to get the next big scoop. + name: reporter figure + type: MetaData + - pos: -0.6146927,2.6773918 + parent: 1 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 307 + components: + - flags: SessionSpecific + type: MetaData + - pos: -1.5,11.5 + parent: 1 + type: Transform +- proto: VendingMachineRepDrobe + entities: + - uid: 309 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - pos: -6.5,2.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: -2.5,14.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: -6.5,1.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 3.5,13.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 3.5,14.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -6.5,3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 24 + components: + - pos: 5.5,12.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 5.5,14.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 27 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -4.5,12.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: -4.5,14.5 + parent: 1 + type: Transform + - uid: 40 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 55 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 58 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - uid: 59 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 60 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 62 + components: + - pos: -6.5,0.5 + parent: 1 + type: Transform + - uid: 63 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 70 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 71 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 72 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 73 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 75 + components: + - pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 76 + components: + - pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -2.5,6.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 93 + components: + - pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 97 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 100 + components: + - pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 7.5,0.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 7.5,2.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 7.5,3.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -7.5,4.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: -7.5,8.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: 8.5,8.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: 8.5,4.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: -6.5,8.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: -5.5,8.5 + parent: 1 + type: Transform + - uid: 116 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: 7.5,8.5 + parent: 1 + type: Transform + - uid: 118 + components: + - pos: 6.5,8.5 + parent: 1 + type: Transform + - uid: 119 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 129 + components: + - pos: -6.5,4.5 + parent: 1 + type: Transform + - uid: 130 + components: + - pos: 7.5,4.5 + parent: 1 + type: Transform + - uid: 131 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 132 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 138 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 3.5,15.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: -2.5,15.5 + parent: 1 + type: Transform +- proto: Windoor + entities: + - uid: 427 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 428 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform +- proto: WindoorSecureCommandLocked + entities: + - uid: 421 + components: + - rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: WindowDirectional + entities: + - uid: 426 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 211 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform +- proto: WoodDoor + entities: + - uid: 155 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 156 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: Wrench + entities: + - uid: 261 + components: + - pos: -5.1951475,2.37327 + parent: 1 + type: Transform +... diff --git a/Resources/Maps/tinnia.yml b/Resources/Maps/tinnia.yml index ffb4108e946..6679eb557f5 100644 --- a/Resources/Maps/tinnia.yml +++ b/Resources/Maps/tinnia.yml @@ -1,21 +1,21 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space - 23: FloorDark - 28: FloorDarkMono - 38: FloorFreezer - 69: FloorSteel - 74: FloorSteelMini - 75: FloorSteelMono - 79: FloorTechMaint - 82: FloorWhite - 86: FloorWhiteMini - 87: FloorWhiteMono - 92: FloorWood - 94: Lattice - 95: Plating + 27: FloorDark + 32: FloorDarkMono + 42: FloorFreezer + 84: FloorSteel + 91: FloorSteelMini + 92: FloorSteelMono + 96: FloorTechMaint + 100: FloorWhite + 104: FloorWhiteMini + 105: FloorWhiteMono + 110: FloorWood + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -28,37 +28,48 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: XwAAAF8AAABfAAAAXwAAAF8AAABfAAAASwAAAkUAAAJKAAABSgAAAUoAAANFAAAASwAAAk8AAABfAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAFcAAAFFAAACSgAAA0oAAANKAAAARQAAAF8AAABfAAAAXwAAAAAAAABSAAADUgAAAFIAAANSAAABUgAAA1IAAAFXAAABRQAAAkoAAAFKAAAASgAAAUUAAAFfAAAAXgAAAF4AAAAAAAAAVgAAAlYAAABWAAACVgAAAlIAAANSAAADVwAAA0UAAANKAAABSgAAAUoAAABFAAABXwAAAF4AAABeAAAAAAAAAFYAAABWAAADVgAAAlYAAAJSAAABUgAAAFcAAABFAAACSgAAA0oAAABKAAABRQAAAV8AAABeAAAAAAAAAAAAAABWAAACVgAAAlYAAAFWAAABUgAAA1IAAAFXAAACRQAAAEoAAAJKAAAASgAAA0UAAAJfAAAAXgAAAAAAAAAAAAAAUgAAA1IAAANSAAACUgAAA1IAAABSAAABXwAAAEUAAABFAAACRQAAAEUAAAFFAAACXwAAAAAAAAAAAAAAAAAAAFcAAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABLAAADXwAAAF8AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAmAAAAJgAAAF8AAABcAAADXAAAA1wAAAJcAAAASwAAAVwAAAFcAAADXAAAAF8AAABeAAAAAAAAAAAAAAAAAAAAJgAAACYAAABfAAAAXAAAAlwAAAJcAAAAXwAAAF8AAABfAAAAXAAAA1wAAAFfAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAF8AAABfAAAAXAAAA1wAAAJfAAAAXAAAAlwAAAJcAAADXwAAAF4AAAAAAAAAAAAAAAAAAABPAAAATwAAAF8AAABWAAABXwAAAFcAAABfAAAAXwAAAFwAAABcAAACXwAAAF8AAABeAAAAAAAAAAAAAAAAAAAAXwAAAE8AAABXAAADVgAAA1YAAANWAAAAVwAAAVwAAABcAAACXAAAAl8AAABeAAAAXgAAAAAAAAAAAAAAAAAAAF8AAABfAAAAXwAAAFYAAAFWAAACVgAAAl8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAAAAAAAAAAAAAAAAAABfAAAATwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACVAAAAAACWwAAAAABWwAAAAABWwAAAAADVAAAAAAAXAAAAAACYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAABVAAAAAACWwAAAAADWwAAAAADWwAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAABaQAAAAABVAAAAAACWwAAAAABWwAAAAAAWwAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAaAAAAAACaAAAAAAAaAAAAAACaAAAAAACZAAAAAADZAAAAAADaQAAAAADVAAAAAADWwAAAAABWwAAAAABWwAAAAAAVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAaAAAAAAAaAAAAAADaAAAAAACaAAAAAACZAAAAAABZAAAAAAAaQAAAAAAVAAAAAACWwAAAAADWwAAAAAAWwAAAAABVAAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAaAAAAAACaAAAAAACaAAAAAABaAAAAAABZAAAAAADZAAAAAABaQAAAAACVAAAAAAAWwAAAAACWwAAAAAAWwAAAAADVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAXAAAAAABbgAAAAABbgAAAAADbgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAaAAAAAABcQAAAAAAaQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAaQAAAAADaAAAAAADaAAAAAADaAAAAAAAaQAAAAABbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAABfAAAATwAAAEsAAAJFAAADSgAAAkoAAAJKAAAARQAAAl8AAABfAAAAXwAAAF8AAABfAAAAXwAAAAAAAAAAAAAAXwAAAF8AAABfAAAARQAAAEUAAAFFAAACRQAAAUUAAAJfAAAAUgAAA1IAAANSAAADXwAAAFcAAAMAAAAAAAAAAF4AAABeAAAAXwAAAF8AAABfAAAASwAAAEsAAABfAAAAXwAAAFIAAANSAAADUgAAAFIAAABSAAADAAAAAAAAAABeAAAAXgAAAF8AAAAXAAACFwAAARcAAAMXAAACFwAAAl8AAABSAAADUgAAAVYAAANWAAACVgAAAwAAAAAAAAAAAAAAAF4AAABfAAAAFwAAABcAAAEXAAAAFwAAAxcAAANfAAAAUgAAA1IAAAJWAAADVgAAA1YAAAEAAAAAAAAAAAAAAABeAAAAXwAAABcAAAIXAAADFwAAAxcAAAMXAAACXwAAAFIAAAJSAAADVgAAAlYAAAJWAAAAAAAAAAAAAAAAAAAAAAAAAF8AAAAXAAADFwAAARcAAAMXAAADFwAAAV8AAABSAAADUgAAA1IAAAJSAAACUgAAAwAAAAAAAAAAAAAAAAAAAABfAAAAXwAAABcAAAIXAAACFwAAAhcAAABfAAAAXwAAABwAAAEcAAACHAAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAAAXAAAAFwAAAhcAAAMXAAABFwAAARcAAAMXAAAAFwAAA18AAAAmAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABfAAAAFwAAAxcAAAMXAAADFwAAAxcAAAEXAAADFwAAAxcAAAMcAAABJgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXwAAABcAAAEXAAADFwAAAhcAAAIXAAADFwAAARcAAAIXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAAFwAAAhcAAAMXAAAAFwAAABcAAAAXAAABFwAAABwAAAFPAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXwAAABcAAAIXAAABFwAAAhcAAAMXAAADFwAAABcAAAJfAAAATwAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF8AAABfAAAAXwAAAF8AAABfAAAAFwAAAxcAAAAXAAACXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAF8AAABfAAAAXwAAAF8AAABPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAACVAAAAAADWwAAAAACWwAAAAACWwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAZAAAAAADZAAAAAADZAAAAAADcQAAAAAAaQAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAACGwAAAAACcQAAAAAAZAAAAAADZAAAAAABaAAAAAADaAAAAAACaAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAZAAAAAADZAAAAAACaAAAAAADaAAAAAADaAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAAZAAAAAACZAAAAAADaAAAAAACaAAAAAACaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAIAAAAAABIAAAAAACIAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAADGwAAAAADIAAAAAABKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAIAAAAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA + version: 6 0,-1: ind: 0,-1 - tiles: XwAAAF8AAABfAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE8AAABPAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcAAACXAAAAV8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAXAAAAFwAAAFcAAACXAAAA1wAAAFcAAADXAAAAVwAAAJcAAACXAAAAFwAAAFcAAADXwAAAAAAAAAAAAAAAAAAAFwAAAJcAAAAXAAAAFwAAABcAAAAXAAAAFwAAANcAAABXAAAA1wAAABcAAACXAAAA18AAAAAAAAAAAAAAAAAAABcAAADXAAAAlwAAAJcAAADXAAAAlwAAABcAAABXAAAAlwAAANcAAABXAAAA1wAAAFfAAAAAAAAAAAAAAAAAAAAXAAAAlwAAANcAAABXAAAAlwAAABcAAAAXAAAAlwAAANcAAACXAAAA1wAAABcAAACXwAAAAAAAAAAAAAAAAAAAFwAAAJcAAABXAAAA1wAAABcAAACXAAAAVwAAABcAAADXAAAAlwAAAFcAAAAXAAAAF8AAAAAAAAAAAAAAAAAAAAXAAACFwAAABcAAAEXAAAAFwAAAhcAAAJfAAAAXAAAAFwAAANcAAACXAAAA1wAAANfAAAAAAAAAAAAAAAAAAAAFwAAAxcAAAIXAAADFwAAABcAAAIXAAAAXwAAAFwAAAJcAAACXAAAAFwAAAJcAAADXwAAAF4AAAAAAAAAAAAAABcAAAAXAAABFwAAABcAAAEXAAACFwAAAl8AAABcAAADXAAAAVwAAABcAAAAXAAAAl8AAABeAAAAAAAAAAAAAABfAAAAXwAAAF8AAAAcAAABXwAAAF8AAABfAAAAXAAAAVwAAAFcAAADXAAAAFwAAANfAAAAXgAAAF4AAAAAAAAAXwAAAFwAAANcAAADXAAAAlwAAAFcAAADXwAAAFwAAANcAAABXAAAAlwAAANcAAADXwAAAF4AAABeAAAAAAAAAF8AAABfAAAAXAAAA1wAAAJcAAADXAAAAF8AAABfAAAASwAAAEsAAAFLAAAAXwAAAF8AAABfAAAAXwAAAAAAAABPAAAAXwAAAF8AAAAcAAACXwAAAF8AAABfAAAARQAAAkUAAAFFAAAARQAAAUUAAABLAAACTwAAAF8AAAAAAAAATwAAAE8AAABfAAAAXwAAAE8AAABPAAAAXwAAAEUAAAFKAAACSgAAAkoAAANFAAABSwAAAU8AAABfAAAAAAAAAA== + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAADcQAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAADbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAXAAAAAACYAAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWwAAAAACWwAAAAACWwAAAAADVAAAAAABXAAAAAABYAAAAAAAcQAAAAAAAAAAAAAA + version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABfAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXwAAAE8AAAAAAAAAAAAAAAAAAAAAAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABcAAACAAAAAAAAAAAAAAAAAAAAAF8AAABcAAADXAAAAVwAAAFcAAAAXAAAAFwAAAJcAAAAXAAAAFwAAANcAAADXAAAAQAAAAAAAAAAAAAAAAAAAABfAAAAXAAAAVwAAABcAAABXAAAAlwAAABcAAACXAAAAVwAAANcAAAAXAAAAFwAAAIAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAACXAAAAlwAAANcAAABXAAAAlwAAAJcAAADXAAAAVwAAANcAAABAAAAAAAAAAAAAAAAAAAAAF8AAABcAAAAXAAAA1wAAAJcAAACXAAAAVwAAABcAAACXAAAA1wAAANcAAADXAAAAQAAAAAAAAAAAAAAAAAAAABfAAAAXAAAA1wAAAJcAAACXAAAA1wAAABcAAACXAAAAFwAAABcAAABXAAAAFwAAAEAAAAAAAAAAAAAAAAAAAAAXwAAAFwAAANcAAACXAAAAFwAAABcAAADXwAAAF8AAAAcAAADXwAAABcAAAIXAAABAAAAAAAAAAAAAAAAXgAAAF8AAABfAAAASwAAA0sAAAFLAAADXwAAAF8AAAAXAAAAFwAAABcAAAIXAAACFwAAAQAAAAAAAAAAAAAAAF4AAABfAAAARQAAAUUAAAFFAAADRQAAAEUAAANfAAAAFwAAARcAAAIXAAABFwAAAxcAAAEAAAAAAAAAAF4AAABeAAAAXwAAAEUAAAJKAAAASgAAA0oAAAFFAAADXwAAABcAAAIXAAABFwAAABcAAAIXAAADAAAAAAAAAABeAAAAXgAAAF8AAABFAAACSgAAA0oAAAFKAAABRQAAAl8AAAAXAAADFwAAAhcAAAEXAAACFwAAAQAAAAAAAAAAXwAAAF8AAABfAAAARQAAAUoAAAJKAAAASgAAAkUAAAJfAAAAXwAAAF8AAABfAAAAXwAAABwAAAMAAAAAAAAAAF8AAABPAAAASwAAA0UAAAJKAAABSgAAA0oAAAJFAAACSwAAAV8AAABfAAAAXwAAAF8AAABfAAAAAAAAAAAAAABfAAAATwAAAEsAAABFAAACSgAAAkoAAAFKAAACRQAAAF8AAABPAAAATwAAAF8AAABfAAAAXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAIAAAAAADcQAAAAAAGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAADcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACWwAAAAAAWwAAAAADWwAAAAABVAAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACWwAAAAADWwAAAAABWwAAAAABVAAAAAACcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWwAAAAACWwAAAAAAWwAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAADVAAAAAACWwAAAAABWwAAAAADWwAAAAACVAAAAAACXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAAAVAAAAAACWwAAAAACWwAAAAABWwAAAAACVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: XgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: XgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,3: ind: 0,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -610,8 +621,10 @@ entities: 0: 61166 -1,8: 0: 8 + 1: 36848 0,8: 0: 19 + 1: 16352 2,8: 0: 61166 2,9: @@ -630,6 +643,30 @@ entities: 0: 65520 2,12: 0: 65534 + -2,8: + 1: 3264 + -2,9: + 1: 49356 + -2,10: + 1: 52236 + -1,9: + 1: 63743 + -1,10: + 1: 65423 + -1,11: + 1: 8 + 0,9: + 1: 62463 + 0,10: + 1: 65343 + 0,11: + 1: 19 + 1,8: + 1: 1904 + 1,9: + 1: 28791 + 1,10: + 1: 30471 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -646,6 +683,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -1284,827 +1336,591 @@ entities: - pos: 10.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 763 components: - pos: 2.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 764 components: - pos: 1.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 765 components: - pos: 0.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 766 components: - pos: 0.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 767 components: - pos: 0.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 768 components: - pos: 0.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 769 components: - pos: 0.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 770 components: - pos: 0.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 771 components: - pos: 0.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 772 components: - pos: 0.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 773 components: - pos: 0.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 774 components: - pos: 0.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 775 components: - pos: 0.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 776 components: - pos: 0.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 777 components: - pos: 0.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 778 components: - pos: 0.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 779 components: - pos: 0.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 780 components: - pos: 0.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 781 components: - pos: 0.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 782 components: - pos: 0.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 783 components: - pos: 0.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 784 components: - pos: 1.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 785 components: - pos: 2.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 786 components: - pos: 3.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 787 components: - pos: 4.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 788 components: - pos: 5.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 789 components: - pos: 6.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 790 components: - pos: 7.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 791 components: - pos: 8.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 792 components: - pos: 9.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 793 components: - pos: 10.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 794 components: - pos: 10.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 795 components: - pos: 10.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 796 components: - pos: 10.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 797 components: - pos: 10.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 798 components: - pos: 10.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 799 components: - pos: 10.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 800 components: - pos: 10.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 801 components: - pos: 10.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 802 components: - pos: 10.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 803 components: - pos: 10.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 804 components: - pos: 10.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 805 components: - pos: 10.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 806 components: - pos: 10.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 807 components: - pos: 10.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 808 components: - pos: 10.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 809 components: - pos: 10.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 810 components: - pos: 10.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 811 components: - pos: 10.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 812 components: - pos: 10.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 813 components: - pos: 10.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 814 components: - pos: 10.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 815 components: - pos: 10.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 816 components: - pos: 10.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 817 components: - pos: 10.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 818 components: - pos: 10.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 819 components: - pos: 10.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 820 components: - pos: 10.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 821 components: - pos: 10.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 822 components: - pos: 10.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 823 components: - pos: 10.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 824 components: - pos: 10.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 825 components: - pos: 10.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 826 components: - pos: 10.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 827 components: - pos: 9.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 828 components: - pos: 8.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 829 components: - pos: 7.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 830 components: - pos: 6.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 831 components: - pos: -5.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 832 components: - pos: -6.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 833 components: - pos: -7.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 834 components: - pos: -8.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 835 components: - pos: -9.5,50.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 837 components: - pos: -9.5,49.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 838 components: - pos: -9.5,48.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 839 components: - pos: -9.5,47.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 840 components: - pos: -9.5,46.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 841 components: - pos: -9.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 842 components: - pos: -9.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 843 components: - pos: -9.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 844 components: - pos: -9.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 845 components: - pos: -9.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 846 components: - pos: -9.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 847 components: - pos: -9.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 848 components: - pos: -9.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 849 components: - pos: -9.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 850 components: - pos: -9.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 851 components: - pos: -9.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 852 components: - pos: -9.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 853 components: - pos: -9.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 854 components: - pos: -9.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 855 components: - pos: -9.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 856 components: - pos: -9.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 857 components: - pos: -9.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 858 components: - pos: -9.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 859 components: - pos: -9.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 860 components: - pos: -9.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 861 components: - pos: -9.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 862 components: - pos: -9.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 863 components: - pos: -9.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 864 components: - pos: -9.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 865 components: - pos: -9.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 866 components: - pos: -9.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 867 components: - pos: -9.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 868 components: - pos: -9.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 869 components: - pos: -9.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 870 components: - pos: -9.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 871 components: - pos: -8.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 872 components: - pos: -7.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 873 components: - pos: -6.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 874 components: - pos: -5.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 875 components: - pos: -4.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 876 components: - pos: -3.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 877 components: - pos: -2.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 878 components: - pos: -1.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 879 components: - pos: -0.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1076 components: - pos: 0.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1077 components: - pos: 0.5,-5.5 @@ -2315,99 +2131,71 @@ entities: - pos: -0.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1119 components: - pos: -0.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1120 components: - pos: -0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1121 components: - pos: 1.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1122 components: - pos: 0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1123 components: - pos: 2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1124 components: - pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1125 components: - pos: 4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1126 components: - pos: 5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1127 components: - pos: -1.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1128 components: - pos: -2.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1129 components: - pos: -3.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1130 components: - pos: -4.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1131 components: - pos: -11.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1132 components: - pos: -10.5,-3.5 @@ -2533,8 +2321,6 @@ entities: - pos: 12.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1157 components: - pos: 11.5,2.5 @@ -2665,8 +2451,6 @@ entities: - pos: 2.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1184 components: - pos: 2.5,6.5 @@ -2827,8 +2611,6 @@ entities: - pos: -9.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1216 components: - pos: -8.5,11.5 @@ -3356,561 +3138,401 @@ entities: - pos: -5.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 673 components: - pos: -4.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 674 components: - pos: -3.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 675 components: - pos: -2.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 676 components: - pos: -1.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 677 components: - pos: -0.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 678 components: - pos: 0.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 679 components: - pos: 1.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 680 components: - pos: 2.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 681 components: - pos: 3.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 682 components: - pos: 4.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 683 components: - pos: 5.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 684 components: - pos: 6.5,31.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 685 components: - pos: -5.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 686 components: - pos: -4.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 687 components: - pos: -3.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 688 components: - pos: -2.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 689 components: - pos: -1.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 690 components: - pos: -0.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 691 components: - pos: 0.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 692 components: - pos: 1.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 693 components: - pos: 2.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 694 components: - pos: 3.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 695 components: - pos: 4.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 696 components: - pos: 5.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 697 components: - pos: 6.5,28.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 698 components: - pos: -5.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 699 components: - pos: -4.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 700 components: - pos: -3.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 701 components: - pos: -2.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 702 components: - pos: -1.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 703 components: - pos: -0.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 704 components: - pos: 0.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 705 components: - pos: 1.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 706 components: - pos: 2.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 707 components: - pos: 3.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 708 components: - pos: 4.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 709 components: - pos: 5.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 710 components: - pos: 6.5,25.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 711 components: - pos: -5.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 712 components: - pos: -4.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 713 components: - pos: -3.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 714 components: - pos: -2.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 715 components: - pos: -1.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 716 components: - pos: -0.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 717 components: - pos: 0.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 718 components: - pos: 1.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 719 components: - pos: 2.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 720 components: - pos: 3.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 721 components: - pos: 4.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 722 components: - pos: 5.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 723 components: - pos: 6.5,22.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 724 components: - pos: -5.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 725 components: - pos: -4.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 726 components: - pos: -3.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 727 components: - pos: -2.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 728 components: - pos: -1.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 729 components: - pos: -0.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 730 components: - pos: 0.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 731 components: - pos: 1.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 732 components: - pos: 2.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 733 components: - pos: 3.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 734 components: - pos: 4.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 735 components: - pos: 5.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 736 components: - pos: 6.5,19.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 737 components: - pos: 0.5,20.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 738 components: - pos: 0.5,21.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 739 components: - pos: 0.5,23.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 740 components: - pos: 0.5,24.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 741 components: - pos: 0.5,26.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 742 components: - pos: 0.5,27.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 743 components: - pos: 0.5,29.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 744 components: - pos: 0.5,30.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 745 components: - pos: 0.5,32.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 746 components: - pos: 0.5,33.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 748 components: - pos: 0.5,18.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 749 components: - pos: 0.5,17.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 750 components: - pos: 0.5,16.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 751 components: - pos: 0.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 752 components: - pos: 0.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 753 components: - pos: 1.5,14.5 @@ -3926,435 +3548,311 @@ entities: - pos: -1.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 757 components: - pos: -0.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2041 components: - pos: -5.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2042 components: - pos: -4.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2043 components: - pos: -3.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2044 components: - pos: -2.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2045 components: - pos: -1.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2046 components: - pos: -0.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2047 components: - pos: 0.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2048 components: - pos: 1.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2049 components: - pos: 2.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2050 components: - pos: 3.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2051 components: - pos: 4.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2052 components: - pos: 5.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2053 components: - pos: 6.5,34.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2054 components: - pos: -5.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2055 components: - pos: -4.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2056 components: - pos: -3.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2057 components: - pos: -2.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2058 components: - pos: -1.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2059 components: - pos: -0.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2060 components: - pos: 0.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2061 components: - pos: 1.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2062 components: - pos: 2.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2063 components: - pos: 3.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2064 components: - pos: 4.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2065 components: - pos: 5.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2066 components: - pos: 6.5,37.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2067 components: - pos: -5.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2068 components: - pos: -4.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2069 components: - pos: -3.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2070 components: - pos: -2.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2071 components: - pos: -1.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2072 components: - pos: -0.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2073 components: - pos: 0.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2074 components: - pos: 1.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2075 components: - pos: 2.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2076 components: - pos: 3.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2077 components: - pos: 4.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2078 components: - pos: 5.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2079 components: - pos: 6.5,40.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2080 components: - pos: -5.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2081 components: - pos: -4.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2082 components: - pos: -3.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2083 components: - pos: -2.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2084 components: - pos: -1.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2085 components: - pos: -0.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2086 components: - pos: 0.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2087 components: - pos: 1.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2088 components: - pos: 2.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2089 components: - pos: 3.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2090 components: - pos: 4.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2091 components: - pos: 5.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2092 components: - pos: 6.5,43.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2093 components: - pos: 0.5,44.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2094 components: - pos: 0.5,45.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2095 components: - pos: 0.5,42.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2096 components: - pos: 0.5,41.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2097 components: - pos: 0.5,39.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2098 components: - pos: 0.5,38.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2099 components: - pos: 0.5,36.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 2100 components: - pos: 0.5,35.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableMV entities: - uid: 758 @@ -4362,43 +3860,31 @@ entities: - pos: -1.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 759 components: - pos: -0.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 760 components: - pos: 0.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 761 components: - pos: 1.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 762 components: - pos: 2.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 917 components: - pos: 0.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 918 components: - pos: 0.5,11.5 @@ -4529,92 +4015,66 @@ entities: - pos: -4.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 945 components: - pos: -3.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 946 components: - pos: -2.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 947 components: - pos: -1.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 948 components: - pos: -0.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 949 components: - pos: -0.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 950 components: - pos: -0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 951 components: - pos: 0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 952 components: - pos: 1.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 953 components: - pos: 2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 954 components: - pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 955 components: - pos: 4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 956 components: - pos: 5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 957 components: - pos: 6.5,0.5 @@ -4960,15 +4420,11 @@ entities: - pos: 2.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1071 components: - pos: -9.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1319 components: - pos: -9.5,-3.5 @@ -4984,15 +4440,11 @@ entities: - pos: -11.5,-3.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1322 components: - pos: 0.5,-4.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1323 components: - pos: -0.5,-4.5 @@ -5043,8 +4495,6 @@ entities: - pos: 12.5,2.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - proto: CableTerminal entities: - uid: 754 @@ -7251,17 +6701,35 @@ entities: - pos: 11.5,6.5 parent: 1 type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots - uid: 394 components: - rot: -1.5707963267948966 rad pos: 6.5,-8.5 parent: 1 type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots - uid: 396 components: - pos: -10.5,-5.5 parent: 1 type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots - proto: CrateFoodBarSupply entities: - uid: 1463 @@ -8327,55 +7795,41 @@ entities: pos: 3.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1344 components: - rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1345 components: - rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1346 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1347 components: - rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1348 components: - rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1351 components: - pos: -0.5,-0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1352 components: - rot: -1.5707963267948966 rad @@ -8414,8 +7868,6 @@ entities: - pos: 9.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1363 components: - pos: 9.5,8.5 @@ -8438,8 +7890,6 @@ entities: pos: 7.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1372 components: - rot: 1.5707963267948966 rad @@ -8555,48 +8005,36 @@ entities: - pos: 1.5,10.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1403 components: - rot: -1.5707963267948966 rad pos: 2.5,11.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1407 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1408 components: - rot: 3.141592653589793 rad pos: 0.5,13.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1409 components: - rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1410 components: - rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1434 components: - rot: 3.141592653589793 rad @@ -9077,8 +8515,6 @@ entities: - pos: 1.5,7.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1586 components: - pos: 1.5,6.5 @@ -9366,46 +8802,34 @@ entities: pos: -4.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1340 components: - rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1341 components: - pos: 5.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1342 components: - pos: 4.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1349 components: - rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1350 components: - rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 type: Transform - - enabled: True - type: AmbientSound - uid: 1355 components: - rot: -1.5707963267948966 rad @@ -9625,108 +9049,80 @@ entities: pos: 10.5,1.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1368 components: - rot: 1.5707963267948966 rad pos: 6.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1369 components: - rot: -1.5707963267948966 rad pos: 10.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1370 components: - rot: 1.5707963267948966 rad pos: -9.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1371 components: - rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1386 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1399 components: - pos: -0.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1431 components: - pos: 9.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1505 components: - pos: 0.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1506 components: - rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1507 components: - rot: 3.141592653589793 rad pos: -6.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1508 components: - rot: 3.141592653589793 rad pos: 7.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1571 components: - pos: 0.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1611 components: - rot: 3.141592653589793 rad pos: -4.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GasVentScrubber entities: - uid: 180 @@ -9734,130 +9130,96 @@ entities: - pos: 2.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 361 components: - pos: -5.5,-10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1405 components: - pos: 1.5,12.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1432 components: - pos: 4.5,13.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1433 components: - rot: 3.141592653589793 rad pos: 5.5,9.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1439 components: - rot: 3.141592653589793 rad pos: 8.5,11.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1501 components: - rot: -1.5707963267948966 rad pos: 4.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1502 components: - rot: 1.5707963267948966 rad pos: 2.5,-6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1562 components: - pos: 3.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1563 components: - pos: -0.5,4.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1584 components: - rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1609 components: - rot: 1.5707963267948966 rad pos: -8.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1610 components: - rot: 1.5707963267948966 rad pos: -8.5,-2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1625 components: - pos: -6.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1626 components: - rot: 1.5707963267948966 rad pos: -9.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1633 components: - rot: 1.5707963267948966 rad pos: 9.5,0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1634 components: - rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: GravityGeneratorMini entities: - uid: 1961 @@ -10347,6 +9709,14 @@ entities: - pos: -8.274868,-9.994838 parent: 1 type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 2172 + components: + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + type: Transform - proto: KitchenKnife entities: - uid: 1811 @@ -10415,6 +9785,27 @@ entities: - pos: 1.3876606,8.519089 parent: 1 type: Transform +- proto: OilJarCorn + entities: + - uid: 2173 + components: + - pos: 1.3598332,5.3334007 + parent: 1 + type: Transform +- proto: OilJarGhee + entities: + - uid: 2174 + components: + - pos: 1.5811963,5.2891526 + parent: 1 + type: Transform +- proto: OilJarOlive + entities: + - uid: 2175 + components: + - pos: 1.8173172,5.259654 + parent: 1 + type: Transform - proto: Paper entities: - uid: 1837 @@ -10514,54 +9905,40 @@ entities: pos: -6.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1646 components: - rot: 1.5707963267948966 rad pos: 7.5,-0.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1647 components: - pos: 2.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1648 components: - rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1649 components: - rot: -1.5707963267948966 rad pos: -2.5,10.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1650 components: - rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1666 components: - pos: 8.5,6.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1758 components: - rot: 3.141592653589793 rad @@ -10573,8 +9950,6 @@ entities: - pos: -13.5,-3.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredLightPostSmall entities: - uid: 914 @@ -10582,85 +9957,61 @@ entities: - pos: -8.5,38.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1667 components: - pos: -8.5,17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1668 components: - pos: 9.5,17.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1669 components: - pos: 9.5,30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1670 components: - pos: 9.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1671 components: - pos: 9.5,38.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1672 components: - pos: 4.5,51.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1673 components: - pos: -3.5,51.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1704 components: - pos: -8.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1755 components: - pos: 9.5,45.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1756 components: - pos: -8.5,23.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - uid: 1757 components: - pos: -8.5,30.5 parent: 1 type: Transform - - enabled: False - type: AmbientSound - proto: PoweredSmallLight entities: - uid: 337 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml index 7557801c282..571ee1338b4 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_cargo.yml @@ -1,4 +1,4 @@ -# - type: cargoProduct +# - type: cargoProduct # Frontier - Cannot be moved off floors # id: CargoPallet # icon: # sprite: Structures/catwalk.rsi @@ -18,12 +18,12 @@ category: Cargo group: market -- type: cargoProduct - id: CargoLuxuryHardsuit - icon: - sprite: Clothing/Head/Hardsuits/luxury.rsi - state: icon - product: CrateCargoLuxuryHardsuit - cost: 15000 - category: Cargo - group: market +# - type: cargoProduct # Frontier - Moved to cargo locker + # id: CargoLuxuryHardsuit + # icon: + # sprite: Clothing/Head/Hardsuits/luxury.rsi + # state: icon + # product: CrateCargoLuxuryHardsuit + # cost: 15000 + # category: Cargo + # group: market diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml index e7ba13ecec3..9fdf7332b9a 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml @@ -15,11 +15,15 @@ # - id: ClothingBeltUtilityFilled # Frontier - id: ClothingBeltUtilityEngineering # Frontier - id: SurvivalKnife -# - id: HandheldGPSBasic # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier - id: RadioHandheld - id: OreBag - - id: Flare - amount: 3 +# - id: Flare # Frontier +# amount: 3 # Frontier + - id: BoxFlare # Frontier + - id: MiningDrill # Frontier + - id: WeaponProtoKineticAccelerator # Frontier - type: entity id: LockerSalvageSpecialistFilled @@ -36,5 +40,8 @@ # - id: HandheldGPSBasic # Frontier - id: RadioHandheld - id: OreBag - - id: Flare - amount: 3 +# - id: Flare # Frontier +# amount: 3 # Frontier + - id: BoxFlare # Frontier + - id: MiningDrill # Frontier + - id: WeaponProtoKineticAccelerator # Frontier diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index 1f7ee7efc71..ffb0eb6c62b 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -90,6 +90,12 @@ - id: MedkitOxygenFilled - id: HolofanProjector # - id: DoorRemoteFirefight + - id: ClothingShoesBootsMag # Frontier + - id: ClothingHandsGlovesColorYellow # Frontier + - id: trayScanner # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier + - id: ClothingBeltUtilityEngineering # Frontier - type: entity id: LockerAtmosphericsFilled @@ -105,6 +111,9 @@ - id: MedkitOxygenFilled - id: HolofanProjector # - id: DoorRemoteFirefight + - id: ClothingHandsGlovesColorYellow # Frontier + - id: trayScanner # Frontier + - id: ClothingBeltUtilityEngineering # Frontier - type: entity id: LockerEngineerFilledHardsuit @@ -119,6 +128,10 @@ - id: OxygenTankFilled - id: NitrogenTankFilled - id: ClothingShoesBootsMag + - id: trayScanner # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier + - id: ClothingBeltUtilityEngineering # Frontier - type: entity id: LockerEngineerFilled @@ -130,6 +143,7 @@ - id: ClothingHandsGlovesColorYellow - id: ClothingMaskGas - id: trayScanner + - id: ClothingBeltUtilityEngineering # Frontier - type: entity id: ClosetRadiationSuitFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 723c63a1514..bbc173e519c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -66,6 +66,8 @@ - id: DrinkFlask # Frontier - id: OxygenTankFilled # Frontier - id: NitrogenTankFilled # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier - type: entity id: LockerCaptainFilled @@ -171,6 +173,8 @@ - id: BoxEncryptionKeyEngineering # - id: AccessConfigurator # Frontier - id: ClothingNeckMantleCE # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier - type: entity id: LockerChiefEngineerFilled @@ -222,7 +226,14 @@ - id: MaterialBiomass amount: 3 - id: BoxEncryptionKeyMedical + - id: HandLabeler # Frontier + - id: ClothingBeltMedical # Frontier - id: ClothingNeckMantleCMO # Frontier + - id: NitrogenTankFilled # Frontier + - id: OxygenTankFilled # Frontier + - id: ClothingMaskBreathMedical # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier - type: entity id: LockerChiefMedicalOfficerFilled @@ -250,6 +261,8 @@ - id: MaterialBiomass amount: 3 - id: BoxEncryptionKeyMedical + - id: HandLabeler # Frontier + - id: ClothingBeltMedical # Frontier - id: ClothingNeckMantleCMO # Frontier - id: ClothingOuterWinterCMO # Frontier @@ -260,11 +273,11 @@ components: - type: StorageFill contents: - - id: ResearchComputerCircuitboard - - id: ProtolatheMachineCircuitboard - - id: CircuitImprinterMachineCircuitboard +# - id: ResearchComputerCircuitboard # Frontier +# - id: ProtolatheMachineCircuitboard # Frontier +# - id: CircuitImprinterMachineCircuitboard # Frontier - id: ClothingNeckCloakRd - - id: ClothingHeadsetMedicalScience +# - id: ClothingHeadsetMedicalScience # Frontier - id: ClothingOuterHardsuitRd # - id: HandTeleporter # Frontier # - id: DoorRemoteResearch # Frontier @@ -273,34 +286,14 @@ - id: RubberStampRd - id: ClothingHeadsetAltScience - id: BoxEncryptionKeyScience - - id: BoxEncryptionKeyRobo +# - id: BoxEncryptionKeyRobo # Frontier - id: ClothingBeltUtilityEngineering # Frontier - id: ClothingNeckMantleRD # Frontier - -- type: entity - id: LockerResearchDirectorShuttleFilled - suffix: Filled, Shuttle - parent: LockerResearchDirector - components: - - type: StorageFill - contents: - - id: ResearchComputerCircuitboard - - id: ProtolatheMachineCircuitboard - - id: CircuitImprinterMachineCircuitboard - - id: ClothingNeckCloakRd - - id: ClothingHeadsetMedicalScience - - id: PlushieSlime - prob: 0.1 -# - id: DoorRemoteResearch # Frontier - - id: ClothingHeadHatBeretRND - - id: ClothingHandsGlovesColorPurple - - id: ClothingBeltUtilityEngineering # Frontier - - id: RubberStampRd - - id: ClothingHeadsetAltScience - - id: BoxEncryptionKeyScience - - id: BoxEncryptionKeyRobo # Frontier - - id: ClothingNeckMantleRD # Frontier - - id: ClothingOuterWinterRD # Frontier + - id: NitrogenTankFilled # Frontier + - id: OxygenTankFilled # Frontier + - id: ClothingMaskBreath # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier - type: entity id: LockerResearchDirectorFilled @@ -309,20 +302,19 @@ components: - type: StorageFill contents: - - id: ResearchComputerCircuitboard - - id: ProtolatheMachineCircuitboard - - id: CircuitImprinterMachineCircuitboard +# - id: ResearchComputerCircuitboard # Frontier +# - id: ProtolatheMachineCircuitboard # Frontier +# - id: CircuitImprinterMachineCircuitboard # Frontier - id: ClothingNeckCloakRd - - id: ClothingHeadsetMedicalScience +# - id: ClothingHeadsetMedicalScience # Frontier # - id: HandTeleporter # Frontier # - id: DoorRemoteResearch # Frontier - id: ClothingHeadHatBeretRND - id: ClothingHandsGlovesColorPurple - - id: ClothingBeltUtilityEngineering # Frontier - id: RubberStampRd - id: ClothingHeadsetAltScience - id: BoxEncryptionKeyScience - - id: BoxEncryptionKeyRobo # Frontier + - id: ClothingBeltUtilityEngineering # Frontier - id: ClothingNeckMantleRD # Frontier - id: ClothingOuterWinterRD # Frontier @@ -359,6 +351,10 @@ - id: HoloprojectorSecurity - id: ClothingNeckMantleHOS # Frontier - id: CrowbarRed # Frontier + - id: NitrogenTankFilled # Frontier + - id: OxygenTankFilled # Frontier + - id: JetpackSecurityFilled # Frontier + - id: HandheldGPSBasic # Frontier - type: entity id: LockerHeadOfSecurityFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml index a2711ec1586..063256879ea 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml @@ -68,6 +68,8 @@ prob: 0.05 orGroup: Surgshrubs - id: ClothingMaskSterile + - id: HandLabeler # Frontier + - id: ClothingBeltMedical # Frontier - type: entity parent: LockerWallMedical @@ -102,6 +104,8 @@ prob: 0.05 orGroup: Surgshrubs - id: ClothingMaskSterile + - id: HandLabeler # Frontier + - id: ClothingBeltMedical # Frontier - type: entity id: LockerChemistryFilled @@ -120,6 +124,10 @@ - id: ClothingHeadsetMedical - id: ClothingMaskSterile - id: HandLabeler + - id: ClothingBeltMedical # Frontier + - id: ClothingEyesGlassesChemical # Frontier + - id: SheetPlasma1 # Frontier + amount: 3 - type: entity id: LockerParamedicFilled @@ -139,3 +147,5 @@ - id: ClothingHeadsetMedical - id: ClothingMaskSterile - id: MedkitFilled + - id: HandLabeler # Frontier + - id: ClothingBeltMedical # Frontier diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index f7179a90f15..cfe9d42f6d1 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -23,6 +23,11 @@ - id: HoloprojectorSecurity - id: ClothingEyesHudSecurity - id: CrowbarRed # Frontier + - id: NitrogenTankFilled # Frontier + - id: OxygenTankFilled # Frontier + - id: ClothingMaskGasSecurity # Frontier + - id: JetpackSecurityFilled # Frontier + - id: HandheldGPSBasic # Frontier - type: entity id: LockerWardenFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml index 7428f8141a8..006320a878c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml @@ -174,6 +174,7 @@ - id: ClothingMaskBreath - id: JetpackSecurityFilled # Frontier - id: HandheldGPSBasic # Frontier +# - id: ClothingShoesBootsMagCombatFilled # Frontier - type: AccessReader access: [["Security"]] @@ -245,6 +246,7 @@ - id: ClothingOuterHardsuitSecurityRed - id: ClothingMaskGasSwat - id: HandheldGPSBasic # Frontier +# - id: ClothingShoesBootsMagCombatFilled # Frontier - type: AccessReader access: [["HeadOfSecurity"]] @@ -262,6 +264,7 @@ - id: ClothingMaskBreath - id: JetpackSecurityFilled # Frontier - id: HandheldGPSBasic # Frontier +# - id: ClothingShoesBootsMagCombatFilled # Frontier - type: AccessReader access: [["Armory"]] @@ -277,7 +280,7 @@ - id: OxygenTankFilled - id: ClothingOuterHardsuitCap - id: ClothingMaskGasCaptain - - id: JetpackCaptainFilled # Frontier + - id: JetpackMiniFilled # Frontier - id: HandheldGPSBasic # Frontier - type: AccessReader # access: [["Captain"]] # Frontier @@ -328,8 +331,11 @@ - id: OxygenTankFilled - id: ClothingOuterHardsuitPirateCap - id: ClothingMaskGas + - id: ClothingNeckCloakPirateCap # Frontier - id: JetpackBlackFilled # Frontier - id: HandheldGPSBasic # Frontier + - id: HandheldGPSBasic # Frontier +# - id: ClothingShoesBootsMagPirateFilled # Frontier - TODO: Add this ones its ready #Wizard - type: entity diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index fc88316ce0d..52c245bc6f1 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -19,36 +19,36 @@ - "You can use the Activate in World keybind, E by default, to interact with objects while your hands are full, or without picking them up." - "Common sense goes a long way to avoiding conflict." - "Every other player in game is a human being as well." - - "When running the Singularity, make sure to check on it periodically. If sabotaged, it could put the entire station at risk." +# - "When running the Singularity, make sure to check on it periodically. If sabotaged, it could put the entire station at risk." - "Chemicals don't react while inside the ChemMaster's buffer." - "You can hold SPACE by default to slow the movement of the shuttle when piloting, to allow for precise movements--or even coming to a complete stop." - "Dexalin, Dexalin Plus, and Epinephrine will all purge Lexorin from your bloodstream while metabolizing." - "Every crewmember comes with an emergency medipen in their survival box containing epinephrine and tranexamic acid." - - "The AME is a high-priority target and is easily sabotaged. Make sure to set up the Singularity or Solars so that you don't run out of power if it blows." +# - "The AME is a high-priority target and is easily sabotaged. Make sure to set up the Singularity or Solars so that you don't run out of power if it blows." - "You can add labels to any item, including food or pill canisters, using a hand labeler." - "Riot armor is significantly more powerful against opponents that aren't using guns compared to regular armor." - "As a ghost, you can use the Verb Menu to orbit around and follow any entity in game automatically." - - "As a Traitor, you may sometimes be assigned to hunt other traitors, and in turn be hunted by others." - - "As a Traitor, the syndicate encryption key can be used to communicate through a secure channel with any other traitors who have purchased it." - - "As a Traitor, compromising important communications channels like security or engineering can give valuable intelligence. Be aware that this goes in both ways - security can compromise syndicate communications as well!" - - "As a Traitor, the syndicate toolbox is extremely versatile. For only 2 telecrystals, you can get a full set of tools to help you in an emergency, insulated combat gloves and a syndicate gas mask." - - "As a Traitor, never underestimate the web vest. It may not provide space protection, but its cheap cost and robust protection makes it handy for protecting against trigger-happy foes." - - "As a Traitor, any purchased grenade penguins won't attack you, and will explode if killed." - - "As a Traitor, remember that power sinks will create a loud sound and alert the crew after running for long enough. Try to hide them in a tricky-to-find spot, or reinforce the area around them so that they're harder to reach." - - "As a Traitor, plasma gas is an an excellent way to create chaos. It can be ignited to make an area extra-uninhabitable, and can cause toxin damage to those that inhale it." - - "As a Nuclear Operative, stick together! While your equipment is robust, your fellow operatives are much better at saving your life: they can drag you away from danger while stunned and provide cover fire." - - "As a Nuclear Operative, communication is key! Use your radio to speak to your fellow operatives and coordinate an attack plan." - - "As a Nuclear Operative, remember that stealth is an option. It'll be hard for the captain to fight back if he gets caught off-gaurd by what he thinks is just a regular passenger!" - - "As an antagonist, be mindful of the power of destroying telecommunications. It'll be a lot harder for people to call you out if they can't do so effectively!" +# - "As a Traitor, you may sometimes be assigned to hunt other traitors, and in turn be hunted by others." +# - "As a Traitor, the syndicate encryption key can be used to communicate through a secure channel with any other traitors who have purchased it." +# - "As a Traitor, compromising important communications channels like security or engineering can give valuable intelligence. Be aware that this goes in both ways - security can compromise syndicate communications as well!" +# - "As a Traitor, the syndicate toolbox is extremely versatile. For only 2 telecrystals, you can get a full set of tools to help you in an emergency, insulated combat gloves and a syndicate gas mask." +# - "As a Traitor, never underestimate the web vest. It may not provide space protection, but its cheap cost and robust protection makes it handy for protecting against trigger-happy foes." +# - "As a Traitor, any purchased grenade penguins won't attack you, and will explode if killed." +# - "As a Traitor, remember that power sinks will create a loud sound and alert the crew after running for long enough. Try to hide them in a tricky-to-find spot, or reinforce the area around them so that they're harder to reach." +# - "As a Traitor, plasma gas is an an excellent way to create chaos. It can be ignited to make an area extra-uninhabitable, and can cause toxin damage to those that inhale it." +# - "As a Nuclear Operative, stick together! While your equipment is robust, your fellow operatives are much better at saving your life: they can drag you away from danger while stunned and provide cover fire." +# - "As a Nuclear Operative, communication is key! Use your radio to speak to your fellow operatives and coordinate an attack plan." +# - "As a Nuclear Operative, remember that stealth is an option. It'll be hard for the captain to fight back if he gets caught off-gaurd by what he thinks is just a regular passenger!" +# - "As an antagonist, be mindful of the power of destroying telecommunications. It'll be a lot harder for people to call you out if they can't do so effectively!" - "You can examine your headset to see which radio channels you have available and how to speak in them." - "As a Salvage Technician, always carry a GPS on you and take note of the station's coordinates in case your salvage is lost to space." - "As a Salvage Technician, you can use your proto-kinetic accelerator to move yourself in space when in a pinch. Just be weary that it isn't very effective." - "As a Salvage Technician, never forget to mine ore! Ore can be sold to cargo for a pretty penny, be used for construction, and also be used by Scientists for fancy technology." - "As a Salvage Technician, try asking science for a tethergun. It can be used to grab items off of salvage wrecks extremely efficiently!" - "As a Salvage Technician, consider cooperating with the Cargo Technicians. They can order you a wide variety of useful items, including ones that may be hard to get otherwise, such laser guns and shuttle building materials." - - "As a Cargo Technician, consider asking science for a Ripley APLU. When paired with a hydraulic clamp, you can grab valuable maintenance objects like fuel tanks much more easily, and make deliveries in a swift manner." - - "As a Cargo Technician, try to maintain a surplus of materials. They are extremely useful for Scientists and Station Engineers to have immediate access to." - - "As a Cargo Technician, remember that you can order guns in an emergency! The extra firepower can often be the difference between you and your fellow crewmembers living or dying." +# - "As a Cargo Technician, consider asking science for a Ripley APLU. When paired with a hydraulic clamp, you can grab valuable maintenance objects like fuel tanks much more easily, and make deliveries in a swift manner." +# - "As a Cargo Technician, try to maintain a surplus of materials. They are extremely useful for Scientists and Station Engineers to have immediate access to." +# - "As a Cargo Technician, remember that you can order guns in an emergency! The extra firepower can often be the difference between you and your fellow crewmembers living or dying." - "As the Bartender, you can use a circular saw on your shotgun to make it easier to store." - "As a Botanist, you can mutate and crossbreed plants together to create more potent produce that also has higher yields." - "As the Clown, spice your gimmicks up! Nobody likes a one-trick pony." @@ -59,14 +59,14 @@ - "As a Security Officer, remember that correlation does not equal causation. Someone may have just been at the wrong place at the wrong time!" - "As a Detective, you can chase criminals more effectively by using fingerprint and fiber data obtained from forensic scans of objects the perpetrator likely interacted with." - "As an Atmospheric Technician, your ATMOS holofan projector blocks gases while allowing objects to pass through. With it, you can quickly contain gas spills, fires and hull breaches." - - "As an Atmospheric Technician, try to resist the temptation of making canister bombs for Nuclear Operatives, unless you're in a last-ditch scenario. They often lead to large amounts of unnessecarry friendly fire!" +# - "As an Atmospheric Technician, try to resist the temptation of making canister bombs for Nuclear Operatives, unless you're in a last-ditch scenario. They often lead to large amounts of unnessecarry friendly fire!" - "As an Engineer, you can repair cracked windows by using a lit welding tool on them while not in combat mode." - "As an Engineer, you can electrify grilles by placing powered cables beneath them." - "As an Engineer, you can use plasma glass to reinforce an area and prevent radiation. Uranium glass can also be used to prevent radiation." - - "As the Captain, you are one of the highest priority targets on the station. Everything from revolutions, to nuclear operatives, to traitors that need to rob you of your unique laser pistol or your life are things to worry about." - - "As the Captain, always take the nuclear disk and pinpointer with you every shift. It's a good idea to give one of these to another head you can trust with keeping it safe." - - "As the Captain, you have absolute access and control over the station, but this does not mean that being a horrible person won't result in mutiny." - - "As the Captain, try to be active and patrol the station. Staying in the bridge might be tempting, but you'll just end up putting a bigger target on your back!" +# - "As the Captain, you are one of the highest priority targets on the station. Everything from revolutions, to nuclear operatives, to traitors that need to rob you of your unique laser pistol or your life are things to worry about." +# - "As the Captain, always take the nuclear disk and pinpointer with you every shift. It's a good idea to give one of these to another head you can trust with keeping it safe." +# - "As the Captain, you have absolute access and control over the station, but this does not mean that being a horrible person won't result in mutiny." +# - "As the Captain, try to be active and patrol the station. Staying in the bridge might be tempting, but you'll just end up putting a bigger target on your back!" - "As a Scientist, you can try random things on an artifact while the scanner is on cooldown to speed up the point extraction process significantly." - "As a Scientist, you can utilize higher tier machine parts to increase the effectiveness of machines. This can make certain machines significantly better; people will love you if you upgrade their lathes!" - "As a Scientist, you can try to guess what a machine upgrade will do based on what part you are upgrading. Matter bins enhance storage capabilities, capacitors increase efficiency, and manipulators enhance power." @@ -78,9 +78,9 @@ - "As a Medical Doctor, Chemist, or Chief Medical Officer, you can use chloral hydrate to non-lethally sedate unruly patients." - "Don't be afraid to ask for help, whether from your peers in character or through LOOC, or from admins!" - "You'll quickly lose your interest in the game if you play to win and kill. If you find yourself doing this, take a step back and talk to people--it's a much better experience!" - - "If there's something you need from another department, try asking! This game isn't singleplayer and you'd be surprised what you can get accomplished together!" - - "The station's self-destruct terminal is invincible. Go find the disk instead of trying to destroy it." - - "Maintenance is full of equipment that is randomized every round. Look around and see if anything is worth using." +# - "If there's something you need from another department, try asking! This game isn't singleplayer and you'd be surprised what you can get accomplished together!" +# - "The station's self-destruct terminal is invincible. Go find the disk instead of trying to destroy it." +# - "Maintenance is full of equipment that is randomized every round. Look around and see if anything is worth using." - "We were all new once, be patient and guide new players, especially those playing intern roles, in the right direction." - "Firesuits and winter coats offer mild protection from the cold, allowing you to spend longer periods of time near breaches and space than if wearing nothing at all." - "In an emergency, you can always rely on firesuits and emergency EVA suits; they will always spawn in their respective lockers. They might be awkward to move around in, but can easily save your life in a dangerous situation." @@ -93,8 +93,8 @@ - "You can put napalm in a backpack water tank to make a flamethrower." - "Some jobs have alternate uniforms in their respective drobe vendors. Don't be afraid to try out a new look!" - "Speed is almost everything in combat. Using hardsuits just for their armor is usually a terrible idea unless the resistances it provides are geared towards combat, or you're not planning to go head-first into the fray." - - "Just because a job can't be a traitor at the beginning of a round doesn't mean that they'll never be a traitor." - - "Syndicate gas masks will both provide welding protection and block flashes. Think twice before trying to flash a Nuclear Operative!" +# - "Just because a job can't be a traitor at the beginning of a round doesn't mean that they'll never be a traitor." +# - "Syndicate gas masks will both provide welding protection and block flashes. Think twice before trying to flash a Nuclear Operative!" - "Demoman takes skill." - "You can spray a fire extinguisher, throw items or fire a gun while floating through space to give yourself a minor boost. Simply fire opposite to where you want to go." - "You can drag other players onto yourself to open the strip menu, allowing you to remove their equipment or force them to wear something. Note that exosuits or helmets will block your access to the clothing beneath them, and that certain items take longer to strip or put on than others." @@ -108,7 +108,7 @@ - "In an emergency, you can butcher a jumpsuit with a sharp object to get cloth, which can be used as a less effective version of gauze." - "You can use sharp objects to butcher clothes or animals in the right click context menu. This includes glass shards." - "Most explosives have an adjustable timer that you can set in the right click menu. This includes grenade penguins!" - - "You can stun grenade penguins, which can bide valuable time for you to kill them." +# - "You can stun grenade penguins, which can bide valuable time for you to kill them." - "You can click on the names of items to pick them up in the right click menu, instead of hovering over the item and then selecting pick up." - "Space Station 14 is open source! If there's a change you want to make, or a simple item you want to add, then try contributing to the game. It's not as hard as you'd think it is." - "In a pinch, you can throw drinks or other reagent containers behind you to create a spill that can slip people chasing you." @@ -117,7 +117,7 @@ - "You can drink blood to heal back some of your blood volume, abliet very inefficiently." - "There is a chemical metabolism limit that limits the amount of reagents of a certain type you can digest at once. Certain species have higher metabolism limits, such as slimes." - "Welding without proper eye protection can cause eye damage, which must be cured with oculine." - - "Zombies are very vunerable to heat damage, making welding tools and laser guns extremely effective against them." +# - "Zombies are very vunerable to heat damage, making welding tools and laser guns extremely effective against them." - "You can weld glass shards into glass sheets." - "By right clicking on a player, and then clicking the heart icon, you can quickly examine them to check for injuries or how badly they're bleeding. You can also do this to yourself." - "Monkeys have a rare chance to be sentient. Ook!" diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml index 945af9e9386..6cb48223470 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/atmospheric_technician.yml @@ -23,7 +23,7 @@ shoes: ClothingShoesColorWhite eyes: ClothingEyesGlassesMeson id: AtmosPDA - belt: ClothingBeltUtilityEngineering +# belt: ClothingBeltUtilityEngineering # Frontier - Moved to locker ears: ClothingHeadsetEngineering innerClothingSkirt: ClothingUniformJumpskirtAtmos satchel: ClothingBackpackSatchelAtmosphericsFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml index ec468298a11..cea5f65aef4 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/chief_engineer.yml @@ -36,7 +36,7 @@ id: CEPDA eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetCE - belt: ClothingBeltUtilityEngineering +# belt: ClothingBeltUtilityEngineering # Frontier - Moved to locker innerClothingSkirt: ClothingUniformJumpskirtChiefEngineer satchel: ClothingBackpackSatchelChiefEngineerFilled duffelbag: ClothingBackpackDuffelChiefEngineerFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml index fe0ef2e2d5f..c77338cef68 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/senior_engineer.yml @@ -31,7 +31,7 @@ shoes: ClothingShoesBootsWork id: SeniorEngineerPDA eyes: ClothingEyesGlassesMeson - belt: ClothingBeltUtilityEngineering +# belt: ClothingBeltUtilityEngineering # Frontier - Moved to locker ears: ClothingHeadsetEngineering innerClothingSkirt: ClothingUniformJumpskirtSeniorEngineer satchel: ClothingBackpackSatchelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml index f9e60108508..649a0b970ba 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/station_engineer.yml @@ -26,7 +26,7 @@ outerClothing: ClothingOuterVestHazard id: EngineerPDA eyes: ClothingEyesGlassesMeson - belt: ClothingBeltUtilityEngineering +# belt: ClothingBeltUtilityEngineering # Frontier - Moved to locker ears: ClothingHeadsetEngineering innerClothingSkirt: ClothingUniformJumpskirtEngineering satchel: ClothingBackpackSatchelEngineeringFilled diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 4a8e91eb173..1a4f126c5a9 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -25,7 +25,7 @@ back: ClothingBackpackEngineeringFilled shoes: ClothingShoesBootsWork id: TechnicalAssistantPDA - belt: ClothingBeltUtilityEngineering +# belt: ClothingBeltUtilityEngineering # Frontier - Moved to locker ears: ClothingHeadsetEngineering innerClothingSkirt: ClothingUniformJumpskirtColorYellow satchel: ClothingBackpackSatchelEngineeringFilled diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/heads.yml new file mode 100644 index 00000000000..8defeded8bd --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/heads.yml @@ -0,0 +1,33 @@ +- type: entity + id: LockerQuarterMasterFilledHardsuit + suffix: Filled, Hardsuit + parent: LockerQuarterMaster + components: + - type: StorageFill + contents: + - id: ClothingNeckCloakQm +# - id: BoxFolderQmClipboard # Frontier - Moved to SR backpack + - id: ClothingHeadsetCargo + - id: ClothingUniformJumpsuitQMTurtleneck + - id: ClothingUniformJumpskirtQMTurtleneck + - id: ClothingHandsGlovesColorBrown + - id: ClothingShoesColorBrown + - id: ClothingHeadHatQMsoft +# - id: CargoRequestComputerCircuitboard # Frontier +# - id: CargoShuttleComputerCircuitboard # Frontier +# - id: CargoShuttleConsoleCircuitboard # Frontier +# - id: SalvageShuttleConsoleCircuitboard # Frontier +# - id: CargoBountyComputerCircuitboard # Frontier + - id: CigPackGreen + prob: 0.50 +# - id: DoorRemoteCargo # Frontier + - id: RubberStampQm + - id: ClothingHeadsetAltCargo + - id: BoxEncryptionKeyCargo + - id: ClothingNeckMantleQM # Frontier + - id: ClothingOuterWinterQM # Frontier + - id: ClothingBeltUtilityEngineering # Frontier + - id: OxygenTankFilled # Frontier + - id: NitrogenTankFilled # Frontier + - id: ClothingMaskGasExplorer # Frontier + - id: ClothingOuterHardsuitLuxury # Frontier diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml new file mode 100644 index 00000000000..7d9c2ffc396 --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/medical.yml @@ -0,0 +1,25 @@ +- type: entity + id: LockerParamedicFilledHardsuit + suffix: Filled, Hardsuit + parent: LockerParamedic + components: + - type: StorageFill + contents: + - id: ClothingHeadHelmetVoidParamed + - id: ClothingOuterHardsuitVoidParamed + - id: ClothingOuterCoatParamedicWB + - id: ClothingHeadHatParamedicsoft + - id: ClothingUniformJumpsuitParamedic + - id: ClothingUniformJumpskirtParamedic + - id: ClothingEyesHudMedical + - id: ClothingHandsGlovesLatex + - id: ClothingHeadsetMedical + - id: ClothingMaskSterile + - id: MedkitFilled + - id: HandLabeler # Frontier + - id: ClothingBeltMedical # Frontier + - id: NitrogenTankFilled # Frontier + - id: OxygenTankFilled # Frontier + - id: ClothingMaskBreathMedical # Frontier + - id: JetpackMiniFilled # Frontier + - id: HandheldGPSBasic # Frontier diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml index a64c01a8b4e..b21fb645e28 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/security.yml @@ -31,6 +31,11 @@ - id: ClothingNeckCloakMoth #bzzz Moth-pocalypse prob: 0.15 - id: CrowbarRed # Frontier + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingMaskBreathMedicalSecurity + - id: JetpackSecurityFilled + - id: HandheldGPSBasic - type: entity id: LockerBrigmedicFilled diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml index 3d0b3690546..d2842ee582a 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml @@ -1,3 +1,22 @@ +#SOFTSUITS +#Paramedic's hardsuit +- type: entity + id: SuitStorageParamedic + parent: SuitStorageBase + suffix: Paramedic + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingHeadHelmetVoidParamed + - id: ClothingOuterHardsuitVoidParamed + - id: ClothingMaskBreathMedical + - id: JetpackMiniFilled + - id: HandheldGPSBasic + - type: AccessReader +# access: [["Medical"]] + #HARDSUITS #Brigmedic's hardsuit - type: entity @@ -13,22 +32,24 @@ - id: ClothingMaskBreathMedicalSecurity - id: JetpackSecurityFilled - id: HandheldGPSBasic +# - id: ClothingShoesBootsMagCombatFilled - type: AccessReader access: [["Security"]] -#Paramedic's hardsuit +#Quartermaster hardsuit - type: entity - id: SuitStorageParamedic + id: SuitStorageQuartermaster parent: SuitStorageBase - suffix: Paramedic + suffix: Quartermaster components: - type: StorageFill contents: - - id: NitrogenTankFilled - - id: OxygenTankFilled - - id: ClothingHeadHelmetVoidParamed - - id: ClothingOuterHardsuitVoidParamed - - id: ClothingMaskBreathMedical - - id: JetpackMiniFilled - - id: HandheldGPSBasic + - id: NitrogenTankFilled + - id: YellowOxygenTankFilled + - id: ClothingShoesBootsMag + - id: ClothingOuterHardsuitLuxury + - id: ClothingMaskGasExplorer + - id: JetpackMiniFilled + - id: HandheldGPSBasic - type: AccessReader + # access: [["Quartermaster"]] diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml index b04447d332e..79b1db4d7e7 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/cryo_sleep_pod.yml @@ -15,7 +15,7 @@ bodyType: Static - type: MaterialStorage - type: Appearance - - type: Climbable +# - type: Climbable - type: CryoSleep - type: ContainerContainer containers: diff --git a/Resources/Prototypes/_NF/Shipyard/bulker.yml b/Resources/Prototypes/_NF/Shipyard/bulker.yml new file mode 100644 index 00000000000..5283966ba27 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/bulker.yml @@ -0,0 +1,28 @@ +- type: vessel + id: Bulker + name: KL Bulker + description: A medium mining vessel designed for deep space missions + price: 34250 #29751 before the +15% (4462) + category: Medium + group: Civilian + shuttlePath: /Maps/Shuttles/bulker.yml + +- type: gameMap + id: Bulker + mapName: 'KL Bulker' + mapPath: /Maps/Shuttles/bulker.yml + minPlayers: 0 + stations: + Bulker: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: '{0} KL Bulker {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Chef: [ 0, 0 ] + SalvageSpecialist: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/decadedove.yml b/Resources/Prototypes/_NF/Shipyard/decadedove.yml new file mode 100644 index 00000000000..1eeac8ef301 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/decadedove.yml @@ -0,0 +1,30 @@ +- type: vessel + id: DecadeDove + name: DYS Dove + description: Versatile expedition-capable multi-purpose light freighter. + price: 70000 + category: Medium + group: Expedition + shuttlePath: /Maps/Shuttles/decadedove.yml + +- type: gameMap + id: DecadeDove + mapName: 'Dove' + mapPath: /Maps/Shuttles/decadedove.yml + minPlayers: 0 + stations: + DecadeDove: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: 'DYS14 Dove {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + StationEngineer: [ 0, 0 ] + SalvageSpecialist: [ 0, 0 ] + Borg: [ 0, 0 ] + diff --git a/Resources/Prototypes/_NF/Shipyard/inquisitor.yml b/Resources/Prototypes/_NF/Shipyard/inquisitor.yml new file mode 100644 index 00000000000..9769b36d6e4 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/inquisitor.yml @@ -0,0 +1,29 @@ +- type: vessel + id: Inquisitor + name: NSF Inquisitor + description: A small detective-oriented ship with two cells for holding prisoners + price: 25170 + category: Small + group: Security + shuttlePath: /Maps/Shuttles/inquisitor.yml + +- type: gameMap + id: Inquisitor + mapName: 'NSF Inquisitor' + mapPath: /Maps/Shuttles/inquisitor.yml + minPlayers: 0 + stations: + Inquisitor: + stationProto: StandardFrontierSecurityVessel + components: + - type: StationNameSetup + mapNameTemplate: 'NSF14 Inquisitor {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + SecurityOfficer: [ 0, 0 ] + Warden: [ 0, 0 ] + Detective: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/liquidator.yml b/Resources/Prototypes/_NF/Shipyard/liquidator.yml new file mode 100644 index 00000000000..9b05b9a72d9 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/liquidator.yml @@ -0,0 +1,29 @@ +- type: vessel + id: liquidator + name: NT Liquidator + description: A small ship equipped with everything you need to make even the dirtiest ship squeaky clean (ducky slippers included). + price: 28500 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/liquidator.yml + +- type: gameMap + id: liquidator + mapName: 'NT Liquidator' + mapPath: /Maps/Shuttles/liquidator.yml + minPlayers: 0 + stations: + liquidator: + stationProto: StandardFrontierExpeditionVessel + components: + - type: StationNameSetup + mapNameTemplate: '{0} Liquidator {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Janitor: [ 0, 0 ] + AtmosphericTechnician: [ 0, 0 ] + Chemist: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/waveshot.yml b/Resources/Prototypes/_NF/Shipyard/waveshot.yml new file mode 100644 index 00000000000..87030e15f35 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/waveshot.yml @@ -0,0 +1,27 @@ +- type: vessel + id: WaveShot + name: NT WaveShot + description: A mobile reporting studio fit for broadcasting the news. + price: 40000 + category: Small + group: Civilian + shuttlePath: /Maps/Shuttles/waveshot.yml + +- type: gameMap + id: WaveShot + mapName: 'NT WaveShot' + mapPath: /Maps/Shuttles/waveshot.yml + minPlayers: 0 + stations: + WaveShot: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: '{0} WaveShot {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Reporter: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/lobbyscreens.yml b/Resources/Prototypes/_NF/lobbyscreens.yml index c906358df10..ac9e56e8fb4 100644 --- a/Resources/Prototypes/_NF/lobbyscreens.yml +++ b/Resources/Prototypes/_NF/lobbyscreens.yml @@ -1,3 +1,7 @@ - type: lobbyBackground id: RisingRed background: /Textures/_NF/LobbyScreens/risingred.png + +- type: lobbyBackground + id: BingGuss + background: /Textures/_NF/LobbyScreens/bingguss.png diff --git a/Resources/Prototypes/lobbyscreens.yml b/Resources/Prototypes/lobbyscreens.yml index 294030c9ff1..c32ca3058f2 100644 --- a/Resources/Prototypes/lobbyscreens.yml +++ b/Resources/Prototypes/lobbyscreens.yml @@ -1,14 +1,14 @@ -#- type: lobbyBackground -# id: Robotics -# background: /Textures/LobbyScreens/robotics.png -# -#- type: lobbyBackground -# id: Supermatter -# background: /Textures/LobbyScreens/supermatter.png +# - type: lobbyBackground + # id: Robotics + # background: /Textures/LobbyScreens/robotics.png -- type: lobbyBackground - id: Warden - background: /Textures/LobbyScreens/warden.png +# - type: lobbyBackground + # id: Supermatter + # background: /Textures/LobbyScreens/supermatter.png + +# - type: lobbyBackground + # id: Warden + # background: /Textures/LobbyScreens/warden.png - type: lobbyBackground id: Pharmacy diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/meta.json b/Resources/Textures/Structures/Machines/techfab.rsi/meta.json index 7530b9322a2..701516a92e2 100644 --- a/Resources/Textures/Structures/Machines/techfab.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/techfab.rsi/meta.json @@ -19,6 +19,9 @@ { "name": "sci" }, + { + "name": "eng" + }, { "name": "engi" }, diff --git a/Resources/Textures/_NF/LobbyScreens/attributuions.yml b/Resources/Textures/_NF/LobbyScreens/attributuions.yml index 70f0d5ef322..0ec822fbcf2 100644 --- a/Resources/Textures/_NF/LobbyScreens/attributuions.yml +++ b/Resources/Textures/_NF/LobbyScreens/attributuions.yml @@ -2,3 +2,8 @@ license: "CC0-1.0" copyright: "stikyt (268746891003428874) on Discord / @sTiKyt on GitHub / @sTiKyt on Telegram" source: "https://github.com/new-frontiers-14/frontier-station-14" + +- files: ["bingguss.png"] + license: "CC0-1.0" + copyright: "gentlebutter (588410099190726656) on Discord" + source: "https://cdn.discordapp.com/attachments/1128094390087340114/1171973024011001936/Lobby-art-frontier_clean.png?ex=655e9fef&is=654c2aef&hm=a9c42fc6f803bc0f8307247520a480a5d59dde5f7b196fff0b9045988e5886d8&" \ No newline at end of file diff --git a/Resources/Textures/_NF/LobbyScreens/bingguss.png b/Resources/Textures/_NF/LobbyScreens/bingguss.png new file mode 100644 index 00000000000..6da88f091c7 Binary files /dev/null and b/Resources/Textures/_NF/LobbyScreens/bingguss.png differ diff --git a/Resources/Textures/_NF/LobbyScreens/bingguss.png.yml b/Resources/Textures/_NF/LobbyScreens/bingguss.png.yml new file mode 100644 index 00000000000..51ff40335ef --- /dev/null +++ b/Resources/Textures/_NF/LobbyScreens/bingguss.png.yml @@ -0,0 +1,2 @@ +sample: + filter: false diff --git a/Resources/Textures/_NF/Structures/Machines/shredder.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/shredder.rsi/meta.json index d068a6d627f..ce77f337927 100644 --- a/Resources/Textures/_NF/Structures/Machines/shredder.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Machines/shredder.rsi/meta.json @@ -13,6 +13,9 @@ { "name": "normal" }, + { + "name": "off" + }, { "name": "shredding-empty", "delays": [ diff --git a/Resources/migration.yml b/Resources/migration.yml index 4a0bc18d2f4..6c2fb582151 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -156,10 +156,14 @@ GeneratorUranium: PortableGeneratorSuperPacman GeneratorPlasmaMachineCircuitboard: PortableGeneratorPacmanMachineCircuitboard GeneratorUraniumMachineCircuitboard: PortableGeneratorSuperPacmanMachineCircuitboard -# 2023-10-09 +# 2023-09-10 ClothingUniformMailCarrier: ClothingUniformJumpsuitMailCarrier ClothingUniformSkirtMailCarrier: ClothingUniformJumpskirtMailCarrier -# 2023-12-09 +# 2023-09-12 # EMP Immune moved to grid based. APCBasicEmpImmune: APCBasic + +# 2023-11-11 +# No need for a copy paste of the locker +LockerResearchDirectorShuttleFilled: LockerResearchDirectorFilled \ No newline at end of file