From 29424f8806a7447760af4be6a78c179cb34ab072 Mon Sep 17 00:00:00 2001 From: Whatstone <166147148+whatston3@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:30:44 -0400 Subject: [PATCH 1/3] STC: Remote consoles for controlling Trade Outpost traffic (#1732) * STC consoles for monitoring the trade outpost * Frontier & Trade map changes * fix trade outpost remote tabletop ID * Fix trade station remote console * Local: intercom, traffic key, remote: no * Trade station: firelock, techmaint2 * Remove TechMaint from tile list (unused) * ungoof decal rotation, door * Trade Station STC fax machine * Fix up Frontier map * Block STC consoles' use/intercom without STC ID * Traffic: push access reader, UI reqs into parent * Remove unneeded comments * reduce shuttle tabletop spam with anchors * Shuttle intercom: remove support for multiple keys * shuttle computer: 2 key slots, locked keys * ID fix * indestructable computers (ID card, criminal rcrds) --------- Co-authored-by: Dvir <39403717+dvir001@users.noreply.github.com> Co-authored-by: Dvir --- .../Radio/EntitySystems/RadioDeviceSystem.cs | 8 + .../Shuttles/Systems/ShuttleConsoleSystem.cs | 7 + .../_NF/Shuttles/NFDroneConsoleComponent.cs | 17 + .../Shuttles/NFDroneConsoleTargetComponent.cs | 11 + .../Systems/ShuttleConsoleSystem.NFDrone.cs | 69 + Resources/Maps/_NF/Outpost/frontier.yml | 125 +- Resources/Maps/_NF/POI/trade.yml | 2844 ++++++++--------- .../Devices/Circuitboards/computer.yml | 4 +- .../Machines/Computers/computers.yml | 27 +- .../Storage/Closets/Lockers/lockers.yml | 4 +- .../Machines/Computers/computers.yml | 101 +- .../Machines/Computers/computers_tabletop.yml | 59 +- .../Structures/Machines/fax_machine.yml | 9 + .../Structures/Wallmounts/intercom.yml | 1 + 14 files changed, 1674 insertions(+), 1612 deletions(-) create mode 100644 Content.Server/_NF/Shuttles/NFDroneConsoleComponent.cs create mode 100644 Content.Server/_NF/Shuttles/NFDroneConsoleTargetComponent.cs create mode 100644 Content.Server/_NF/Shuttles/Systems/ShuttleConsoleSystem.NFDrone.cs diff --git a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs index 1f67ed5b830..b2b3bb918c4 100644 --- a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs @@ -15,6 +15,7 @@ using Content.Shared._NC.Radio; // Nuclear-14 using Robust.Server.GameObjects; // Nuclear-14 using Robust.Shared.Prototypes; +using Content.Shared.Access.Systems; // Frontier namespace Content.Server.Radio.EntitySystems; @@ -30,6 +31,7 @@ public sealed class RadioDeviceSystem : EntitySystem [Dependency] private readonly InteractionSystem _interaction = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; + [Dependency] private readonly AccessReaderSystem _access = default!; // Frontier: access // Used to prevent a shitter from using a bunch of radios to spam chat. private HashSet<(string, EntityUid)> _recentlySent = new(); @@ -250,6 +252,8 @@ private void OnToggleIntercomMic(Entity ent, ref ToggleInterc { if (ent.Comp.RequiresPower && !this.IsPowered(ent, EntityManager)) return; + if (!_access.IsAllowed(args.Actor, ent.Owner)) // Frontier + return; // Frontier SetMicrophoneEnabled(ent, args.Actor, args.Enabled, true); ent.Comp.MicrophoneEnabled = args.Enabled; @@ -260,6 +264,8 @@ private void OnToggleIntercomSpeaker(Entity ent, ref ToggleIn { if (ent.Comp.RequiresPower && !this.IsPowered(ent, EntityManager)) return; + if (!_access.IsAllowed(args.Actor, ent.Owner)) // Frontier + return; // Frontier SetSpeakerEnabled(ent, args.Actor, args.Enabled, true); ent.Comp.SpeakerEnabled = args.Enabled; @@ -270,6 +276,8 @@ private void OnSelectIntercomChannel(Entity ent, ref SelectIn { if (ent.Comp.RequiresPower && !this.IsPowered(ent, EntityManager)) return; + if (!_access.IsAllowed(args.Actor, ent.Owner)) // Frontier + return; // Frontier if (!_protoMan.TryIndex(args.Channel, out var channel) || !ent.Comp.SupportedChannels.Contains(args.Channel)) // Nuclear-14: add channel return; diff --git a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs index e3790d6954f..753a834cf7e 100644 --- a/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs +++ b/Content.Server/Shuttles/Systems/ShuttleConsoleSystem.cs @@ -21,6 +21,7 @@ using Robust.Shared.Map; using Robust.Shared.Utility; using Content.Shared.UserInterface; +using Content.Shared.Access.Systems; // Frontier namespace Content.Server.Shuttles.Systems; @@ -37,6 +38,7 @@ public sealed partial class ShuttleConsoleSystem : SharedShuttleConsoleSystem [Dependency] private readonly TagSystem _tags = default!; [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly SharedContentEyeSystem _eyeSystem = default!; + [Dependency] private readonly AccessReaderSystem _access = default!; private EntityQuery _metaQuery; private EntityQuery _xformQuery; @@ -78,6 +80,8 @@ public override void Initialize() SubscribeLocalEvent(OnFtlDestShutdown); InitializeFTL(); + + InitializeNFDrone(); // Frontier: add our drone subscriptions } private void OnFtlDestStartup(EntityUid uid, FTLDestinationComponent component, ComponentStartup args) @@ -178,6 +182,9 @@ private bool TryPilot(EntityUid user, EntityUid uid) return false; } + if (!_access.IsAllowed(user, uid)) // Frontier: check access + return false; // Frontier + var pilotComponent = EnsureComp(user); var console = pilotComponent.Console; diff --git a/Content.Server/_NF/Shuttles/NFDroneConsoleComponent.cs b/Content.Server/_NF/Shuttles/NFDroneConsoleComponent.cs new file mode 100644 index 00000000000..81efc7105bb --- /dev/null +++ b/Content.Server/_NF/Shuttles/NFDroneConsoleComponent.cs @@ -0,0 +1,17 @@ +namespace Content.Server.Shuttles.Components; + +/// +/// Lets you remotely control a shuttle. +/// +[RegisterComponent] +public sealed partial class NFDroneConsoleComponent : Component +{ + [DataField(required: true)] + public string Id = default!; + + /// + /// that we're proxied into. + /// + [DataField] + public EntityUid? Entity; +} diff --git a/Content.Server/_NF/Shuttles/NFDroneConsoleTargetComponent.cs b/Content.Server/_NF/Shuttles/NFDroneConsoleTargetComponent.cs new file mode 100644 index 00000000000..3abe9b36971 --- /dev/null +++ b/Content.Server/_NF/Shuttles/NFDroneConsoleTargetComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.Shuttles; + +/// +/// Lets you remotely control a shuttle. +/// +[RegisterComponent] +public sealed partial class NFDroneConsoleTargetComponent : Component +{ + [DataField(required: true)] + public string Id = default!; +} diff --git a/Content.Server/_NF/Shuttles/Systems/ShuttleConsoleSystem.NFDrone.cs b/Content.Server/_NF/Shuttles/Systems/ShuttleConsoleSystem.NFDrone.cs new file mode 100644 index 00000000000..b5aa13142f0 --- /dev/null +++ b/Content.Server/_NF/Shuttles/Systems/ShuttleConsoleSystem.NFDrone.cs @@ -0,0 +1,69 @@ +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; +using Content.Shared.UserInterface; +using Content.Shared.Shuttles.Components; + +namespace Content.Server.Shuttles.Systems; + +public sealed partial class ShuttleConsoleSystem +{ + public void InitializeNFDrone() + { + SubscribeLocalEvent(OnNFCargoGetConsole); + SubscribeLocalEvent(OnNFDronePilotConsoleOpen); + Subs.BuiEvents(ShuttleConsoleUiKey.Key, subs => + { + subs.Event(OnNFDronePilotConsoleClose); + }); + } + + /// + /// Gets the drone console target if applicable otherwise returns itself. + /// + public EntityUid? GetNFDroneConsole(EntityUid consoleUid) + { + var getShuttleEv = new ConsoleShuttleEvent + { + Console = consoleUid, + }; + + RaiseLocalEvent(consoleUid, ref getShuttleEv); + return getShuttleEv.Console; + } + + private void OnNFDronePilotConsoleOpen(EntityUid uid, NFDroneConsoleComponent component, AfterActivatableUIOpenEvent args) + { + component.Entity = GetNFShuttleConsole(uid); + } + + private void OnNFDronePilotConsoleClose(EntityUid uid, NFDroneConsoleComponent component, BoundUIClosedEvent args) + { + // Only if last person closed UI. + if (!_ui.IsUiOpen(uid, args.UiKey)) + component.Entity = null; + } + + private void OnNFCargoGetConsole(EntityUid uid, NFDroneConsoleComponent component, ref ConsoleShuttleEvent args) + { + args.Console = GetNFShuttleConsole(uid, component); + } + + /// + /// Gets the relevant shuttle console to proxy from the drone console. + /// + private EntityUid? GetNFShuttleConsole(EntityUid uid, NFDroneConsoleComponent? sourceComp = null) + { + if (!Resolve(uid, ref sourceComp)) + return null; + + var query = AllEntityQuery(); + + while (query.MoveNext(out var cUid, out _, out var targetComp)) + { + if (sourceComp.Id == targetComp.Id) + return cUid; + } + + return null; + } +} diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml index 1c8d7d9c780..1db3b814461 100644 --- a/Resources/Maps/_NF/Outpost/frontier.yml +++ b/Resources/Maps/_NF/Outpost/frontier.yml @@ -43,7 +43,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: agAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABawAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAACawAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABawAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABHgAAAAADHgAAAAABLgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABLgAAAAADHgAAAAABLgAAAAADHgAAAAABLgAAAAABHgAAAAACHgAAAAABXAAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACLgAAAAADHgAAAAAALgAAAAABHgAAAAABLgAAAAABHgAAAAABHgAAAAABaAAAAAAAaAAAAAAAHgAAAAAALgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABfQAAAAAAXAAAAAADHgAAAAACLgAAAAADHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAACLgAAAAACLgAAAAACHgAAAAACXAAAAAADawAAAAAAHgAAAAACHgAAAAAAHgAAAAABawAAAAAAHgAAAAACHgAAAAAAHgAAAAACawAAAAAAHgAAAAABHgAAAAAALgAAAAABHgAAAAACHgAAAAACLgAAAAAB + tiles: agAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAACawAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABawAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAAAXAAAAAADXAAAAAACawAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAABawAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAADawAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAHgAAAAADHgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABHgAAAAADHgAAAAABLgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABLgAAAAADHgAAAAABLgAAAAADHgAAAAABLgAAAAABHgAAAAACLgAAAAAAXAAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACLgAAAAADHgAAAAAALgAAAAABHgAAAAABLgAAAAABHgAAAAABLgAAAAABaAAAAAAAaAAAAAAAHgAAAAAALgAAAAAAHgAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADXAAAAAAAaAAAAAAAHgAAAAAAHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABfQAAAAAAXAAAAAADHgAAAAACLgAAAAADHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAABHgAAAAADHgAAAAACLgAAAAACLgAAAAACHgAAAAACXAAAAAADawAAAAAAHgAAAAACHgAAAAAAHgAAAAABawAAAAAAHgAAAAACHgAAAAAAHgAAAAACawAAAAAAHgAAAAABHgAAAAAALgAAAAABHgAAAAACHgAAAAACLgAAAAAB version: 6 -1,0: ind: -1,0 @@ -266,7 +266,6 @@ entities: 259: 9,11 260: 9,10 261: 11,11 - 262: 11,10 263: 13,11 264: 13,10 265: 12,15 @@ -281,6 +280,9 @@ entities: 2031: -5,12 2032: -5,14 2033: -5,17 + 2492: 11,10 + 2494: 15,10 + 2495: 15,11 - node: cleanable: True color: '#FFFFFFFF' @@ -776,6 +778,12 @@ entities: 256: 6,18 257: 7,18 258: 8,18 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 2474: 14,12 + 2475: 15,12 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -827,6 +835,12 @@ entities: id: BrickTileWhiteLineW decals: 2402: 16,15 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 2472: 14,10 + 2473: 14,11 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -1348,9 +1362,6 @@ entities: 1757: 16,15 1758: 17,14 1759: 16,11 - 1760: 15,10 - 1761: 15,10 - 1762: 15,11 1763: 16,10 1764: 17,11 1765: 17,11 @@ -1816,6 +1827,7 @@ entities: 2391: 0,21 2440: -37,12 2441: -38,12 + 2493: 11,10 - node: cleanable: True zIndex: 180 @@ -2234,8 +2246,6 @@ entities: 1777: 17,15 1778: 17,16 1779: 17,13 - 1780: 15,11 - 1781: 15,10 1782: 14,10 1783: 7,15 1784: 8,16 @@ -2306,6 +2316,8 @@ entities: 2348: 40,10 2349: 37,11 2439: -35,12 + 2496: 15,10 + 2497: 15,11 - node: cleanable: True zIndex: 180 @@ -3966,12 +3978,12 @@ entities: id: Frontier - type: StationTransit - type: ProtectedGrid - preventFloorRemoval: true - preventFloorPlacement: true - preventRCDUse: true - preventEmpEvents: true - preventExplosions: true - preventArtifactTriggers: true + preventArtifactTriggers: True + preventExplosions: True + preventEmpEvents: True + preventRCDUse: True + preventFloorPlacement: True + preventFloorRemoval: True - type: SpreaderGrid - type: IFF readOnly: True @@ -4358,6 +4370,11 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,15.5 parent: 2173 + - uid: 2550 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2173 - uid: 3955 components: - type: Transform @@ -4435,13 +4452,6 @@ entities: rot: 3.141592653589793 rad pos: -39.5,7.5 parent: 2173 -- proto: AirlockFrontierCommandGlassLocked - entities: - - uid: 2550 - components: - - type: Transform - pos: 7.5,17.5 - parent: 2173 - proto: AirlockGlass entities: - uid: 529 @@ -14115,6 +14125,18 @@ entities: parent: 2173 - proto: ChairOfficeDark entities: + - uid: 2129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2173 + - uid: 2130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2173 - uid: 2151 components: - type: Transform @@ -14508,6 +14530,14 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,22.5 parent: 2173 +- proto: ComputerTabletopAlert + entities: + - uid: 2128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2173 - proto: ComputerTabletopCargoOrders entities: - uid: 2832 @@ -14518,11 +14548,10 @@ entities: parent: 2173 - proto: ComputerTabletopComms entities: - - uid: 816 + - uid: 815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,15.5 + pos: 14.5,16.5 parent: 2173 - proto: ComputerTabletopCrewMonitoring entities: @@ -14588,19 +14617,28 @@ entities: - type: Transform pos: -0.5,4.5 parent: 2173 -- proto: ComputerTabletopShuttle +- proto: ComputerTabletopShuttleFrontierOutpostLocal entities: - uid: 814 components: - type: Transform pos: 13.5,16.5 parent: 2173 +- proto: ComputerTabletopShuttleTradeOutpostRemote + entities: + - uid: 731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2173 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 815 + - uid: 816 components: - type: Transform - pos: 14.5,16.5 + rot: -1.5707963267948966 rad + pos: 15.5,15.5 parent: 2173 - uid: 2764 components: @@ -14610,11 +14648,11 @@ entities: parent: 2173 - proto: ComputerTabletopSurveillanceWirelessCameraMonitor entities: - - uid: 731 + - uid: 2127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,15.5 + rot: 1.5707963267948966 rad + pos: 14.5,10.5 parent: 2173 - proto: ComputerTelevision entities: @@ -33014,6 +33052,16 @@ entities: - type: Transform pos: 6.5,18.5 parent: 2173 + - uid: 2125 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2173 + - uid: 2126 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2173 - uid: 2410 components: - type: Transform @@ -33292,7 +33340,7 @@ entities: pos: 51.5,9.5 parent: 2173 - type: DisableToolUse - anchoring: true + anchoring: True - proto: TwoWayLever entities: - uid: 6145 @@ -37251,6 +37299,23 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,16.5 parent: 2173 + - uid: 2122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2173 + - uid: 2123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2173 + - uid: 2124 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2173 - uid: 2563 components: - type: Transform diff --git a/Resources/Maps/_NF/POI/trade.yml b/Resources/Maps/_NF/POI/trade.yml index daf56a1f21e..3255b630b3d 100644 --- a/Resources/Maps/_NF/POI/trade.yml +++ b/Resources/Maps/_NF/POI/trade.yml @@ -51,7 +51,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAADAQAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAABBgAAAAAAAgAAAAAADQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAIAwAAAAAEAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAEAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAADBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAHAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAADAQAAAAACBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAABBgAAAAAAAgAAAAAADQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAIAwAAAAAEAwAAAAAAAwAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 0,-1: ind: 0,-1 @@ -87,7 +87,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: AQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAABQAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAFAwAAAAAAAwAAAAALAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAALAwAAAAAAAwAAAAAEAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAAABgAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAABAgAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAABgAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAwAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAABBgAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAACAQAAAAACAQAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAKAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAwAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAADAQAAAAADAQAAAAAAAgAAAAAA + tiles: AQAAAAAAAQAAAAABAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAABQAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAFAwAAAAAAAwAAAAALAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAALAwAAAAAAAwAAAAAEAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAAABgAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAABAgAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAAABgAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAADAwAAAAAAAQAAAAADAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAABBgAAAAAAAQAAAAADAQAAAAADAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAACAQAAAAACAQAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAKAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAwAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAADAQAAAAADAQAAAAAAAgAAAAAA version: 6 1,-2: ind: 1,-2 @@ -187,148 +187,148 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 474: 48,11 - 475: 49,11 - 476: 50,11 - 477: 51,11 - 478: 52,11 - 479: 49,9 - 480: 50,9 - 481: 51,9 - 482: 61,9 - 483: 62,9 - 484: 63,9 - 485: 60,11 - 486: 61,11 - 487: 62,11 - 488: 63,11 - 489: 64,11 - 1072: -27,8 - 1073: -27,9 - 1125: 8,-21 - 1126: 7,-21 - 1127: 83,-8 - 1128: 83,-7 - 1129: 63,24 - 1130: 62,24 + 473: 48,11 + 474: 49,11 + 475: 50,11 + 476: 51,11 + 477: 52,11 + 478: 49,9 + 479: 50,9 + 480: 51,9 + 481: 61,9 + 482: 62,9 + 483: 63,9 + 484: 60,11 + 485: 61,11 + 486: 62,11 + 487: 63,11 + 488: 64,11 + 1071: -27,8 + 1072: -27,9 + 1124: 8,-21 + 1125: 7,-21 + 1126: 83,-8 + 1127: 83,-7 + 1128: 63,24 + 1129: 62,24 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 490: 49,4 - 491: 50,4 - 492: 51,4 - 493: 61,4 - 494: 60,4 - 495: 59,4 + 489: 49,4 + 490: 50,4 + 491: 51,4 + 492: 61,4 + 493: 60,4 + 494: 59,4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 215: 76,-10 - 301: -3,-14 - 325: -10,13 - 443: 64,20 - 465: 59,25 - 509: 79,7 - 510: 84,2 - 631: 22,-16 - 667: -22,10 + 300: -3,-14 + 324: -10,13 + 442: 64,20 + 464: 59,25 + 508: 79,7 + 509: 84,2 + 630: 22,-16 + 666: -22,10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 245: 28,2 - 452: 48,20 - 460: 53,25 - 511: 78,7 - 630: 6,-16 - 662: -28,5 - 663: -23,10 + 451: 48,20 + 459: 53,25 + 510: 78,7 + 629: 6,-16 + 661: -28,5 + 662: -23,10 + 1214: 28,2 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 253: 30,-8 - 442: 64,19 - 512: 79,-9 - 513: 84,-4 - 628: 17,-22 - 629: 22,-17 - 664: -22,-6 + 252: 30,-8 + 441: 64,19 + 511: 79,-9 + 512: 84,-4 + 627: 17,-22 + 628: 22,-17 + 663: -22,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 291: -12,-8 - 292: -8,-15 - 366: -16,11 - 453: 48,19 - 514: 78,-9 - 626: 11,-22 - 627: 6,-17 - 665: -28,-1 - 666: -23,-6 + 290: -12,-8 + 291: -8,-15 + 365: -16,11 + 452: 48,19 + 513: 78,-9 + 625: 11,-22 + 626: 6,-17 + 664: -28,-1 + 665: -23,-6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 138: 57,0 234: 57,-10 - 286: 13,-6 - 309: -6,-14 - 367: -14,13 - 455: 59,20 - 471: 57,25 - 515: 79,2 - 516: 84,0 - 621: 15,-16 - 673: -22,3 + 285: 13,-6 + 308: -6,-14 + 366: -14,13 + 454: 59,20 + 470: 57,25 + 514: 79,2 + 515: 84,0 + 620: 15,-16 + 672: -22,3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 139: 55,2 - 254: 28,-6 - 287: 11,-6 - 370: -12,3 - 454: 53,20 - 470: 55,25 - 519: 78,0 - 620: 13,-16 - 668: -23,5 - 669: -28,3 + 253: 28,-6 + 286: 11,-6 + 369: -12,3 + 453: 53,20 + 469: 55,25 + 518: 78,0 + 619: 13,-16 + 667: -23,5 + 668: -28,3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 140: 57,-2 235: 57,-12 - 285: 15,-8 - 289: -6,-8 - 517: 79,-4 - 518: 84,-2 - 622: 15,-22 - 623: 17,-17 - 672: -22,1 - 674: 57,19 - 963: 30,0 + 284: 15,-8 + 288: -6,-8 + 516: 79,-4 + 517: 84,-2 + 621: 15,-22 + 622: 17,-17 + 671: -22,1 + 673: 57,19 + 962: 30,0 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 284: 13,-8 - 290: -8,-8 - 308: -4,-15 - 368: -12,11 - 369: -12,1 - 624: 13,-22 - 625: 11,-17 - 670: -28,1 - 671: -23,-1 - 675: 55,19 - 1003: 74,-12 - 1149: 78,-2 + 283: 13,-8 + 289: -8,-8 + 307: -4,-15 + 367: -12,11 + 368: -12,1 + 623: 13,-22 + 624: 11,-17 + 669: -28,1 + 670: -23,-1 + 674: 55,19 + 1002: 74,-12 + 1148: 78,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -367,78 +367,78 @@ entities: 226: 76,-22 227: 57,-13 228: 57,-9 - 246: 30,-1 - 247: 30,-2 - 248: 30,-3 - 249: 30,-4 - 250: 30,-5 - 251: 30,-6 - 252: 30,-7 - 274: 15,-10 - 275: 15,-11 - 276: 15,-12 - 277: 15,-13 - 278: 15,-14 - 293: -3,-15 - 302: -10,-5 - 303: -6,-13 - 304: -6,-12 - 305: -6,-11 - 306: -6,-10 - 310: -10,-4 - 311: -10,-3 - 312: -10,-2 - 313: -10,0 - 314: -10,1 - 315: -10,2 - 316: -10,3 - 317: -10,4 - 318: -10,5 - 319: -10,7 - 320: -10,8 - 321: -10,9 - 322: -10,10 - 323: -10,11 - 324: -10,12 - 357: -14,24 - 358: -14,22 - 359: -14,21 - 360: -14,20 - 361: -14,18 - 362: -14,19 - 363: -14,17 - 364: -14,16 - 365: -14,15 - 461: 59,24 - 462: 59,23 - 463: 59,22 - 464: 59,21 - 528: 79,3 - 529: 79,4 - 530: 79,5 - 531: 79,6 - 532: 84,1 - 533: 84,-3 - 534: 79,-5 - 535: 79,-6 - 536: 79,-7 - 537: 79,-8 - 616: 17,-21 - 617: 17,-20 - 618: 17,-19 - 619: 17,-18 - 650: -22,9 - 651: -22,8 - 652: -22,7 - 653: -22,6 - 654: -22,5 - 655: -22,4 - 656: -22,0 - 657: -22,-1 - 658: -22,-2 - 659: -22,-3 - 660: -22,-4 - 661: -22,-5 + 245: 30,-1 + 246: 30,-2 + 247: 30,-3 + 248: 30,-4 + 249: 30,-5 + 250: 30,-6 + 251: 30,-7 + 273: 15,-10 + 274: 15,-11 + 275: 15,-12 + 276: 15,-13 + 277: 15,-14 + 292: -3,-15 + 301: -10,-5 + 302: -6,-13 + 303: -6,-12 + 304: -6,-11 + 305: -6,-10 + 309: -10,-4 + 310: -10,-3 + 311: -10,-2 + 312: -10,0 + 313: -10,1 + 314: -10,2 + 315: -10,3 + 316: -10,4 + 317: -10,5 + 318: -10,7 + 319: -10,8 + 320: -10,9 + 321: -10,10 + 322: -10,11 + 323: -10,12 + 356: -14,24 + 357: -14,22 + 358: -14,21 + 359: -14,20 + 360: -14,18 + 361: -14,19 + 362: -14,17 + 363: -14,16 + 364: -14,15 + 460: 59,24 + 461: 59,23 + 462: 59,22 + 463: 59,21 + 527: 79,3 + 528: 79,4 + 529: 79,5 + 530: 79,6 + 531: 84,1 + 532: 84,-3 + 533: 79,-5 + 534: 79,-6 + 535: 79,-7 + 536: 79,-8 + 615: 17,-21 + 616: 17,-20 + 617: 17,-19 + 618: 17,-18 + 649: -22,9 + 650: -22,8 + 651: -22,7 + 652: -22,6 + 653: -22,5 + 654: -22,4 + 655: -22,0 + 656: -22,-1 + 657: -22,-2 + 658: -22,-3 + 659: -22,-4 + 660: -22,-5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -502,67 +502,67 @@ entities: 214: 75,-10 243: 29,2 244: 30,2 - 255: 27,-6 - 256: 26,-6 - 257: 25,-6 - 258: 24,-6 - 259: 22,-6 - 260: 21,-6 - 261: 20,-6 - 262: 19,-6 - 263: 18,-6 - 264: 17,-6 - 265: 16,-6 - 266: 15,-6 - 267: 14,-6 - 268: 10,-6 - 269: 9,-6 - 270: 8,-6 - 271: 7,-6 - 272: 6,-6 - 273: 5,-6 - 288: 3,-6 - 294: -4,-14 - 326: -11,13 - 327: -12,13 - 328: -13,13 - 377: -20,3 - 378: -19,3 - 379: -18,3 - 380: -16,3 - 381: -17,3 - 382: -15,3 - 383: -14,3 - 444: 63,20 - 445: 62,20 - 446: 61,20 - 447: 60,20 - 448: 52,20 - 449: 51,20 - 450: 50,20 - 451: 49,20 - 472: 54,25 - 473: 58,25 - 524: 83,2 - 525: 82,2 - 526: 81,2 - 527: 80,2 - 604: 7,-16 - 605: 8,-16 - 606: 9,-16 - 607: 10,-16 - 608: 11,-16 - 609: 12,-16 - 610: 16,-16 - 611: 17,-16 - 612: 18,-16 - 613: 19,-16 - 614: 20,-16 - 615: 21,-16 - 646: -24,5 - 647: -25,5 - 648: -26,5 - 649: -27,5 + 254: 27,-6 + 255: 26,-6 + 256: 25,-6 + 257: 24,-6 + 258: 22,-6 + 259: 21,-6 + 260: 20,-6 + 261: 19,-6 + 262: 18,-6 + 263: 17,-6 + 264: 16,-6 + 265: 15,-6 + 266: 14,-6 + 267: 10,-6 + 268: 9,-6 + 269: 8,-6 + 270: 7,-6 + 271: 6,-6 + 272: 5,-6 + 287: 3,-6 + 293: -4,-14 + 325: -11,13 + 326: -12,13 + 327: -13,13 + 376: -20,3 + 377: -19,3 + 378: -18,3 + 379: -16,3 + 380: -17,3 + 381: -15,3 + 382: -14,3 + 443: 63,20 + 444: 62,20 + 445: 61,20 + 446: 60,20 + 447: 52,20 + 448: 51,20 + 449: 50,20 + 450: 49,20 + 471: 54,25 + 472: 58,25 + 523: 83,2 + 524: 82,2 + 525: 81,2 + 526: 80,2 + 603: 7,-16 + 604: 8,-16 + 605: 9,-16 + 606: 10,-16 + 607: 11,-16 + 608: 12,-16 + 609: 16,-16 + 610: 17,-16 + 611: 18,-16 + 612: 19,-16 + 613: 20,-16 + 614: 21,-16 + 645: -24,5 + 646: -25,5 + 647: -26,5 + 648: -27,5 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -649,48 +649,48 @@ entities: 194: 60,-12 195: 59,-12 196: 58,-12 - 295: -6,-15 - 296: -7,-15 - 329: -15,11 - 330: -14,11 - 331: -13,11 - 371: -14,1 - 372: -15,1 - 373: -17,1 - 374: -18,1 - 375: -19,1 - 376: -20,1 - 430: 54,19 - 431: 53,19 - 432: 52,19 - 433: 51,19 - 434: 50,19 - 435: 49,19 - 436: 58,19 - 437: 59,19 - 438: 60,19 - 439: 61,19 - 440: 62,19 - 441: 63,19 - 520: 80,-4 - 521: 81,-4 - 522: 82,-4 - 523: 83,-4 - 594: 12,-22 - 595: 16,-22 - 596: 18,-17 - 597: 19,-17 - 598: 21,-17 - 599: 20,-17 - 600: 7,-17 - 601: 8,-17 - 602: 9,-17 - 603: 10,-17 - 642: -27,-1 - 643: -26,-1 - 644: -25,-1 - 645: -24,-1 - 1070: -16,1 + 294: -6,-15 + 295: -7,-15 + 328: -15,11 + 329: -14,11 + 330: -13,11 + 370: -14,1 + 371: -15,1 + 372: -17,1 + 373: -18,1 + 374: -19,1 + 375: -20,1 + 429: 54,19 + 430: 53,19 + 431: 52,19 + 432: 51,19 + 433: 50,19 + 434: 49,19 + 435: 58,19 + 436: 59,19 + 437: 60,19 + 438: 61,19 + 439: 62,19 + 440: 63,19 + 519: 80,-4 + 520: 81,-4 + 521: 82,-4 + 522: 83,-4 + 593: 12,-22 + 594: 16,-22 + 595: 18,-17 + 596: 19,-17 + 597: 21,-17 + 598: 20,-17 + 599: 7,-17 + 600: 8,-17 + 601: 9,-17 + 602: 10,-17 + 641: -27,-1 + 642: -26,-1 + 643: -25,-1 + 644: -24,-1 + 1069: -16,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -729,381 +729,423 @@ entities: 240: 28,-1 241: 28,0 242: 28,1 - 279: 13,-10 - 280: 13,-11 - 281: 13,-12 - 282: 13,-13 - 283: 13,-14 - 297: -8,-14 - 298: -8,-13 - 299: -8,-12 - 300: -8,-10 - 307: -8,-11 - 332: -16,12 - 333: -16,13 - 334: -12,10 - 335: -12,9 - 336: -12,8 - 337: -12,7 - 338: -12,6 - 339: -12,5 - 340: -12,4 - 341: -12,0 - 342: -12,-2 - 343: -12,-3 - 344: -12,-4 - 345: -12,-5 - 346: -12,-6 - 347: -12,-7 - 348: -16,15 - 349: -16,16 - 350: -16,17 - 351: -16,18 - 352: -16,19 - 353: -16,20 - 354: -16,21 - 355: -16,22 - 356: -16,24 - 456: 53,21 - 457: 53,22 - 458: 53,23 - 459: 53,24 - 496: 55,3 - 497: 78,1 - 498: 78,2 - 499: 78,3 - 500: 78,4 - 501: 78,5 - 502: 78,6 - 503: 78,-3 - 504: 78,-4 - 505: 78,-5 - 506: 78,-6 - 507: 78,-7 - 508: 78,-8 - 590: 11,-21 - 591: 11,-20 - 592: 11,-19 - 593: 11,-18 - 632: -28,0 - 633: -28,4 - 634: -23,6 - 635: -23,7 - 636: -23,8 - 637: -23,9 - 638: -23,-2 - 639: -23,-3 - 640: -23,-4 - 641: -23,-5 + 278: 13,-10 + 279: 13,-11 + 280: 13,-12 + 281: 13,-13 + 282: 13,-14 + 296: -8,-14 + 297: -8,-13 + 298: -8,-12 + 299: -8,-10 + 306: -8,-11 + 331: -16,12 + 332: -16,13 + 333: -12,10 + 334: -12,9 + 335: -12,8 + 336: -12,7 + 337: -12,6 + 338: -12,5 + 339: -12,4 + 340: -12,0 + 341: -12,-2 + 342: -12,-3 + 343: -12,-4 + 344: -12,-5 + 345: -12,-6 + 346: -12,-7 + 347: -16,15 + 348: -16,16 + 349: -16,17 + 350: -16,18 + 351: -16,19 + 352: -16,20 + 353: -16,21 + 354: -16,22 + 355: -16,24 + 455: 53,21 + 456: 53,22 + 457: 53,23 + 458: 53,24 + 495: 55,3 + 496: 78,1 + 497: 78,2 + 498: 78,3 + 499: 78,4 + 500: 78,5 + 501: 78,6 + 502: 78,-3 + 503: 78,-4 + 504: 78,-5 + 505: 78,-6 + 506: 78,-7 + 507: 78,-8 + 589: 11,-21 + 590: 11,-20 + 591: 11,-19 + 592: 11,-18 + 631: -28,0 + 632: -28,4 + 633: -23,6 + 634: -23,7 + 635: -23,8 + 636: -23,9 + 637: -23,-2 + 638: -23,-3 + 639: -23,-4 + 640: -23,-5 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 548: -3,-14 + 547: -3,-14 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSw decals: - 550: -4,-15 + 549: -4,-15 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 468: 57,27 - 469: 57,28 - 543: 76,-22 - 544: 15,-24 - 545: 15,-25 - 549: -3,-15 - 557: -14,24 + 467: 57,27 + 468: 57,28 + 542: 76,-22 + 543: 15,-24 + 544: 15,-25 + 548: -3,-15 + 556: -14,24 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 538: 86,0 - 539: 87,0 - 551: -4,-14 - 552: -30,3 - 553: -31,3 + 537: 86,0 + 538: 87,0 + 550: -4,-14 + 551: -30,3 + 552: -31,3 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 540: 87,-2 - 541: 86,-2 - 554: -30,1 - 555: -31,1 + 539: 87,-2 + 540: 86,-2 + 553: -30,1 + 554: -31,1 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 466: 55,28 - 467: 55,27 - 542: 74,-22 - 546: 13,-25 - 547: 13,-24 - 556: -16,24 + 465: 55,28 + 466: 55,27 + 541: 74,-22 + 545: 13,-25 + 546: 13,-24 + 555: -16,24 - node: color: '#3EB388FF' id: BrickTileWhiteCornerNe decals: - 1060: 76,-10 + 1059: 76,-10 - node: color: '#951710FF' id: BrickTileWhiteCornerNe decals: - 1135: 49,-2 + 1134: 49,-2 - node: color: '#9C2020FF' id: BrickTileWhiteCornerNe decals: - 1181: 53,-2 + 1180: 53,-2 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 1217: 26,2 - node: color: '#D58C18FF' id: BrickTileWhiteCornerNe decals: - 1134: 51,-6 + 1133: 51,-6 - node: color: '#951710FF' id: BrickTileWhiteCornerNw decals: - 1137: 48,-2 + 1136: 48,-2 - node: color: '#9C2020FF' id: BrickTileWhiteCornerNw decals: - 1182: 51,-2 + 1181: 51,-2 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1218: 24,2 - node: color: '#D58C18FF' id: BrickTileWhiteCornerNw decals: - 1132: 50,-6 + 1131: 50,-6 - node: color: '#951710FF' id: BrickTileWhiteCornerSe decals: - 1138: 49,-4 + 1137: 49,-4 - node: color: '#9C2020FF' id: BrickTileWhiteCornerSe decals: - 1179: 53,-4 + 1178: 53,-4 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 1216: 26,-1 - node: color: '#D58C18FF' id: BrickTileWhiteCornerSe decals: - 1133: 51,-7 + 1132: 51,-7 - node: color: '#951710FF' id: BrickTileWhiteCornerSw decals: - 1136: 48,-4 + 1135: 48,-4 - node: color: '#9C2020FF' id: BrickTileWhiteCornerSw decals: - 1178: 51,-4 + 1177: 51,-4 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSw + decals: + 1215: 24,-1 - node: color: '#D58C18FF' id: BrickTileWhiteCornerSw decals: - 1131: 50,-7 + 1130: 50,-7 - node: color: '#3EB388FF' id: BrickTileWhiteInnerNe decals: - 394: -10,-6 + 393: -10,-6 - node: color: '#9C2020FF' id: BrickTileWhiteInnerSw decals: - 1200: 55,0 + 1199: 55,0 - node: color: '#3EB388FF' id: BrickTileWhiteLineE decals: - 389: -10,-5 - 390: -10,-3 - 391: -10,1 - 392: -10,3 - 393: -10,5 - 413: -10,6 - 414: -10,2 - 415: -10,-2 - 1068: -22,6 + 388: -10,-5 + 389: -10,-3 + 390: -10,1 + 391: -10,3 + 392: -10,5 + 412: -10,6 + 413: -10,2 + 414: -10,-2 + 1067: -22,6 - node: color: '#951710FF' id: BrickTileWhiteLineE decals: - 1139: 49,-3 + 1138: 49,-3 - node: color: '#9C2020FF' id: BrickTileWhiteLineE decals: - 1183: 53,-3 + 1182: 53,-3 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1221: 26,0 + 1222: 26,1 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 384: -10,-4 - 385: -10,-2 - 386: -10,0 - 387: -10,2 - 388: -10,4 + 383: -10,-4 + 384: -10,-2 + 385: -10,0 + 386: -10,2 + 387: -10,4 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 395: -10,-5 - 396: -10,-4 - 397: -10,-3 - 398: -10,0 - 399: -10,1 - 410: -10,3 - 411: -10,4 - 412: -10,5 + 394: -10,-5 + 395: -10,-4 + 396: -10,-3 + 397: -10,0 + 398: -10,1 + 409: -10,3 + 410: -10,4 + 411: -10,5 - node: color: '#3EB388FF' id: BrickTileWhiteLineN decals: - 416: -6,-6 - 417: -2,-6 - 418: 2,-6 - 1058: 38,2 - 1059: 62,0 - 1062: 61,7 - 1063: 50,7 - 1065: 58,-15 - 1066: 20,-6 - 1067: 18,-16 + 415: -6,-6 + 416: -2,-6 + 417: 2,-6 + 1057: 38,2 + 1058: 62,0 + 1061: 61,7 + 1062: 50,7 + 1064: 58,-15 + 1065: 20,-6 + 1066: 18,-16 - node: color: '#52B4E9FF' id: BrickTileWhiteLineN decals: - 1052: 60,0 - 1057: 15,-6 + 1051: 60,0 + 1056: 15,-6 - node: color: '#9C2020FF' id: BrickTileWhiteLineN decals: - 1185: 52,-2 + 1184: 52,-2 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1224: 25,2 - node: color: '#DE3A3AFF' id: BrickTileWhiteLineN decals: - 1053: 61,0 - 1054: 16,-6 + 1052: 61,0 + 1053: 16,-6 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 400: 0,-6 + 399: 0,-6 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 401: 0,-6 - 402: 1,-6 - 403: -1,-6 - 404: -3,-6 - 405: -4,-6 - 406: -5,-6 - 407: -7,-6 - 408: -8,-6 - 409: -9,-6 + 400: 0,-6 + 401: 1,-6 + 402: -1,-6 + 403: -3,-6 + 404: -4,-6 + 405: -5,-6 + 406: -7,-6 + 407: -8,-6 + 408: -9,-6 - node: color: '#3EB388FF' id: BrickTileWhiteLineS decals: - 419: -2,-8 - 420: 2,-8 - 1064: 60,19 + 418: -2,-8 + 419: 2,-8 + 1063: 60,19 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 1056: -15,11 + 1055: -15,11 - node: color: '#9C2020FF' id: BrickTileWhiteLineS decals: - 1180: 52,-4 - 1186: 48,0 - 1187: 49,0 - 1188: 50,0 - 1189: 51,0 - 1190: 52,0 - 1191: 53,0 - 1192: 54,0 + 1179: 52,-4 + 1185: 48,0 + 1186: 49,0 + 1187: 50,0 + 1188: 51,0 + 1189: 52,0 + 1190: 53,0 + 1191: 54,0 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 1223: 25,-1 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 424: 58,19 - 425: 59,19 - 426: 60,19 - 427: 61,19 - 428: 62,19 - 429: 63,19 + 423: 58,19 + 424: 59,19 + 425: 60,19 + 426: 61,19 + 427: 62,19 + 428: 63,19 - node: color: '#DE3A3AFF' id: BrickTileWhiteLineS decals: - 1055: -14,11 + 1054: -14,11 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 421: 1,-8 - 422: 0,-8 - 423: -1,-8 + 420: 1,-8 + 421: 0,-8 + 422: -1,-8 - node: color: '#3EB388FF' id: BrickTileWhiteLineW decals: - 1061: 78,3 + 1060: 78,3 - node: color: '#951710FF' id: BrickTileWhiteLineW decals: - 1140: 48,-3 + 1139: 48,-3 - node: color: '#9C2020FF' id: BrickTileWhiteLineW decals: - 1184: 51,-3 - 1193: 55,-1 - 1194: 55,-2 - 1195: 55,-3 - 1196: 55,-4 - 1197: 55,-5 - 1198: 55,-6 - 1199: 55,-7 + 1183: 51,-3 + 1192: 55,-1 + 1193: 55,-2 + 1194: 55,-3 + 1195: 55,-4 + 1196: 55,-5 + 1197: 55,-6 + 1198: 55,-7 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 1219: 24,1 + 1220: 24,0 - node: color: '#A4610696' id: CheckerNESW decals: - 1150: 80,0 - 1152: 82,-1 - 1160: 13,-18 - 1163: 15,-20 + 1149: 80,0 + 1151: 82,-1 + 1159: 13,-18 + 1162: 15,-20 - node: color: '#A4610696' id: CheckerNWSE decals: - 1151: 82,0 - 1161: 13,-20 - 1162: 15,-18 - 1166: 15,-19 + 1150: 82,0 + 1160: 13,-20 + 1161: 15,-18 + 1165: 15,-19 - node: color: '#FFFFFFFF' id: Delivery decals: - 1049: -14,-1 - 1071: -27,7 - 1122: 83,-6 - 1123: 61,24 - 1124: 9,-21 + 1048: -14,-1 + 1070: -27,7 + 1121: 83,-6 + 1122: 61,24 + 1123: 9,-21 - node: color: '#52B4E9FF' id: DeliveryGreyscale @@ -1122,38 +1164,38 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 1153: 81,0 - 1165: 14,-18 - 1168: -25,1 - 1170: -24,1 + 1152: 81,0 + 1164: 14,-18 + 1167: -25,1 + 1169: -24,1 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 1141: 56,21 - 1154: 81,-1 - 1155: 80,-2 - 1156: 81,-2 - 1157: 82,-2 - 1164: 14,-20 + 1140: 56,21 + 1153: 81,-1 + 1154: 80,-2 + 1155: 81,-2 + 1156: 82,-2 + 1163: 14,-20 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 1172: -24,2 - 1173: -24,3 + 1171: -24,2 + 1172: -24,3 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 1142: 56,22 - 1143: 56,23 + 1141: 56,22 + 1142: 56,23 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1204: 62,24 + 1203: 62,24 - node: color: '#FFFFFFFF' id: LoadingArea @@ -1164,269 +1206,269 @@ entities: 21: 11,25 22: 12,25 23: 13,25 - 1201: -27,8 + 1200: -27,8 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1202: 8,-21 + 1201: 8,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 1203: 83,-7 + 1202: 83,-7 - node: color: '#8C347FFF' id: MiniTileWhiteCornerNe decals: - 1035: 52,-9 - 1046: -15,-1 + 1034: 52,-9 + 1045: -15,-1 - node: color: '#8C347FFF' id: MiniTileWhiteCornerNw decals: - 1033: 48,-9 - 1047: -19,-1 + 1032: 48,-9 + 1046: -19,-1 - node: color: '#8C347FFF' id: MiniTileWhiteCornerSe decals: - 1034: 52,-12 - 1042: -15,-3 + 1033: 52,-12 + 1041: -15,-3 - node: color: '#8C347FFF' id: MiniTileWhiteCornerSw decals: - 1036: 48,-11 - 1037: 50,-12 - 1043: -18,-3 - 1044: -19,-2 + 1035: 48,-11 + 1036: 50,-12 + 1042: -18,-3 + 1043: -19,-2 - node: color: '#8C347FFF' id: MiniTileWhiteInnerSw decals: - 1038: 50,-11 - 1048: -18,-2 + 1037: 50,-11 + 1047: -18,-2 - node: color: '#3EB388FF' id: MiniTileWhiteLineE decals: - 1069: -15,-2 + 1068: -15,-2 - node: color: '#8C347FFF' id: MiniTileWhiteLineE decals: - 1030: 52,-11 - 1031: 52,-10 - 1045: -15,-2 + 1029: 52,-11 + 1030: 52,-10 + 1044: -15,-2 - node: color: '#8C347FFF' id: MiniTileWhiteLineN decals: - 1026: 49,-9 - 1027: 50,-9 - 1028: 51,-9 - 1041: -16,-1 - 1050: -18,-1 - 1051: -17,-1 + 1025: 49,-9 + 1026: 50,-9 + 1027: 51,-9 + 1040: -16,-1 + 1049: -18,-1 + 1050: -17,-1 - node: color: '#8C347FFF' id: MiniTileWhiteLineS decals: - 1029: 51,-12 - 1032: 49,-11 - 1039: -17,-3 - 1040: -16,-3 + 1028: 51,-12 + 1031: 49,-11 + 1038: -17,-3 + 1039: -16,-3 - node: color: '#8C347FFF' id: MiniTileWhiteLineW decals: - 1025: 48,-10 + 1024: 48,-10 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 1158: 80,-2 - 1169: -26,1 - 1176: -25,2 + 1157: 80,-2 + 1168: -26,1 + 1175: -25,2 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 1145: 55,21 - 1159: 80,-1 - 1174: -25,3 - 1175: -26,2 + 1144: 55,21 + 1158: 80,-1 + 1173: -25,3 + 1174: -26,2 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 1144: 57,21 - 1147: 56,23 - 1171: -24,1 + 1143: 57,21 + 1146: 56,23 + 1170: -24,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 1146: 56,21 - 1148: 55,22 - 1167: 14,-19 - 1177: -26,1 + 1145: 56,21 + 1147: 55,22 + 1166: 14,-19 + 1176: -26,1 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 747: 85,0 - 748: 85,-1 - 749: 85,-2 - 750: 88,0 - 751: 88,-1 - 752: 88,-2 - 833: -5,-15 - 834: -5,-14 - 835: -32,1 - 836: -32,2 - 837: -32,3 - 838: -29,2 - 839: -29,1 - 840: -29,3 - 893: 27,13 - 894: 24,13 - 895: -1,13 - 896: -4,13 + 746: 85,0 + 747: 85,-1 + 748: 85,-2 + 749: 88,0 + 750: 88,-1 + 751: 88,-2 + 832: -5,-15 + 833: -5,-14 + 834: -32,1 + 835: -32,2 + 836: -32,3 + 837: -29,2 + 838: -29,1 + 839: -29,3 + 892: 27,13 + 893: 24,13 + 894: -1,13 + 895: -4,13 - node: color: '#FFFFFFFF' id: StandClear decals: - 753: 76,-23 - 754: 75,-23 - 755: 74,-23 - 756: 74,-21 - 757: 75,-21 - 758: 76,-21 - 791: 57,29 - 792: 56,29 - 793: 55,29 - 794: 55,26 - 795: 56,26 - 796: 57,26 - 797: 13,-26 - 798: 14,-26 - 799: 15,-26 - 800: 13,-23 - 801: 14,-23 - 802: 15,-23 - 831: -4,-16 - 832: -3,-16 - 873: -14,23 - 874: -15,23 - 875: -16,23 - 876: -16,25 - 877: -15,25 - 878: -14,25 - 879: 17,21 - 880: 17,19 + 752: 76,-23 + 753: 75,-23 + 754: 74,-23 + 755: 74,-21 + 756: 75,-21 + 757: 76,-21 + 790: 57,29 + 791: 56,29 + 792: 55,29 + 793: 55,26 + 794: 56,26 + 795: 57,26 + 796: 13,-26 + 797: 14,-26 + 798: 15,-26 + 799: 13,-23 + 800: 14,-23 + 801: 15,-23 + 830: -4,-16 + 831: -3,-16 + 872: -14,23 + 873: -15,23 + 874: -16,23 + 875: -16,25 + 876: -15,25 + 877: -14,25 + 878: 17,21 + 879: 17,19 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClearGreyscale decals: - 700: 77,0 - 701: 77,-1 - 702: 77,-2 - 703: 65,0 - 704: 65,-1 - 705: 65,-2 - 897: -21,1 - 898: -21,2 - 899: -21,3 - 900: -13,1 - 901: -13,2 - 902: -13,3 - 903: 4,-8 - 904: 4,-7 - 905: 4,-6 - 906: 23,-8 - 907: 23,-7 - 908: 23,-6 - 909: 31,0 - 910: 31,1 - 911: 31,2 - 912: 47,0 - 913: 47,1 - 914: 47,2 + 699: 77,0 + 700: 77,-1 + 701: 77,-2 + 702: 65,0 + 703: 65,-1 + 704: 65,-2 + 896: -21,1 + 897: -21,2 + 898: -21,3 + 899: -13,1 + 900: -13,2 + 901: -13,3 + 902: 4,-8 + 903: 4,-7 + 904: 4,-6 + 905: 23,-8 + 906: 23,-7 + 907: 23,-6 + 908: 31,0 + 909: 31,1 + 910: 31,2 + 911: 47,0 + 912: 47,1 + 913: 47,2 - node: color: '#FFFFFFFF' id: StandClearGreyscale decals: - 682: 55,18 - 683: 56,18 - 684: 57,18 - 685: 55,10 - 686: 56,10 - 687: 57,10 - 706: 55,-8 - 707: 56,-8 - 708: 57,-8 - 915: 57,-14 - 916: 56,-14 - 917: 55,-14 - 918: 15,-15 - 919: 14,-15 - 920: 13,-15 - 921: 13,-9 - 922: 14,-9 - 923: 15,-9 - 924: 13,-5 - 925: 12,-5 - 926: 11,-5 - 927: 11,3 - 928: 12,3 - 929: 13,3 - 930: -10,-1 - 931: -11,-1 - 932: -12,-1 - 933: -8,-9 - 934: -7,-9 - 935: -6,-9 - 936: -14,14 - 937: -15,14 - 938: -16,14 + 681: 55,18 + 682: 56,18 + 683: 57,18 + 684: 55,10 + 685: 56,10 + 686: 57,10 + 705: 55,-8 + 706: 56,-8 + 707: 57,-8 + 914: 57,-14 + 915: 56,-14 + 916: 55,-14 + 917: 15,-15 + 918: 14,-15 + 919: 13,-15 + 920: 13,-9 + 921: 14,-9 + 922: 15,-9 + 923: 13,-5 + 924: 12,-5 + 925: 11,-5 + 926: 11,3 + 927: 12,3 + 928: 13,3 + 929: -10,-1 + 930: -11,-1 + 931: -12,-1 + 932: -8,-9 + 933: -7,-9 + 934: -6,-9 + 935: -14,14 + 936: -15,14 + 937: -16,14 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 1084: -28,6 - 1096: 6,-22 - 1108: 82,-9 - 1111: 60,23 + 1083: -28,6 + 1095: 6,-22 + 1107: 82,-9 + 1110: 60,23 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 1085: -26,6 - 1086: 10,-22 - 1109: 84,-9 - 1110: 64,23 + 1084: -26,6 + 1085: 10,-22 + 1108: 84,-9 + 1109: 64,23 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 1083: -28,10 - 1095: 6,-20 - 1107: 82,-5 - 1112: 60,25 + 1082: -28,10 + 1094: 6,-20 + 1106: 82,-5 + 1111: 60,25 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 1082: -26,10 - 1094: 10,-20 - 1106: 84,-5 - 1113: 64,25 + 1081: -26,10 + 1093: 10,-20 + 1105: 84,-5 + 1112: 64,25 - node: color: '#FFFFFFFF' id: WarnEndS @@ -1441,342 +1483,342 @@ entities: color: '#FFFFFFFF' id: WarnLineE decals: - 568: 54,27 - 569: 54,28 - 570: 58,28 - 571: 58,27 - 582: 16,-25 - 583: 16,-24 - 588: 12,-25 - 589: 12,-24 - 730: 88,0 - 731: 88,-1 - 732: 88,-2 - 741: 85,-2 - 742: 85,-1 - 743: 85,0 - 787: 58,26 - 788: 58,29 - 789: 54,29 - 790: 54,26 - 815: 16,-26 - 816: 16,-23 - 817: 12,-23 - 818: 12,-26 - 825: -5,-15 - 826: -5,-14 - 851: -29,1 - 852: -29,2 - 853: -29,3 - 854: -32,3 - 855: -32,2 - 856: -32,1 - 889: -1,13 - 890: -4,13 - 891: 27,13 - 892: 24,13 - 1075: -28,7 - 1076: -28,8 - 1077: -28,9 - 1090: 6,-21 - 1103: 82,-8 - 1104: 82,-7 - 1105: 82,-6 - 1121: 60,24 + 567: 54,27 + 568: 54,28 + 569: 58,28 + 570: 58,27 + 581: 16,-25 + 582: 16,-24 + 587: 12,-25 + 588: 12,-24 + 729: 88,0 + 730: 88,-1 + 731: 88,-2 + 740: 85,-2 + 741: 85,-1 + 742: 85,0 + 786: 58,26 + 787: 58,29 + 788: 54,29 + 789: 54,26 + 814: 16,-26 + 815: 16,-23 + 816: 12,-23 + 817: 12,-26 + 824: -5,-15 + 825: -5,-14 + 850: -29,1 + 851: -29,2 + 852: -29,3 + 853: -32,3 + 854: -32,2 + 855: -32,1 + 888: -1,13 + 889: -4,13 + 890: 27,13 + 891: 24,13 + 1074: -28,7 + 1075: -28,8 + 1076: -28,9 + 1089: 6,-21 + 1102: 82,-8 + 1103: 82,-7 + 1104: 82,-6 + 1120: 60,24 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 697: 77,0 - 698: 77,-1 - 699: 77,-2 - 721: 65,0 - 722: 65,-1 - 723: 65,-2 - 724: 77,0 - 725: 77,-1 - 726: 77,-2 - 957: 47,0 - 958: 47,1 - 959: 47,2 - 960: 31,0 - 961: 31,1 - 962: 31,2 - 964: 23,-6 - 965: 23,-8 - 966: 23,-7 - 967: 4,-8 - 968: 4,-7 - 969: 4,-6 - 970: -13,1 - 971: -13,2 - 972: -13,3 - 973: -21,1 - 974: -21,2 - 975: -21,3 + 696: 77,0 + 697: 77,-1 + 698: 77,-2 + 720: 65,0 + 721: 65,-1 + 722: 65,-2 + 723: 77,0 + 724: 77,-1 + 725: 77,-2 + 956: 47,0 + 957: 47,1 + 958: 47,2 + 959: 31,0 + 960: 31,1 + 961: 31,2 + 963: 23,-6 + 964: 23,-8 + 965: 23,-7 + 966: 4,-8 + 967: 4,-7 + 968: 4,-6 + 969: -13,1 + 970: -13,2 + 971: -13,3 + 972: -21,1 + 973: -21,2 + 974: -21,3 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 679: 55,18 - 680: 56,18 - 681: 57,18 - 688: 55,10 - 689: 56,10 - 690: 57,10 - 718: 55,-8 - 719: 56,-8 - 720: 57,-8 - 1000: 57,-14 - 1001: 56,-14 - 1002: 55,-14 - 1004: 15,-9 - 1005: 14,-9 - 1006: 13,-9 - 1007: 15,-15 - 1008: 14,-15 - 1009: 13,-15 - 1010: 13,-5 - 1011: 12,-5 - 1012: 11,-5 - 1013: 13,3 - 1014: 12,3 - 1015: 11,3 - 1016: -6,-9 - 1017: -7,-9 - 1018: -8,-9 - 1019: -10,-1 - 1020: -11,-1 - 1021: -12,-1 - 1022: -14,14 - 1023: -15,14 - 1024: -16,14 + 678: 55,18 + 679: 56,18 + 680: 57,18 + 687: 55,10 + 688: 56,10 + 689: 57,10 + 717: 55,-8 + 718: 56,-8 + 719: 57,-8 + 999: 57,-14 + 1000: 56,-14 + 1001: 55,-14 + 1003: 15,-9 + 1004: 14,-9 + 1005: 13,-9 + 1006: 15,-15 + 1007: 14,-15 + 1008: 13,-15 + 1009: 13,-5 + 1010: 12,-5 + 1011: 11,-5 + 1012: 13,3 + 1013: 12,3 + 1014: 11,3 + 1015: -6,-9 + 1016: -7,-9 + 1017: -8,-9 + 1018: -10,-1 + 1019: -11,-1 + 1020: -12,-1 + 1021: -14,14 + 1022: -15,14 + 1023: -16,14 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 676: 55,18 - 677: 56,18 - 678: 57,18 - 691: 55,10 - 692: 56,10 - 693: 57,10 - 715: 57,-8 - 716: 56,-8 - 717: 55,-8 - 976: -16,14 - 977: -15,14 - 978: -14,14 - 979: -12,-1 - 980: -11,-1 - 981: -10,-1 - 982: -8,-9 - 983: -7,-9 - 984: -6,-9 - 985: 11,3 - 986: 12,3 - 987: 13,3 - 988: 11,-5 - 989: 12,-5 - 990: 13,-5 - 991: 13,-9 - 992: 14,-9 - 993: 15,-9 - 994: 13,-15 - 995: 14,-15 - 996: 15,-15 - 997: 55,-14 - 998: 56,-14 - 999: 57,-14 + 675: 55,18 + 676: 56,18 + 677: 57,18 + 690: 55,10 + 691: 56,10 + 692: 57,10 + 714: 57,-8 + 715: 56,-8 + 716: 55,-8 + 975: -16,14 + 976: -15,14 + 977: -14,14 + 978: -12,-1 + 979: -11,-1 + 980: -10,-1 + 981: -8,-9 + 982: -7,-9 + 983: -6,-9 + 984: 11,3 + 985: 12,3 + 986: 13,3 + 987: 11,-5 + 988: 12,-5 + 989: 13,-5 + 990: 13,-9 + 991: 14,-9 + 992: 15,-9 + 993: 13,-15 + 994: 14,-15 + 995: 15,-15 + 996: 55,-14 + 997: 56,-14 + 998: 57,-14 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 694: 77,0 - 695: 77,-1 - 696: 77,-2 - 709: 77,0 - 710: 77,-1 - 711: 77,-2 - 712: 65,0 - 713: 65,-1 - 714: 65,-2 - 939: -21,1 - 940: -21,2 - 941: -21,3 - 942: -13,1 - 943: -13,2 - 944: -13,3 - 945: 4,-8 - 946: 4,-7 - 947: 4,-6 - 948: 23,-8 - 949: 23,-7 - 950: 23,-6 - 951: 31,0 - 952: 31,1 - 953: 31,2 - 954: 47,2 - 955: 47,1 - 956: 47,0 + 693: 77,0 + 694: 77,-1 + 695: 77,-2 + 708: 77,0 + 709: 77,-1 + 710: 77,-2 + 711: 65,0 + 712: 65,-1 + 713: 65,-2 + 938: -21,1 + 939: -21,2 + 940: -21,3 + 941: -13,1 + 942: -13,2 + 943: -13,3 + 944: 4,-8 + 945: 4,-7 + 946: 4,-6 + 947: 23,-8 + 948: 23,-7 + 949: 23,-6 + 950: 31,0 + 951: 31,1 + 952: 31,2 + 953: 47,2 + 954: 47,1 + 955: 47,0 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 560: 86,1 - 561: 87,1 - 562: 87,-3 - 563: 86,-3 - 574: -31,0 - 575: -30,0 - 576: -31,4 - 577: -30,4 - 734: 85,1 - 735: 85,-3 - 739: 88,1 - 740: 88,-3 - 765: 74,-21 - 766: 75,-21 - 767: 76,-21 - 768: 74,-23 - 769: 75,-23 - 770: 76,-23 - 771: 55,26 - 772: 56,26 - 773: 57,26 - 774: 57,29 - 775: 56,29 - 776: 55,29 - 809: 13,-26 - 810: 14,-26 - 811: 15,-26 - 812: 13,-23 - 813: 14,-23 - 814: 15,-23 - 829: -3,-16 - 830: -4,-16 - 847: -32,0 - 848: -29,0 - 849: -29,4 - 850: -32,4 - 867: -14,23 - 868: -15,23 - 869: -16,23 - 870: -16,25 - 871: -15,25 - 872: -14,25 - 883: 17,19 - 884: 17,21 - 1081: -27,10 - 1091: 7,-20 - 1092: 8,-20 - 1093: 9,-20 - 1102: 83,-5 - 1118: 63,25 - 1119: 62,25 - 1120: 61,25 + 559: 86,1 + 560: 87,1 + 561: 87,-3 + 562: 86,-3 + 573: -31,0 + 574: -30,0 + 575: -31,4 + 576: -30,4 + 733: 85,1 + 734: 85,-3 + 738: 88,1 + 739: 88,-3 + 764: 74,-21 + 765: 75,-21 + 766: 76,-21 + 767: 74,-23 + 768: 75,-23 + 769: 76,-23 + 770: 55,26 + 771: 56,26 + 772: 57,26 + 773: 57,29 + 774: 56,29 + 775: 55,29 + 808: 13,-26 + 809: 14,-26 + 810: 15,-26 + 811: 13,-23 + 812: 14,-23 + 813: 15,-23 + 828: -3,-16 + 829: -4,-16 + 846: -32,0 + 847: -29,0 + 848: -29,4 + 849: -32,4 + 866: -14,23 + 867: -15,23 + 868: -16,23 + 869: -16,25 + 870: -15,25 + 871: -14,25 + 882: 17,19 + 883: 17,21 + 1080: -27,10 + 1090: 7,-20 + 1091: 8,-20 + 1092: 9,-20 + 1101: 83,-5 + 1117: 63,25 + 1118: 62,25 + 1119: 61,25 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 566: 54,27 - 567: 54,28 - 572: 58,27 - 573: 58,28 - 584: 16,-25 - 585: 16,-24 - 586: 12,-25 - 587: 12,-24 - 727: 88,-2 - 728: 88,-1 - 729: 88,0 - 744: 85,0 - 745: 85,-1 - 746: 85,-2 - 783: 54,29 - 784: 54,26 - 785: 58,26 - 786: 58,29 - 819: 12,-26 - 820: 12,-23 - 821: 16,-26 - 822: 16,-23 - 823: -5,-15 - 824: -5,-14 - 841: -32,1 - 842: -32,2 - 843: -32,3 - 844: -29,1 - 845: -29,2 - 846: -29,3 - 885: -4,13 - 886: -1,13 - 887: 24,13 - 888: 27,13 - 1078: -26,7 - 1079: -26,8 - 1080: -26,9 - 1097: 10,-21 - 1098: 84,-8 - 1099: 84,-7 - 1100: 84,-6 - 1117: 64,24 + 565: 54,27 + 566: 54,28 + 571: 58,27 + 572: 58,28 + 583: 16,-25 + 584: 16,-24 + 585: 12,-25 + 586: 12,-24 + 726: 88,-2 + 727: 88,-1 + 728: 88,0 + 743: 85,0 + 744: 85,-1 + 745: 85,-2 + 782: 54,29 + 783: 54,26 + 784: 58,26 + 785: 58,29 + 818: 12,-26 + 819: 12,-23 + 820: 16,-26 + 821: 16,-23 + 822: -5,-15 + 823: -5,-14 + 840: -32,1 + 841: -32,2 + 842: -32,3 + 843: -29,1 + 844: -29,2 + 845: -29,3 + 884: -4,13 + 885: -1,13 + 886: 24,13 + 887: 27,13 + 1077: -26,7 + 1078: -26,8 + 1079: -26,9 + 1096: 10,-21 + 1097: 84,-8 + 1098: 84,-7 + 1099: 84,-6 + 1116: 64,24 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 558: 86,1 - 559: 87,1 - 564: 86,-3 - 565: 87,-3 - 578: -31,4 - 579: -30,4 - 580: -31,0 - 581: -30,0 - 733: 85,1 - 736: 85,-3 - 737: 88,-3 - 738: 88,1 - 759: 74,-23 - 760: 75,-23 - 761: 76,-23 - 762: 74,-21 - 763: 75,-21 - 764: 76,-21 - 777: 57,29 - 778: 56,29 - 779: 55,29 - 780: 57,26 - 781: 56,26 - 782: 55,26 - 803: 13,-23 - 804: 14,-23 - 805: 15,-23 - 806: 15,-26 - 807: 14,-26 - 808: 13,-26 - 827: -4,-16 - 828: -3,-16 - 857: -32,4 - 858: -29,4 - 859: -29,0 - 860: -32,0 - 861: -14,25 - 862: -15,25 - 863: -16,25 - 864: -14,23 - 865: -15,23 - 866: -16,23 - 881: 17,21 - 882: 17,19 - 1074: -27,6 - 1087: 9,-22 - 1088: 7,-22 - 1089: 8,-22 - 1101: 83,-9 - 1114: 61,23 - 1115: 62,23 - 1116: 63,23 + 557: 86,1 + 558: 87,1 + 563: 86,-3 + 564: 87,-3 + 577: -31,4 + 578: -30,4 + 579: -31,0 + 580: -30,0 + 732: 85,1 + 735: 85,-3 + 736: 88,-3 + 737: 88,1 + 758: 74,-23 + 759: 75,-23 + 760: 76,-23 + 761: 74,-21 + 762: 75,-21 + 763: 76,-21 + 776: 57,29 + 777: 56,29 + 778: 55,29 + 779: 57,26 + 780: 56,26 + 781: 55,26 + 802: 13,-23 + 803: 14,-23 + 804: 15,-23 + 805: 15,-26 + 806: 14,-26 + 807: 13,-26 + 826: -4,-16 + 827: -3,-16 + 856: -32,4 + 857: -29,4 + 858: -29,0 + 859: -32,0 + 860: -14,25 + 861: -15,25 + 862: -16,25 + 863: -14,23 + 864: -15,23 + 865: -16,23 + 880: 17,21 + 881: 17,19 + 1073: -27,6 + 1086: 9,-22 + 1087: 7,-22 + 1088: 8,-22 + 1100: 83,-9 + 1113: 61,23 + 1114: 62,23 + 1115: 63,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -1973,8 +2015,12 @@ entities: 0: 3 5,3: 0: 4080 + 6,0: + 1: 1919 6,3: 1: 1776 + 6,-1: + 1: 28672 6,1: 1: 2184 7,0: @@ -2288,7 +2334,7 @@ entities: 12,-3: 1: 65532 12,-1: - 1: 3003 + 1: 3067 12,-2: 1: 36032 12,-5: @@ -2626,6 +2672,8 @@ entities: - 3910 - 4030 - 3760 + - 6413 + - 6418 - uid: 6084 components: - type: Transform @@ -3088,6 +3136,13 @@ entities: - type: Transform pos: 17.5,21.5 parent: 1 +- proto: AirlockFrontierBridgeGlassLocked + entities: + - uid: 2620 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 - proto: AirlockGlass entities: - uid: 88 @@ -3579,7 +3634,6 @@ entities: - uid: 1220 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,-3.5 parent: 1 - proto: AirlockSecurityLocked @@ -3953,73 +4007,46 @@ entities: - type: Transform pos: 52.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 224 - uid: 669 components: - type: Transform pos: 53.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 822 - uid: 698 components: - type: Transform pos: 54.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 822 - uid: 710 components: - type: Transform pos: 52.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 224 - uid: 711 components: - type: Transform pos: 54.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 224 - uid: 712 components: - type: Transform pos: 54.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 224 - uid: 722 components: - type: Transform pos: 54.5,-3.5 parent: 1 - - type: DeviceLinkSink - links: - - 822 - uid: 724 components: - type: Transform pos: 54.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 822 - uid: 829 components: - type: Transform pos: 52.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 822 - proto: BorgCharger entities: - uid: 5809 @@ -4028,6 +4055,13 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-0.5 parent: 1 +- proto: BoxFolderGreen + entities: + - uid: 6407 + components: + - type: Transform + pos: 24.809456,2.735341 + parent: 1 - proto: ButtonFrameCaution entities: - uid: 227 @@ -7199,6 +7233,21 @@ entities: - type: Transform pos: 19.5,-16.5 parent: 1 + - uid: 6408 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 6409 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 + - uid: 6410 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 - proto: CableHV entities: - uid: 2526 @@ -9316,9 +9365,6 @@ entities: - type: Transform pos: -24.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 4291 - type: ContainerContainer containers: machine_board: !type:Container @@ -9330,9 +9376,6 @@ entities: - type: Transform pos: -24.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 4291 - type: ContainerContainer containers: machine_board: !type:Container @@ -9344,9 +9387,6 @@ entities: - type: Transform pos: 7.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 604 - type: ContainerContainer containers: machine_board: !type:Container @@ -9358,9 +9398,6 @@ entities: - type: Transform pos: 9.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 604 - type: ContainerContainer containers: machine_board: !type:Container @@ -9372,9 +9409,6 @@ entities: - type: Transform pos: 81.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 758 - type: ContainerContainer containers: machine_board: !type:Container @@ -9386,9 +9420,6 @@ entities: - type: Transform pos: 81.5,-7.5 parent: 1 - - type: DeviceLinkSink - links: - - 758 - type: ContainerContainer containers: machine_board: !type:Container @@ -9400,9 +9431,6 @@ entities: - type: Transform pos: 61.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 238 - type: ContainerContainer containers: machine_board: !type:Container @@ -9414,9 +9442,6 @@ entities: - type: Transform pos: 63.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 238 - type: ContainerContainer containers: machine_board: !type:Container @@ -10527,6 +10552,12 @@ entities: rot: 3.141592653589793 rad pos: 52.5,-2.5 parent: 1 + - uid: 2926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,1.5 + parent: 1 - proto: ClosetEmergencyFilledRandom entities: - uid: 6181 @@ -10895,6 +10926,21 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,-3.5 parent: 1 +- proto: ComputerTabletopShuttleFrontierOutpostRemote + entities: + - uid: 2940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 +- proto: ComputerTabletopShuttleTradeOutpostLocal + entities: + - uid: 2945 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - uid: 1264 @@ -11098,367 +11144,241 @@ entities: - type: Transform pos: 54.5,29.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 240 components: - type: Transform pos: 54.5,28.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 241 components: - type: Transform pos: 54.5,27.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 242 components: - type: Transform pos: 54.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 243 components: - type: Transform pos: 54.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 244 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 245 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 246 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,27.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 247 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,28.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 248 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,29.5 parent: 1 - - type: DeviceLinkSink - links: - - 6331 - uid: 812 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 813 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 814 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 815 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 816 components: - type: Transform rot: -1.5707963267948966 rad pos: 84.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 823 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 824 components: - type: Transform rot: 1.5707963267948966 rad pos: 85.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 825 components: - type: Transform rot: 1.5707963267948966 rad pos: 86.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 826 components: - type: Transform rot: 1.5707963267948966 rad pos: 87.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 827 components: - type: Transform rot: 1.5707963267948966 rad pos: 88.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 6332 - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4575 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-25.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4576 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4577 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4578 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4579 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4586 components: - type: Transform pos: 12.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4587 components: - type: Transform pos: 12.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4588 components: - type: Transform pos: 12.5,-23.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4589 components: - type: Transform pos: 12.5,-24.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4590 components: - type: Transform pos: 12.5,-25.5 parent: 1 - - type: DeviceLinkSink - links: - - 6333 - uid: 4592 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4593 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4594 components: - type: Transform rot: 1.5707963267948966 rad pos: -30.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4595 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4602 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4603 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4604 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4605 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 4606 components: - type: Transform rot: -1.5707963267948966 rad pos: -31.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6334 - uid: 5797 components: - type: Transform pos: -18.5,-3.5 parent: 1 - - type: DeviceLinkSink - links: - - 1537 - uid: 5798 components: - type: Transform pos: -18.5,-4.5 parent: 1 - - type: DeviceLinkSink - links: - - 1537 - proto: CrateFreezer entities: - uid: 1353 @@ -13601,6 +13521,12 @@ entities: rot: 3.141592653589793 rad pos: 73.5,3.5 parent: 1 + - uid: 6419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 1 - proto: ExtinguisherCabinetFilled entities: - uid: 5750 @@ -13626,6 +13552,13 @@ entities: - type: Transform pos: 59.5,-4.5 parent: 1 +- proto: FaxMachineNFTradeSTC + entities: + - uid: 2938 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1 - proto: Firelock entities: - uid: 3795 @@ -14520,6 +14453,11 @@ entities: - type: DeviceNetwork deviceLists: - 6082 + - uid: 6421 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 - proto: FloorDrain entities: - uid: 877 @@ -15756,13 +15694,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2021 - components: - - type: Transform - pos: 28.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2022 components: - type: Transform @@ -19474,14 +19405,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5184 components: - type: Transform @@ -19626,6 +19549,54 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 264 @@ -19791,6 +19762,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2039 components: - type: Transform @@ -19984,6 +19963,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 2618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3469 components: - type: Transform @@ -20825,6 +20812,17 @@ entities: - 6080 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6083 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 1948 @@ -21368,6 +21366,17 @@ entities: - 6080 - type: AtmosPipeColor color: '#990000FF' + - uid: 6418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6083 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePumpOn entities: - uid: 834 @@ -22034,6 +22043,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,-23.5 parent: 1 + - uid: 2912 + components: + - type: Transform + pos: 27.5,1.5 + parent: 1 - uid: 3377 components: - type: Transform @@ -22424,6 +22438,11 @@ entities: - type: Transform pos: -7.5,-15.5 parent: 1 + - uid: 5183 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1 - uid: 6073 components: - type: Transform @@ -22909,6 +22928,11 @@ entities: parent: 1 - proto: PottedPlantRandomPlastic entities: + - uid: 2911 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 - uid: 6211 components: - type: Transform @@ -23216,8 +23240,8 @@ entities: - uid: 4001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,1.5 + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 parent: 1 - uid: 4002 components: @@ -23358,6 +23382,12 @@ entities: - type: Transform pos: 10.5,-14.5 parent: 1 + - uid: 6420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-0.5 + parent: 1 - proto: PoweredlightGreen entities: - uid: 512 @@ -25456,6 +25486,16 @@ entities: rot: 3.141592653589793 rad pos: -29.5,5.5 parent: 1 + - uid: 2948 + components: + - type: Transform + pos: 27.5,1.5 + parent: 1 + - uid: 2949 + components: + - type: Transform + pos: 27.5,2.5 + parent: 1 - uid: 3677 components: - type: Transform @@ -25775,6 +25815,20 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-23.5 parent: 1 +- proto: RubberStampApproved + entities: + - uid: 6405 + components: + - type: Transform + pos: 24.39279,2.547841 + parent: 1 +- proto: RubberStampDenied + entities: + - uid: 6406 + components: + - type: Transform + pos: 24.684456,2.3707576 + parent: 1 - proto: SellOnlyMothershipComputer entities: - uid: 1225 @@ -25847,684 +25901,441 @@ entities: - type: Transform pos: 60.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 5991 - uid: 1208 components: - type: Transform pos: 61.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 5991 - uid: 1209 components: - type: Transform pos: 62.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 5991 - uid: 1210 components: - type: Transform pos: 63.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 5991 - uid: 1211 components: - type: Transform pos: 64.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 5991 - uid: 5992 components: - type: Transform pos: 48.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5993 components: - type: Transform pos: 49.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5994 components: - type: Transform pos: 50.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5995 components: - type: Transform pos: 51.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5996 components: - type: Transform pos: 52.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5997 components: - type: Transform pos: 60.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5998 components: - type: Transform pos: 61.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 5999 components: - type: Transform pos: 62.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6000 components: - type: Transform pos: 63.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6001 components: - type: Transform pos: 64.5,26.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6002 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6003 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6004 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,25.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6005 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,24.5 parent: 1 - - type: DeviceLinkSink - links: - - 6006 - uid: 6013 components: - type: Transform pos: 83.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6014 components: - type: Transform pos: 84.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6015 components: - type: Transform pos: 83.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6016 components: - type: Transform pos: 84.5,-9.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6017 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6018 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6019 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6020 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6021 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,3.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6022 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6023 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6024 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6025 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-7.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6026 components: - type: Transform rot: -1.5707963267948966 rad pos: 85.5,-8.5 parent: 1 - - type: DeviceLinkSink - links: - - 6007 - uid: 6027 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-14.5 parent: 1 - - type: DeviceLinkSink - links: - - 6012 - uid: 6028 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 6012 - uid: 6029 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-16.5 parent: 1 - - type: DeviceLinkSink - links: - - 6012 - uid: 6030 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-17.5 parent: 1 - - type: DeviceLinkSink - links: - - 6012 - uid: 6031 components: - type: Transform rot: -1.5707963267948966 rad pos: 77.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 6012 - uid: 6032 components: - type: Transform pos: 62.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6008 - uid: 6033 components: - type: Transform pos: 61.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6008 - uid: 6034 components: - type: Transform pos: 60.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6008 - uid: 6035 components: - type: Transform pos: 59.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6008 - uid: 6036 components: - type: Transform pos: 57.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6037 components: - type: Transform pos: 56.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6038 components: - type: Transform pos: 55.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6039 components: - type: Transform pos: 52.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6040 components: - type: Transform pos: 51.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6041 components: - type: Transform pos: 50.5,-19.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6042 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-17.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6043 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,-18.5 parent: 1 - - type: DeviceLinkSink - links: - - 6009 - uid: 6044 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-20.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6045 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6046 components: - type: Transform pos: 22.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6047 components: - type: Transform pos: 21.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6048 components: - type: Transform pos: 20.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6049 components: - type: Transform pos: 19.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6050 components: - type: Transform pos: 18.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6051 components: - type: Transform pos: 10.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6052 components: - type: Transform pos: 9.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6053 components: - type: Transform pos: 8.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6054 components: - type: Transform pos: 7.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6055 components: - type: Transform pos: 6.5,-22.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6056 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-21.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6057 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-20.5 parent: 1 - - type: DeviceLinkSink - links: - - 6010 - uid: 6058 components: - type: Transform pos: -27.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6059 components: - type: Transform pos: -26.5,-6.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6060 components: - type: Transform pos: -27.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6061 components: - type: Transform pos: -26.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6062 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,10.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6063 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,9.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6064 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,8.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6065 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,7.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6066 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6067 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6068 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6069 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-3.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6070 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-4.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6071 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 6011 - uid: 6075 components: - type: Transform pos: -5.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 6078 - uid: 6076 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 6078 - uid: 6077 components: - type: Transform pos: -7.5,-15.5 parent: 1 - - type: DeviceLinkSink - links: - - 6078 - proto: SignalButtonDirectional entities: - uid: 5991 @@ -27780,6 +27591,24 @@ entities: - type: Transform pos: 50.5,-11.5 parent: 1 + - uid: 2619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + - uid: 2927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,1.5 + parent: 1 + - uid: 2928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 1 - uid: 3287 components: - type: Transform @@ -27881,6 +27710,12 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-3.5 parent: 1 + - uid: 6330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 1 - proto: TableStone entities: - uid: 1180 @@ -32444,21 +32279,6 @@ entities: - type: Transform pos: 27.5,-0.5 parent: 1 - - uid: 2618 - components: - - type: Transform - pos: 27.5,0.5 - parent: 1 - - uid: 2619 - components: - - type: Transform - pos: 27.5,1.5 - parent: 1 - - uid: 2620 - components: - - type: Transform - pos: 27.5,2.5 - parent: 1 - uid: 2621 components: - type: Transform @@ -32869,6 +32689,60 @@ entities: - type: Transform pos: 33.5,5.5 parent: 1 + - uid: 2913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 1 + - uid: 2914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 1 + - uid: 2915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 1 + - uid: 2916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 1 + - uid: 2923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 1 + - uid: 2924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 1 + - uid: 2925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 1 + - uid: 2936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,3.5 + parent: 1 + - uid: 2937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 1 - uid: 2942 components: - type: Transform @@ -32881,6 +32755,18 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-3.5 parent: 1 + - uid: 2946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 1 + - uid: 2947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 - uid: 2972 components: - type: Transform @@ -36938,36 +36824,6 @@ entities: - type: Transform pos: 23.5,4.5 parent: 1 - - uid: 2911 - components: - - type: Transform - pos: 23.5,3.5 - parent: 1 - - uid: 2912 - components: - - type: Transform - pos: 23.5,2.5 - parent: 1 - - uid: 2913 - components: - - type: Transform - pos: 23.5,1.5 - parent: 1 - - uid: 2914 - components: - - type: Transform - pos: 23.5,0.5 - parent: 1 - - uid: 2915 - components: - - type: Transform - pos: 23.5,-0.5 - parent: 1 - - uid: 2916 - components: - - type: Transform - pos: 23.5,-1.5 - parent: 1 - uid: 2917 components: - type: Transform @@ -36998,36 +36854,6 @@ entities: - type: Transform pos: 24.5,4.5 parent: 1 - - uid: 2923 - components: - - type: Transform - pos: 24.5,3.5 - parent: 1 - - uid: 2924 - components: - - type: Transform - pos: 24.5,2.5 - parent: 1 - - uid: 2925 - components: - - type: Transform - pos: 24.5,1.5 - parent: 1 - - uid: 2926 - components: - - type: Transform - pos: 24.5,0.5 - parent: 1 - - uid: 2927 - components: - - type: Transform - pos: 24.5,-0.5 - parent: 1 - - uid: 2928 - components: - - type: Transform - pos: 24.5,-1.5 - parent: 1 - uid: 2929 components: - type: Transform @@ -37053,36 +36879,6 @@ entities: - type: Transform pos: 25.5,4.5 parent: 1 - - uid: 2935 - components: - - type: Transform - pos: 25.5,3.5 - parent: 1 - - uid: 2936 - components: - - type: Transform - pos: 25.5,2.5 - parent: 1 - - uid: 2937 - components: - - type: Transform - pos: 25.5,1.5 - parent: 1 - - uid: 2938 - components: - - type: Transform - pos: 25.5,0.5 - parent: 1 - - uid: 2939 - components: - - type: Transform - pos: 25.5,-0.5 - parent: 1 - - uid: 2940 - components: - - type: Transform - pos: 25.5,-1.5 - parent: 1 - uid: 2941 components: - type: Transform @@ -37093,31 +36889,6 @@ entities: - type: Transform pos: 26.5,-2.5 parent: 1 - - uid: 2945 - components: - - type: Transform - pos: 26.5,-1.5 - parent: 1 - - uid: 2946 - components: - - type: Transform - pos: 26.5,-0.5 - parent: 1 - - uid: 2947 - components: - - type: Transform - pos: 26.5,0.5 - parent: 1 - - uid: 2948 - components: - - type: Transform - pos: 26.5,1.5 - parent: 1 - - uid: 2949 - components: - - type: Transform - pos: 26.5,2.5 - parent: 1 - uid: 2950 components: - type: Transform @@ -39904,10 +39675,17 @@ entities: parent: 1 - proto: WarpPointNFTrade entities: - - uid: 6330 + - uid: 2939 components: - type: Transform - pos: 59.5,-4.5 + pos: 60.5,-4.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 2935 + components: + - type: Transform + pos: 26.5,-0.5 parent: 1 - proto: WaterTankHighCapacity entities: diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index fe35f4beb23..36b4cc5f7be 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -405,9 +405,9 @@ description: A computer printed circuit board for a shuttle console. components: - type: ComputerBoard - prototype: ComputerShuttleEmpty # Frontier ComputerShuttle Date: Wed, 18 Sep 2024 22:31:13 +0000 Subject: [PATCH 2/3] Automatic Changelog (#1732) --- Resources/Changelog/Changelog.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index bc8c9b05055..2496ad7d2fd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -7056,3 +7056,17 @@ Entries: message: The PAL can now choose between a jumpsuit and jumpskirt. id: 5283 time: '2024-09-18T04:12:12.0000000+00:00' +- author: whatston3 + changes: + - type: Add + message: >- + An extra radar has been added to the Frontier Outpost bridge to monitor + Trade Outpost traffic. + - type: Add + message: >- + The STC now has an off-base office in the Trade Outpost near the gravity + generator. + - type: Fix + message: The SR's main office door is now accessible by the STC. + id: 5284 + time: '2024-09-18T22:30:44.0000000+00:00' From bbd48411648f18b15c167c7406c98b99ce5aec0b Mon Sep 17 00:00:00 2001 From: Whatstone <166147148+whatston3@users.noreply.github.com> Date: Thu, 19 Sep 2024 08:41:41 -0400 Subject: [PATCH 3/3] Remove noSpawn (#2030) --- .../Entities/Objects/Misc/cards.yml | 114 +++++++++--------- .../Structures/Machines/fax_machine.yml | 2 +- 2 files changed, 58 insertions(+), 58 deletions(-) diff --git a/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/cards.yml b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/cards.yml index be48cb962b8..b90217a7053 100644 --- a/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/cards.yml +++ b/Resources/Prototypes/EstacaoPirata/Entities/Objects/Misc/cards.yml @@ -2,7 +2,7 @@ parent: [ BoxCardboard, BaseBagOpenClose ] id: CardBoxBase name: deck box - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: Item size: Small @@ -34,7 +34,7 @@ - type: entity parent: BaseItem id: CardHandBase - noSpawn: true + categories: [ HideSpawnMenu ] name: hand of cards components: - type: Item @@ -56,7 +56,7 @@ - type: entity parent: BaseItem id: CardDeckBase - noSpawn: true + categories: [ HideSpawnMenu ] name: deck of cards components: - type: Sprite @@ -163,7 +163,7 @@ parent: BaseItem id: CardBase name: card - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: EmitSoundOnLand sound: @@ -186,7 +186,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc2OfClubsBlack components: - type: Card @@ -197,7 +197,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc3OfClubsBlack components: - type: Card @@ -208,7 +208,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc4OfClubsBlack components: - type: Card @@ -219,7 +219,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc5OfClubsBlack components: - type: Card @@ -230,7 +230,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc6OfClubsBlack components: - type: Card @@ -241,7 +241,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc7OfClubsBlack components: - type: Card @@ -252,7 +252,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc8OfClubsBlack components: - type: Card @@ -263,7 +263,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc9OfClubsBlack components: - type: Card @@ -274,7 +274,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc10OfClubsBlack components: - type: Card @@ -285,7 +285,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScAceOfClubsBlack components: - type: Card @@ -297,7 +297,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScJackOfClubsBlack components: - type: Card @@ -308,7 +308,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScKingOfClubsBlack components: - type: Card @@ -319,7 +319,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScQueenOfClubsBlack components: - type: Card @@ -331,7 +331,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScJackOfDiamondsBlack components: - type: Card @@ -342,7 +342,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScQueenOfDiamondsBlack components: - type: Card @@ -353,7 +353,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScKingOfDiamondsBlack components: - type: Card @@ -364,7 +364,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScAceOfDiamondsBlack components: - type: Card @@ -375,7 +375,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc2OfDiamondsBlack components: - type: Card @@ -386,7 +386,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc3OfDiamondsBlack components: - type: Card @@ -397,7 +397,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc4OfDiamondsBlack components: - type: Card @@ -408,7 +408,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc5OfDiamondsBlack components: - type: Card @@ -419,7 +419,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc6OfDiamondsBlack components: - type: Card @@ -430,7 +430,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc7OfDiamondsBlack components: - type: Card @@ -441,7 +441,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc8OfDiamondsBlack components: - type: Card @@ -452,7 +452,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc9OfDiamondsBlack components: - type: Card @@ -463,7 +463,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc10OfDiamondsBlack components: - type: Card @@ -475,7 +475,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc2OfHeartsBlack components: - type: Card @@ -486,7 +486,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc3OfHeartsBlack components: - type: Card @@ -497,7 +497,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc4OfHeartsBlack components: - type: Card @@ -508,7 +508,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc5OfHeartsBlack components: - type: Card @@ -519,7 +519,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc6OfHeartsBlack components: - type: Card @@ -530,7 +530,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc7OfHeartsBlack components: - type: Card @@ -541,7 +541,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc8OfHeartsBlack components: - type: Card @@ -552,7 +552,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc9OfHeartsBlack components: - type: Card @@ -563,7 +563,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc10OfHeartsBlack components: - type: Card @@ -574,7 +574,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScKingOfHeartsBlack components: - type: Card @@ -585,7 +585,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScQueenOfHeartsBlack components: - type: Card @@ -596,7 +596,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScJackOfHeartsBlack components: - type: Card @@ -607,7 +607,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScAceOfHeartsBlack components: - type: Card @@ -619,7 +619,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc2OfSpadesBlack components: - type: Card @@ -630,7 +630,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc3OfSpadesBlack components: - type: Card @@ -641,7 +641,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc4OfSpadesBlack components: - type: Card @@ -652,7 +652,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc5OfSpadesBlack components: - type: Card @@ -663,7 +663,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc6OfSpadesBlack components: - type: Card @@ -674,7 +674,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc7OfSpadesBlack components: - type: Card @@ -685,7 +685,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc8OfSpadesBlack components: - type: Card @@ -696,7 +696,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc9OfSpadesBlack components: - type: Card @@ -708,7 +708,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardSc10OfSpadesBlack components: - type: Card @@ -719,7 +719,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScKingOfSpadesBlack components: - type: Card @@ -730,7 +730,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScQueenOfSpadesBlack components: - type: Card @@ -741,7 +741,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScJackOfSpadesBlack components: - type: Card @@ -752,7 +752,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScAceOfSpadesBlack components: - type: Card @@ -763,7 +763,7 @@ - type: entity parent: CardBase - noSpawn: true + categories: [ HideSpawnMenu ] id: CardScJokerBlack components: - type: Card diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/fax_machine.yml index 9b9526d6b16..a9793ad1808 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/fax_machine.yml @@ -124,7 +124,7 @@ parent: [BaseStructureDisableToolUse, FaxMachineBase] id: FaxMachineNFTradeSTC suffix: POI, Trade - noSpawn: true + categories: [ HideSpawnMenu ] components: - type: FaxMachine name: "Trade Outpost STC"