From 964e81ee5a87deb266d5e3d7655eeeb1c98d3612 Mon Sep 17 00:00:00 2001 From: JDtrimble Date: Sun, 7 Jul 2024 01:14:27 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B5=D0=B2=D0=BE=D1=80=D0=BA=20=D0=BE?= =?UTF-8?q?=D1=80=D1=83=D0=B6=D0=B5=D0=B9=D0=BA=D0=B8=20=D0=B3=D0=B0=D0=BC?= =?UTF-8?q?=D0=BC=D0=B0=20=D0=BA=D0=BE=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Shuttles/CodeEquipmentComponent.cs | 18 + .../Shuttles/CodeEquipmentShuttleComponent.cs | 19 + .../_Sunrise/Shuttles/CodeEquipmentSystem.cs | 106 + .../Maps/_Sunrise/Shuttles/gamma_armory.yml | 675 ++ Resources/Maps/_Sunrise/Station/box.yml | 921 +-- Resources/Maps/_Sunrise/Station/delta.yml | 6696 +++++++++-------- Resources/Maps/_Sunrise/Station/fland.yml | 537 +- Resources/Maps/_Sunrise/Station/marathon.yml | 1019 ++- .../Entities/Stations/nanotrasen.yml | 1 + .../_Sunrise/Entities/Stations/base.yml | 6 + .../Structures/Doors/Airlocks/access.yml | 18 +- 11 files changed, 5669 insertions(+), 4347 deletions(-) create mode 100644 Content.Server/_Sunrise/Shuttles/CodeEquipmentComponent.cs create mode 100644 Content.Server/_Sunrise/Shuttles/CodeEquipmentShuttleComponent.cs create mode 100644 Content.Server/_Sunrise/Shuttles/CodeEquipmentSystem.cs create mode 100644 Resources/Maps/_Sunrise/Shuttles/gamma_armory.yml diff --git a/Content.Server/_Sunrise/Shuttles/CodeEquipmentComponent.cs b/Content.Server/_Sunrise/Shuttles/CodeEquipmentComponent.cs new file mode 100644 index 00000000000..d7fe6d7f450 --- /dev/null +++ b/Content.Server/_Sunrise/Shuttles/CodeEquipmentComponent.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Utility; + +namespace Content.Server._Sunrise.Shuttles; + +[RegisterComponent] +public sealed partial class CodeEquipmentComponent : Component +{ + public List Shuttles = []; + + [DataField("shuttlePath")] + public ResPath ShuttlePath = new("Maps/_Sunrise/Shuttles/gamma_armory.yml"); + + [DataField] + public string TargetCode = "gamma"; + + [DataField] + public string PriorityTag = "DockGamma"; +} diff --git a/Content.Server/_Sunrise/Shuttles/CodeEquipmentShuttleComponent.cs b/Content.Server/_Sunrise/Shuttles/CodeEquipmentShuttleComponent.cs new file mode 100644 index 00000000000..7dde33eacdc --- /dev/null +++ b/Content.Server/_Sunrise/Shuttles/CodeEquipmentShuttleComponent.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Server._Sunrise.Shuttles; + +[RegisterComponent] +public sealed partial class CodeEquipmentShuttleComponent : Component +{ + [DataField("station")] + public EntityUid Station; + + [DataField] + public string PriorityTag = "DockGamma"; + + [DataField] + public bool EnableDockAnnouncement = true; + + [DataField] + public string DockAnnounceMessage = "announcement-gamma-armory"; +} diff --git a/Content.Server/_Sunrise/Shuttles/CodeEquipmentSystem.cs b/Content.Server/_Sunrise/Shuttles/CodeEquipmentSystem.cs new file mode 100644 index 00000000000..c5d9ad69509 --- /dev/null +++ b/Content.Server/_Sunrise/Shuttles/CodeEquipmentSystem.cs @@ -0,0 +1,106 @@ +using Content.Server._Sunrise.ImmortalGrid; +using Content.Server.AlertLevel; +using Content.Server.Chat.Managers; +using Content.Server.Chat.Systems; +using Content.Server.DeviceNetwork.Systems; +using Content.Server.GameTicking; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; +using Content.Server.Shuttles.Systems; +using Content.Server.Station.Components; +using Content.Server.Station.Events; +using Content.Server.Station.Systems; +using Content.Shared.Shuttles.Components; +using Robust.Server.GameObjects; +using Robust.Server.Maps; +using Robust.Shared.Configuration; +using Robust.Shared.Console; +using Robust.Shared.Map; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server._Sunrise.Shuttles; + +public sealed class CodeEquipmentSystem : EntitySystem +{ + [Dependency] private readonly IMapManager _mapManager = default!; + [Dependency] private readonly MapLoaderSystem _loader = default!; + [Dependency] private readonly ShuttleSystem _shuttles = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly ChatSystem _chat = default!; + public override void Initialize() + { + SubscribeLocalEvent(OnStationPostInit); + SubscribeLocalEvent(OnComponentStartup); + SubscribeLocalEvent(OnFTLShuttleTag); + SubscribeLocalEvent(OnFTLStartedEvent); + SubscribeLocalEvent(OnFTLCompletedEvent); + SubscribeLocalEvent(OnAlertLevelChanged); + } + + private void OnStationPostInit(EntityUid uid, CodeEquipmentComponent comp, StationPostInitEvent ev) + { + var map = _mapManager.CreateMap(); + var loadOptions = new MapLoadOptions(); + loadOptions.LoadMap = true; + loadOptions.StoreMapUids = true; + _loader.TryLoad(map, comp.ShuttlePath.ToString(), out var shuttleUids, loadOptions); + if (shuttleUids is null) + return; + comp.Shuttles.Add(shuttleUids[0]); + var gammaArmoryComp = EnsureComp(shuttleUids[0]); + gammaArmoryComp.Station = uid; + EnsureComp(shuttleUids[0]); + } + + private void OnFTLShuttleTag(EntityUid uid, CodeEquipmentShuttleComponent comp, ref FTLTagEvent ev) + { + if (ev.Handled) + return; + + ev.Handled = true; + ev.Tag = comp.PriorityTag; + } + + private void OnComponentStartup(EntityUid uid, CodeEquipmentShuttleComponent comp, ComponentStartup ev) + { + EnsureComp(uid); + } + + private void OnFTLStartedEvent(EntityUid uid, CodeEquipmentShuttleComponent comp, ref FTLStartedEvent ev) + { + + } + + private void OnFTLCompletedEvent(EntityUid uid, CodeEquipmentShuttleComponent comp, ref FTLCompletedEvent ev) + { + if (comp.EnableDockAnnouncement) + { + _chat.DispatchGlobalAnnouncement( + Loc.GetString(comp.DockAnnounceMessage), + colorOverride: Color.PaleVioletRed, + announceVoice: "Azir"); + } + } + + private void OnAlertLevelChanged(AlertLevelChangedEvent ev) + { + if (!TryComp(ev.Station, out var comp)) + return; + + if (ev.AlertLevel != comp.TargetCode) + return; + + var target = _station.GetLargestGrid(Comp(ev.Station)); + + if (target == null) + return; + + _shuttles.FTLToDock( + comp.Shuttles[0], + Comp(comp.Shuttles[0]), + target.Value, + priorityTag: comp.PriorityTag, + ignored: true); + } +} diff --git a/Resources/Maps/_Sunrise/Shuttles/gamma_armory.yml b/Resources/Maps/_Sunrise/Shuttles/gamma_armory.yml new file mode 100644 index 00000000000..5d0b1cd5559 --- /dev/null +++ b/Resources/Maps/_Sunrise/Shuttles/gamma_armory.yml @@ -0,0 +1,675 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 32: FloorDark + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: Оружейная "Гамма" + - type: Transform + pos: -0.5,-0.44266954 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: IAAAAAAAIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#DB7093FF' + id: WarnCornerNE + decals: + 0: 1,2 + - node: + color: '#DB7093FF' + id: WarnCornerNW + decals: + 1: -1,2 + - node: + color: '#DB7093FF' + id: WarnCornerSE + decals: + 10: 1,0 + - node: + color: '#DB7093FF' + id: WarnCornerSW + decals: + 2: -1,0 + - node: + color: '#DB7093FF' + id: WarnCornerSmallNE + decals: + 7: 0,2 + - node: + color: '#DB7093FF' + id: WarnCornerSmallNW + decals: + 6: 0,2 + - node: + color: '#DB7093FF' + id: WarnEndN + decals: + 5: 0,3 + - node: + color: '#DB7093FF' + id: WarnLineE + decals: + 9: 1,1 + - node: + color: '#DB7093FF' + id: WarnLineN + decals: + 4: 0,0 + - node: + color: '#DB7093FF' + id: WarnLineS + decals: + 3: -1,1 + - node: + color: '#FF8800FF' + id: guy + decals: + 8: 0.9270834,0.44801068 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 4915 + -1,0: + 0: 2184 + 0,-1: + 0: 256 + 1: 1024 + -1,-1: + 1: 1024 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#DB7A92FF' +- proto: AirlockExternalGlassShuttleGamma + entities: + - uid: 22 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 +- proto: APCHyperCapacity + entities: + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 +- proto: BoxMagazineRifle + entities: + - uid: 29 + components: + - type: Transform + parent: 28 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30 + components: + - type: Transform + parent: 28 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 34 + components: + - type: Transform + parent: 28 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 +- proto: CableHV + entities: + - uid: 60 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 +- proto: CableMV + entities: + - uid: 63 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 +- proto: ClothingHeadHelmetSwat + entities: + - uid: 55 + components: + - type: Transform + pos: 0.234375,3.9060118 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 0.640625,3.9216478 + parent: 2 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 53 + components: + - type: Transform + pos: 0.296875,3.4838436 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 0.671875,3.4838436 + parent: 2 +- proto: GeneratorWallmountBasic + entities: + - uid: 59 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 28 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 34 + - 33 + - 32 + - 31 + - 30 + - 29 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 42 + - 43 + - 44 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeIonRifle + entities: + - uid: 37 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: GunSafeRPGNanotrasen + entities: + - uid: 25 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 17 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 +- proto: PoweredlightPink + entities: + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 +- proto: PoweredlightRed + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 19 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 +- proto: TablePlasmaGlass + entities: + - uid: 52 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 +- proto: Thruster + entities: + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 2 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 +- proto: WeaponAMS-42 + entities: + - uid: 31 + components: + - type: Transform + parent: 28 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 32 + components: + - type: Transform + parent: 28 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 33 + components: + - type: Transform + parent: 28 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponGunLaserCarbineAutomatic + entities: + - uid: 42 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 44 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False + - type: InsideEntityStorage +... diff --git a/Resources/Maps/_Sunrise/Station/box.yml b/Resources/Maps/_Sunrise/Station/box.yml index 11dec15d8bc..e5510db9995 100644 --- a/Resources/Maps/_Sunrise/Station/box.yml +++ b/Resources/Maps/_Sunrise/Station/box.yml @@ -174,7 +174,7 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA version: 6 -2,2: ind: -2,2 @@ -6453,7 +6453,8 @@ entities: 0,8: 0: 65535 0,9: - 0: 65535 + 0: 65503 + 3: 32 0,10: 0: 65535 0,11: @@ -6540,7 +6541,7 @@ entities: 0: 52462 8,0: 0: 65527 - 3: 8 + 4: 8 8,1: 0: 65295 8,2: @@ -6548,7 +6549,7 @@ entities: 8,3: 0: 65535 9,0: - 3: 15 + 4: 15 0: 65520 9,1: 0: 65487 @@ -6557,7 +6558,7 @@ entities: 9,3: 0: 32767 10,0: - 3: 1 + 4: 1 0: 65534 10,1: 0: 65535 @@ -6901,7 +6902,7 @@ entities: 0: 65535 8,-1: 0: 30591 - 3: 34944 + 4: 34944 9,-4: 0: 65535 9,-3: @@ -6910,7 +6911,7 @@ entities: 0: 65535 9,-1: 0: 15 - 3: 65520 + 4: 65520 10,-4: 0: 65535 10,-3: @@ -6919,7 +6920,7 @@ entities: 0: 65535 10,-1: 0: 61167 - 3: 4368 + 4: 4368 11,-4: 0: 65535 11,-3: @@ -7746,7 +7747,7 @@ entities: 0: 65535 4,-17: 0: 34959 - 4: 30576 + 5: 30576 5,-20: 0: 62813 5,-19: @@ -7953,7 +7954,7 @@ entities: 0: 65535 3,-17: 0: 34959 - 5: 30576 + 6: 30576 0,-24: 0: 65416 0,-23: @@ -8476,6 +8477,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -10783,9 +10799,6 @@ entities: - type: Transform pos: 9.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 23210 - type: DeviceLinkSource linkedPorts: 23210: @@ -10795,9 +10808,6 @@ entities: - type: Transform pos: 9.5,-79.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11000 - type: DeviceLinkSource linkedPorts: 11000: @@ -10919,9 +10929,6 @@ entities: - type: Transform pos: -66.5,19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 562 - type: DeviceLinkSource linkedPorts: 562: @@ -10988,9 +10995,6 @@ entities: - type: Transform pos: -77.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1110 - type: DeviceLinkSource linkedPorts: 1110: @@ -11000,9 +11004,6 @@ entities: - type: Transform pos: -68.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12470 - type: DeviceLinkSource linkedPorts: 12470: @@ -11012,9 +11013,6 @@ entities: - type: Transform pos: -75.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 12469 - type: DeviceLinkSource linkedPorts: 12469: @@ -11071,17 +11069,19 @@ entities: parent: 8364 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 524 + - uid: 12471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,24.5 + pos: -67.5,-9.5 parent: 8364 - - uid: 12471 +- proto: AirlockExternalGlassShuttleGamma + entities: + - uid: 7365 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,-9.5 + pos: -21.5,24.5 parent: 8364 - proto: AirlockExternalGlassShuttleLocked entities: @@ -11155,9 +11155,6 @@ entities: - type: Transform pos: 47.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11652 - type: DeviceLinkSource linkedPorts: 11652: @@ -11167,9 +11164,6 @@ entities: - type: Transform pos: 47.5,21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11651 - type: DeviceLinkSource linkedPorts: 11651: @@ -11197,9 +11191,6 @@ entities: linkedPorts: 12466: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12466 - uid: 12469 components: - type: Transform @@ -11209,9 +11200,6 @@ entities: linkedPorts: 12468: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12468 - uid: 12470 components: - type: Transform @@ -11221,9 +11209,6 @@ entities: linkedPorts: 12467: - DoorStatus: Close - - type: DeviceLinkSink - links: - - 12467 - uid: 12486 components: - type: Transform @@ -11616,9 +11601,6 @@ entities: DockStatus: True - type: Physics canCollide: False - - type: DeviceLinkSink - links: - - 1495 - uid: 12325 components: - type: Transform @@ -14533,6 +14515,11 @@ entities: - type: Transform pos: 36.5,-3.5 parent: 8364 + - uid: 9153 + components: + - type: Transform + pos: -21.5,24.5 + parent: 8364 - uid: 9934 components: - type: Transform @@ -14573,12 +14560,6 @@ entities: - type: Transform pos: -44.5,-30.5 parent: 8364 - - uid: 20801 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 8364 - uid: 20856 components: - type: Transform @@ -15861,9 +15842,6 @@ entities: - type: Transform pos: 27.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3807 - uid: 3568 components: - type: MetaData @@ -15876,25 +15854,16 @@ entities: - type: Transform pos: 15.5,-53.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3753 - uid: 3851 components: - type: Transform pos: -6.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 4704 components: - type: Transform pos: 3.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 4824 components: - type: MetaData @@ -15914,105 +15883,66 @@ entities: - type: Transform pos: 82.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5370 - uid: 5798 components: - type: Transform pos: 5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 9182 components: - type: Transform pos: 5.5,36.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19935 - uid: 9379 components: - type: Transform pos: 4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17472 - uid: 10835 components: - type: Transform pos: -4.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 11732 components: - type: Transform pos: -5.5,-76.5 parent: 8364 - - type: DeviceLinkSink - links: - - 22835 - uid: 13910 components: - type: Transform pos: -61.5,-21.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2638 - uid: 17676 components: - type: Transform pos: 19.5,-86.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 18326 components: - type: Transform pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 18327 components: - type: Transform pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17791 - uid: 19078 components: - type: Transform pos: -10.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19080 components: - type: Transform pos: -11.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19090 components: - type: Transform pos: -12.5,-67.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5243 - uid: 19994 components: - type: Transform @@ -16028,41 +15958,26 @@ entities: - type: Transform pos: 19.5,-83.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20134 components: - type: Transform pos: 19.5,-84.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 20180 components: - type: Transform pos: 70.5,-39.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20181 components: - type: Transform pos: 70.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20182 components: - type: Transform pos: 70.5,-41.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19856 - uid: 20518 components: - type: Transform @@ -16073,49 +15988,31 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 8364 - - type: DeviceLinkSink - links: - - 3754 - uid: 26646 components: - type: Transform pos: 19.5,-85.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20126 - uid: 26666 components: - type: Transform pos: -3.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26667 components: - type: Transform pos: -3.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26671 - uid: 26668 components: - type: Transform pos: 2.5,-74.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - uid: 26669 components: - type: Transform pos: 2.5,-73.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26670 - proto: BlastDoorOpen entities: - uid: 3134 @@ -16124,107 +16021,68 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4212 components: - type: Transform rot: -1.5707963267948966 rad pos: 14.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 4494 components: - type: Transform pos: 7.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 4495 components: - type: Transform pos: 9.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4213 - uid: 5898 components: - type: Transform pos: -10.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 5911 components: - type: Transform pos: -10.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6086 components: - type: Transform pos: -10.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11625 - uid: 6087 components: - type: Transform pos: 9.5,-7.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6098 components: - type: Transform pos: 9.5,-8.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6099 components: - type: Transform pos: 9.5,-9.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11628 - uid: 6970 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,42.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4214 - uid: 19930 components: - type: Transform pos: -4.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - uid: 19932 components: - type: Transform pos: -5.5,33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19933 - proto: BlockGameArcade entities: - uid: 1873 @@ -16279,7 +16137,7 @@ entities: - type: Transform pos: 60.576424,0.7512084 parent: 8364 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 11336 components: @@ -17153,6 +17011,11 @@ entities: - type: Transform pos: -23.5,46.5 parent: 8364 + - uid: 524 + components: + - type: Transform + pos: -21.5,24.5 + parent: 8364 - uid: 538 components: - type: Transform @@ -20113,16 +19976,6 @@ entities: - type: Transform pos: -19.5,22.5 parent: 8364 - - uid: 9153 - components: - - type: Transform - pos: -22.5,25.5 - parent: 8364 - - uid: 9154 - components: - - type: Transform - pos: -22.5,23.5 - parent: 8364 - uid: 9156 components: - type: Transform @@ -20138,11 +19991,6 @@ entities: - type: Transform pos: -18.5,20.5 parent: 8364 - - uid: 9159 - components: - - type: Transform - pos: -22.5,24.5 - parent: 8364 - uid: 9160 components: - type: Transform @@ -38278,6 +38126,11 @@ entities: - type: Transform pos: 12.5,-31.5 parent: 8364 + - uid: 21352 + components: + - type: Transform + pos: -21.5,25.5 + parent: 8364 - uid: 21452 components: - type: Transform @@ -68568,7 +68421,7 @@ entities: - type: Transform pos: -46.493744,14.462048 parent: 8364 -- proto: ClothingOuterCoatInspector +- proto: ClothingOuterCoatDetectiveLoadout entities: - uid: 5116 components: @@ -69913,134 +69766,89 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 6226 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6227 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6228 components: - type: Transform pos: -57.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6229 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6230 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6231 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6232 components: - type: Transform rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6233 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6234 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6235 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 6236 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 7162 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7213 components: - type: Transform rot: -1.5707963267948966 rad pos: -44.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7307 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 7622 components: - type: Transform @@ -70053,9 +69861,6 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 9475 components: - type: Transform @@ -70074,72 +69879,48 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10535 components: - type: Transform rot: -1.5707963267948966 rad pos: -40.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10536 components: - type: Transform rot: -1.5707963267948966 rad pos: -39.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 10804 components: - type: Transform rot: -1.5707963267948966 rad pos: -37.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 11321 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 11325 components: - type: Transform rot: -1.5707963267948966 rad pos: -38.5,-31.5 parent: 8364 - - type: DeviceLinkSink - links: - - 11322 - uid: 13812 components: - type: Transform rot: 3.141592653589793 rad pos: -61.5,-20.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - uid: 17202 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20027 - uid: 20048 components: - type: Transform @@ -117024,17 +116805,25 @@ entities: - uid: 7364 components: - type: Transform - pos: -22.5,23.5 + rot: -1.5707963267948966 rad + pos: -28.5,27.5 + parent: 8364 + - uid: 7366 + components: + - type: Transform + pos: -20.5,25.5 parent: 8364 - - uid: 7365 + - uid: 7376 components: - type: Transform - pos: -22.5,25.5 + rot: -1.5707963267948966 rad + pos: -26.5,27.5 parent: 8364 - - uid: 7366 + - uid: 7377 components: - type: Transform - pos: -20.5,25.5 + rot: -1.5707963267948966 rad + pos: -29.5,27.5 parent: 8364 - uid: 7402 components: @@ -117948,6 +117737,12 @@ entities: - type: Transform pos: -13.5,39.5 parent: 8364 + - uid: 9154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,27.5 + parent: 8364 - uid: 9332 components: - type: Transform @@ -119201,6 +118996,36 @@ entities: - type: Transform pos: 51.5,-38.5 parent: 8364 + - uid: 21351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,27.5 + parent: 8364 + - uid: 21353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,26.5 + parent: 8364 + - uid: 21354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,27.5 + parent: 8364 + - uid: 21356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,27.5 + parent: 8364 + - uid: 21357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,26.5 + parent: 8364 - uid: 21375 components: - type: Transform @@ -120168,6 +119993,45 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,44.5 parent: 8364 +- proto: GunSafe + entities: + - uid: 9159 + components: + - type: Transform + pos: 1.5,37.5 + parent: 8364 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9236 + - 20801 + - 21349 + - 21350 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: GunSafeBlueShield entities: - uid: 21347 @@ -120187,13 +120051,6 @@ entities: - type: Transform pos: 0.5,33.5 parent: 8364 -- proto: GunSafeLaserCarbine - entities: - - uid: 9236 - components: - - type: Transform - pos: 1.5,37.5 - parent: 8364 - proto: GunSafeRifleLecter entities: - uid: 9177 @@ -120973,6 +120830,20 @@ entities: - type: Transform pos: 31.5,-10.5 parent: 8364 + - type: ContainerContainer + containers: + tape: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] - proto: KitchenElectricGrill entities: - uid: 27772 @@ -122885,9 +122756,6 @@ entities: - type: Transform pos: 71.5,-40.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17552 - proto: MachineCentrifuge entities: - uid: 16828 @@ -132949,9 +132817,6 @@ entities: - type: Transform pos: -58.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 13893 - proto: ReinforcedPlasmaWindow entities: - uid: 3494 @@ -135917,16 +135782,6 @@ entities: - type: Transform pos: -20.5,25.5 parent: 8364 - - uid: 7376 - components: - - type: Transform - pos: -22.5,25.5 - parent: 8364 - - uid: 7377 - components: - - type: Transform - pos: -22.5,23.5 - parent: 8364 - uid: 7378 components: - type: Transform @@ -138461,33 +138316,21 @@ entities: - type: Transform pos: 43.5,1.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27608 - uid: 20192 components: - type: Transform pos: 52.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20193 components: - type: Transform pos: 53.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - uid: 20194 components: - type: Transform pos: 54.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 4172 - proto: ShuttersNormalOpen entities: - uid: 1454 @@ -138496,225 +138339,144 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1455 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 1918 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-61.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1923 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-62.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 1924 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-63.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 2941 components: - type: Transform pos: 20.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 3001 components: - type: Transform pos: 19.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 5223 components: - type: Transform pos: -7.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5241 components: - type: Transform pos: -5.5,-66.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 5336 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5338 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 5590 components: - type: Transform pos: -12.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5591 components: - type: Transform pos: -12.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 5592 components: - type: Transform pos: -12.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 20896 - uid: 8158 components: - type: Transform pos: 6.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 8606 components: - type: Transform pos: 3.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8607 components: - type: Transform pos: 3.5,24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8614 components: - type: Transform pos: 2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8615 components: - type: Transform pos: 1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 9639 components: - type: Transform pos: -2.5,16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9640 components: - type: Transform pos: -2.5,15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9641 components: - type: Transform pos: -2.5,14.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9642 components: - type: Transform pos: -5.5,18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9421 - uid: 9923 components: - type: Transform pos: 10.5,-32.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5322 - uid: 14148 components: - type: Transform pos: 21.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 14850 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15377 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15391 components: - type: Transform @@ -138726,9 +138488,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-29.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 15426 components: - type: Transform @@ -138740,18 +138499,12 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17669 components: - type: Transform rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 8364 - - type: DeviceLinkSink - links: - - 17685 - uid: 17684 components: - type: Transform @@ -138762,146 +138515,92 @@ entities: - type: Transform pos: -0.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 18406 components: - type: Transform pos: -2.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 19022 components: - type: Transform pos: 23.5,-17.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19023 components: - type: Transform pos: 23.5,-18.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 19024 components: - type: Transform pos: 23.5,-19.5 parent: 8364 - - type: DeviceLinkSink - links: - - 14147 - uid: 22014 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-15.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5222 - uid: 22990 components: - type: Transform pos: -1.5,-65.5 parent: 8364 - - type: DeviceLinkSink - links: - - 1910 - uid: 26786 components: - type: Transform pos: -5.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26787 components: - type: Transform pos: -4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26788 components: - type: Transform pos: -2.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26789 components: - type: Transform pos: -1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26790 components: - type: Transform pos: -0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26791 components: - type: Transform pos: 0.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26792 components: - type: Transform pos: 1.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26793 components: - type: Transform pos: 4.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 26794 components: - type: Transform pos: 3.5,-3.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26795 - uid: 27220 components: - type: Transform pos: 7.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - uid: 27221 components: - type: Transform pos: 8.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 10732 - proto: ShuttersRadiationOpen entities: - uid: 3788 @@ -138909,33 +138608,21 @@ entities: - type: Transform pos: 0.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3789 components: - type: Transform pos: 1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3868 components: - type: Transform pos: -2.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - uid: 3875 components: - type: Transform pos: -1.5,-72.5 parent: 8364 - - type: DeviceLinkSink - links: - - 27389 - proto: ShuttersWindow entities: - uid: 1416 @@ -138952,161 +138639,101 @@ entities: - type: Transform pos: 18.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8645 components: - type: Transform pos: 17.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8646 components: - type: Transform pos: 16.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8647 components: - type: Transform pos: 15.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8648 components: - type: Transform pos: 14.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8649 components: - type: Transform pos: 13.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8650 components: - type: Transform pos: 12.5,23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9936 - uid: 8775 components: - type: Transform pos: -10.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8776 components: - type: Transform pos: -9.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8777 components: - type: Transform pos: -8.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8778 components: - type: Transform pos: -6.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8779 components: - type: Transform pos: -5.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8780 components: - type: Transform pos: -4.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8781 components: - type: Transform pos: -2.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8782 components: - type: Transform pos: -1.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 8783 components: - type: Transform pos: -0.5,22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 19931 - uid: 10454 components: - type: Transform pos: 35.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10455 components: - type: Transform pos: 36.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10456 components: - type: Transform pos: 37.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 10457 components: - type: Transform pos: 38.5,-10.5 parent: 8364 - - type: DeviceLinkSink - links: - - 9868 - uid: 20837 components: - type: Transform @@ -139127,57 +138754,36 @@ entities: - type: Transform pos: 69.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20841 components: - type: Transform pos: 70.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20842 components: - type: Transform pos: 71.5,-16.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20843 components: - type: Transform pos: 68.5,-22.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20844 components: - type: Transform pos: 68.5,-23.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20845 components: - type: Transform pos: 68.5,-24.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20846 components: - type: Transform pos: 68.5,-28.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20847 components: - type: Transform @@ -139188,9 +138794,6 @@ entities: - type: Transform pos: 68.5,-30.5 parent: 8364 - - type: DeviceLinkSink - links: - - 5478 - uid: 20849 components: - type: Transform @@ -139206,25 +138809,16 @@ entities: - type: Transform pos: 68.5,-33.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20852 components: - type: Transform pos: 68.5,-34.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - uid: 20853 components: - type: Transform pos: 68.5,-35.5 parent: 8364 - - type: DeviceLinkSink - links: - - 2468 - proto: ShuttleConsoleCircuitboard entities: - uid: 12454 @@ -149449,6 +149043,8 @@ entities: - type: Transform pos: 29.5,-0.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineAtmosDrobe entities: - uid: 22972 @@ -149456,6 +149052,8 @@ entities: - type: Transform pos: 5.5,-46.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineBooze entities: - uid: 13252 @@ -149463,16 +149061,22 @@ entities: - type: Transform pos: -38.5,18.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14098 components: - type: Transform pos: 12.5,-17.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19154 components: - type: Transform pos: 31.5,-3.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCargoDrobe entities: - uid: 10200 @@ -149480,6 +149084,8 @@ entities: - type: Transform pos: -30.5,-22.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCart entities: - uid: 6452 @@ -149487,6 +149093,8 @@ entities: - type: Transform pos: -8.5,-21.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChang entities: - uid: 5238 @@ -149494,11 +149102,15 @@ entities: - type: Transform pos: 57.5,-37.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 17860 components: - type: Transform pos: 44.5,-31.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChapel entities: - uid: 11147 @@ -149506,6 +149118,8 @@ entities: - type: Transform pos: 63.5,3.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefDrobe entities: - uid: 7068 @@ -149513,6 +149127,8 @@ entities: - type: Transform pos: 33.5,-4.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefvend entities: - uid: 10449 @@ -149520,6 +149136,8 @@ entities: - type: Transform pos: 35.5,-2.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemDrobe entities: - uid: 16331 @@ -149527,6 +149145,8 @@ entities: - type: Transform pos: 21.5,-27.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemicals entities: - uid: 17152 @@ -149534,6 +149154,8 @@ entities: - type: Transform pos: 22.5,-21.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCigs entities: - uid: 940 @@ -149541,51 +149163,71 @@ entities: - type: Transform pos: -13.5,-12.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5231 components: - type: Transform pos: 68.5,-47.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5594 components: - type: Transform pos: 16.5,39.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5690 components: - type: Transform pos: 5.5,-12.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12244 components: - type: Transform pos: -38.5,5.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12710 components: - type: Transform pos: -55.5,-0.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14096 components: - type: Transform pos: -54.5,-8.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14233 components: - type: Transform pos: -38.5,-4.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14561 components: - type: Transform pos: -18.5,-9.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21327 components: - type: Transform pos: 53.5,-37.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineClothing entities: - uid: 6924 @@ -149593,11 +149235,15 @@ entities: - type: Transform pos: 21.5,15.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14232 components: - type: Transform pos: -39.5,-4.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCoffee entities: - uid: 5232 @@ -149605,36 +149251,50 @@ entities: - type: Transform pos: 68.5,-43.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 8465 components: - type: Transform pos: 15.5,19.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10826 components: - type: Transform pos: 55.5,-10.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12463 components: - type: Transform pos: -74.5,8.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 17894 components: - type: Transform pos: 44.5,-32.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18745 components: - type: Transform pos: 9.5,-51.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21744 components: - type: Transform pos: -32.5,-72.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCola entities: - uid: 6451 @@ -149642,11 +149302,15 @@ entities: - type: Transform pos: 7.5,0.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14564 components: - type: Transform pos: -18.5,-10.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCondiments entities: - uid: 6958 @@ -149654,6 +149318,8 @@ entities: - type: Transform pos: 26.5,-3.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCuraDrobe entities: - uid: 14548 @@ -149661,6 +149327,8 @@ entities: - type: Transform pos: 61.5,-2.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDetDrobe entities: - uid: 9419 @@ -149668,6 +149336,8 @@ entities: - type: Transform pos: -8.5,16.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDinnerware entities: - uid: 19772 @@ -149675,6 +149345,8 @@ entities: - type: Transform pos: 35.5,-4.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDiscount entities: - uid: 12690 @@ -149682,6 +149354,8 @@ entities: - type: Transform pos: -71.5,-16.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDonut entities: - uid: 11797 @@ -149689,11 +149363,15 @@ entities: - type: Transform pos: 82.5,-1.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21790 components: - type: Transform pos: 6.5,33.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngiDrobe entities: - uid: 9189 @@ -149701,6 +149379,8 @@ entities: - type: Transform pos: 0.5,-66.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngivend entities: - uid: 16557 @@ -149708,6 +149388,8 @@ entities: - type: Transform pos: 6.5,-59.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGames entities: - uid: 15379 @@ -149715,6 +149397,8 @@ entities: - type: Transform pos: 53.5,2.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGeneDrobe entities: - uid: 1906 @@ -149722,6 +149406,8 @@ entities: - type: Transform pos: 44.5,-22.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHappyHonk entities: - uid: 10646 @@ -149729,6 +149415,8 @@ entities: - type: Transform pos: 35.5,0.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHydrobe entities: - uid: 6534 @@ -149736,6 +149424,8 @@ entities: - type: Transform pos: 49.5,1.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineJaniDrobe entities: - uid: 4517 @@ -149743,6 +149433,8 @@ entities: - type: Transform pos: 3.5,-33.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineLawDrobe entities: - uid: 9416 @@ -149750,6 +149442,8 @@ entities: - type: Transform pos: -10.5,13.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMedical entities: - uid: 5211 @@ -149757,21 +149451,29 @@ entities: - type: Transform pos: 41.5,-31.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16753 components: - type: Transform pos: 38.5,-26.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19093 components: - type: Transform pos: 18.5,-24.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19275 components: - type: Transform pos: 47.5,-55.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMediDrobe entities: - uid: 18322 @@ -149779,6 +149481,8 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineNutri entities: - uid: 10715 @@ -149786,6 +149490,8 @@ entities: - type: Transform pos: 45.5,-6.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRoboDrobe entities: - uid: 11316 @@ -149793,6 +149499,8 @@ entities: - type: Transform pos: 63.5,-24.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRobotics entities: - uid: 11912 @@ -149800,6 +149508,8 @@ entities: - type: Transform pos: 56.5,-24.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSalvage entities: - uid: 21793 @@ -149807,6 +149517,8 @@ entities: - type: Transform pos: -27.5,-29.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSciDrobe entities: - uid: 5503 @@ -149814,6 +149526,8 @@ entities: - type: Transform pos: 74.5,-28.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSec entities: - uid: 9074 @@ -149821,6 +149535,8 @@ entities: - type: Transform pos: 6.5,38.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSecDrobe entities: - uid: 2943 @@ -149828,16 +149544,22 @@ entities: - type: Transform pos: -60.5,5.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9142 components: - type: Transform pos: 6.5,39.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 17677 components: - type: Transform pos: -21.5,-31.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeeds entities: - uid: 10713 @@ -149845,6 +149567,8 @@ entities: - type: Transform pos: 46.5,-6.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeedsUnlocked entities: - uid: 9113 @@ -149852,6 +149576,8 @@ entities: - type: Transform pos: 4.5,51.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSnack entities: - uid: 6450 @@ -149859,11 +149585,15 @@ entities: - type: Transform pos: 7.5,1.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12473 components: - type: Transform pos: -73.5,-3.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSovietSoda entities: - uid: 21642 @@ -149871,11 +149601,15 @@ entities: - type: Transform pos: 61.5,19.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26548 components: - type: Transform pos: -24.5,45.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSustenance entities: - uid: 8757 @@ -149883,6 +149617,8 @@ entities: - type: Transform pos: 3.5,51.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEngineering entities: - uid: 22806 @@ -149890,6 +149626,8 @@ entities: - type: Transform pos: 63.5,-33.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEVA entities: - uid: 5507 @@ -149897,26 +149635,36 @@ entities: - type: Transform pos: 75.5,-43.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14610 components: - type: Transform pos: -28.5,-29.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20910 components: - type: Transform pos: 4.5,-44.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26809 components: - type: Transform pos: -8.5,9.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 27402 components: - type: Transform pos: 8.5,-77.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTheater entities: - uid: 6688 @@ -149924,6 +149672,8 @@ entities: - type: Transform pos: 22.5,6.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineVendomat entities: - uid: 12246 @@ -149931,11 +149681,15 @@ entities: - type: Transform pos: -46.5,5.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16127 components: - type: Transform pos: -3.5,-39.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineViroDrobe entities: - uid: 18643 @@ -149943,6 +149697,8 @@ entities: - type: Transform pos: 37.5,-53.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWallMedical entities: - uid: 19016 @@ -149950,6 +149706,8 @@ entities: - type: Transform pos: 34.5,-33.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWinter entities: - uid: 10466 @@ -149957,11 +149715,15 @@ entities: - type: Transform pos: -40.5,-4.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 27533 components: - type: Transform pos: 22.5,15.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineYouTool entities: - uid: 12245 @@ -149969,16 +149731,22 @@ entities: - type: Transform pos: -37.5,5.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16558 components: - type: Transform pos: 5.5,-59.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - uid: 27437 components: - type: Transform pos: 6.5,-65.5 parent: 8364 + - type: VendingMachine + startingPlayerCount: 1 - proto: WallmountTelescreen entities: - uid: 8441 @@ -169675,6 +169443,36 @@ entities: - type: Transform pos: 25.540077,32.58242 parent: 8364 +- proto: WeaponEnergyGun + entities: + - uid: 9236 + components: + - type: Transform + parent: 9159 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20801 + components: + - type: Transform + parent: 9159 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21349 + components: + - type: Transform + parent: 9159 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 21350 + components: + - type: Transform + parent: 9159 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponLaserCarbinePractice entities: - uid: 8772 @@ -170494,9 +170292,6 @@ entities: - type: Transform pos: -1.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 8743 - uid: 8625 components: - type: MetaData @@ -170504,9 +170299,6 @@ entities: - type: Transform pos: -5.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 25829 - uid: 8626 components: - type: MetaData @@ -170514,9 +170306,6 @@ entities: - type: Transform pos: -9.5,25.5 parent: 8364 - - type: DeviceLinkSink - links: - - 26575 - uid: 8973 components: - type: Transform diff --git a/Resources/Maps/_Sunrise/Station/delta.yml b/Resources/Maps/_Sunrise/Station/delta.yml index 45bb647d569..e0183fc1625 100644 --- a/Resources/Maps/_Sunrise/Station/delta.yml +++ b/Resources/Maps/_Sunrise/Station/delta.yml @@ -572,11 +572,11 @@ entities: version: 6 5,1: ind: 5,1 - tiles: gQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAfgAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,0: ind: 6,0 - tiles: QAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: QAAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAYAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-1: ind: 6,-1 @@ -648,7 +648,7 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 @@ -748,42 +748,42 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 7552: 13,-14 + 7548: 13,-14 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 5366: 27,31 + 5362: 27,31 - node: zIndex: 2 color: '#FFFFFFFF' id: Basalt1 decals: - 7282: -20.984354,41.89437 + 7278: -20.984354,41.89437 - node: color: '#FFFFFFFF' id: Basalt8 decals: - 7281: -17.640602,40.316242 + 7277: -17.640602,40.316242 - node: color: '#8BBF57FF' id: Bot decals: - 5435: -2,-17 + 5431: -2,-17 - node: color: '#8BFF57FF' id: Bot decals: - 5436: -1,-17 - 5437: -2,-17 + 5432: -1,-17 + 5433: -2,-17 - node: color: '#A91409FF' id: Bot decals: - 5133: 50,26 - 5134: 50,25 - 5135: 50,24 + 5129: 50,26 + 5130: 50,25 + 5131: 50,24 - node: color: '#FFFFFFFF' id: Bot @@ -997,71 +997,71 @@ entities: 4642: 62,13 4991: 8,-62 4992: 8,-59 - 5260: -53,-18 - 5350: 29,32 - 5351: 36,31 - 5352: 36,27 - 5367: 32,28 - 5440: 35,11 - 5441: 35,12 - 5462: -31,-54 - 5668: -23,-48 - 5669: -30,-44 - 5671: -30,-42 - 5672: -30,-41 - 5673: -30,-40 - 5674: -28,-38 - 5675: -28,-39 - 5679: -32,-40 - 5680: -32,-47 - 5729: -95,-6 - 5730: -91,-6 - 5731: -91,-10 - 5732: -95,-10 - 5830: 61,9 - 5831: 61,8 - 5832: 61,7 - 5833: 63,7 - 5834: 63,8 - 5835: 63,9 - 6808: -63,-24 - 6809: -63,-25 - 6810: -63,-27 - 6811: -63,-28 - 6812: -61,-27 - 6813: -61,-28 - 6814: -61,-25 - 6815: -61,-24 - 7019: -59,-12 - 7020: -57,-12 - 7021: -56,-12 - 7381: 4,35 - 7382: 4,37 - 7383: 3,37 - 7384: 2,33 - 7385: 4,33 - 7580: 16,77 - 7581: 18,79 - 7583: 16,78 - 7586: 18,78 - 7587: 17,78 - 7885: 6,-12 - 7886: 6,-11 - 7887: 7,-11 - 7888: 8,-11 - 7889: 9,-11 - 7890: 10,-11 - 7891: 10,-12 - 7892: 10,-13 - 7893: 10,-14 - 7894: 6,-14 - 7895: 6,-15 - 7896: 6,-16 - 7897: 6,-17 - 7898: 7,-17 - 7899: 9,-17 - 7900: 10,-17 - 7901: 8,-17 + 5256: -53,-18 + 5346: 29,32 + 5347: 36,31 + 5348: 36,27 + 5363: 32,28 + 5436: 35,11 + 5437: 35,12 + 5458: -31,-54 + 5664: -23,-48 + 5665: -30,-44 + 5667: -30,-42 + 5668: -30,-41 + 5669: -30,-40 + 5670: -28,-38 + 5671: -28,-39 + 5675: -32,-40 + 5676: -32,-47 + 5725: -95,-6 + 5726: -91,-6 + 5727: -91,-10 + 5728: -95,-10 + 5826: 61,9 + 5827: 61,8 + 5828: 61,7 + 5829: 63,7 + 5830: 63,8 + 5831: 63,9 + 6804: -63,-24 + 6805: -63,-25 + 6806: -63,-27 + 6807: -63,-28 + 6808: -61,-27 + 6809: -61,-28 + 6810: -61,-25 + 6811: -61,-24 + 7015: -59,-12 + 7016: -57,-12 + 7017: -56,-12 + 7377: 4,35 + 7378: 4,37 + 7379: 3,37 + 7380: 2,33 + 7381: 4,33 + 7576: 16,77 + 7577: 18,79 + 7579: 16,78 + 7582: 18,78 + 7583: 17,78 + 7881: 6,-12 + 7882: 6,-11 + 7883: 7,-11 + 7884: 8,-11 + 7885: 9,-11 + 7886: 10,-11 + 7887: 10,-12 + 7888: 10,-13 + 7889: 10,-14 + 7890: 6,-14 + 7891: 6,-15 + 7892: 6,-16 + 7893: 6,-17 + 7894: 7,-17 + 7895: 9,-17 + 7896: 10,-17 + 7897: 8,-17 - node: cleanable: True color: '#FFFFFFFF' @@ -1069,33 +1069,33 @@ entities: decals: 3906: -121,17 3907: -123,17 - 5318: 33,36 - 5319: 34,36 - 5320: 34,35 - 5321: 33,35 - 5322: 33,34 - 5323: 34,34 - 5722: 14,34 + 5314: 33,36 + 5315: 34,36 + 5316: 34,35 + 5317: 33,35 + 5318: 33,34 + 5319: 34,34 + 5718: 14,34 - node: zIndex: 10 color: '#FFFFFFFF' id: Bot decals: - 7343: -9,-43 - 7344: -9,-42 - 7345: -9,-40 - 7346: -9,-39 - 7347: -11,-42 - 7348: -11,-40 - 7349: -11,-39 - 7350: -11,-38 - 7351: -11,-44 - 7352: -11,-43 - 7355: -4,-39 - 7356: -4,-43 - 7357: -4,-42 - 7358: -4,-44 - 7359: -4,-38 + 7339: -9,-43 + 7340: -9,-42 + 7341: -9,-40 + 7342: -9,-39 + 7343: -11,-42 + 7344: -11,-40 + 7345: -11,-39 + 7346: -11,-38 + 7347: -11,-44 + 7348: -11,-43 + 7351: -4,-39 + 7352: -4,-43 + 7353: -4,-42 + 7354: -4,-44 + 7355: -4,-38 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1129,54 +1129,54 @@ entities: color: '#0096FFFF' id: BotGreyscale decals: - 5820: 59,7 - 5821: 59,8 - 5822: 59,9 - 5823: 57,9 - 5824: 57,8 - 5825: 57,7 + 5816: 59,7 + 5817: 59,8 + 5818: 59,9 + 5819: 57,9 + 5820: 57,8 + 5821: 57,7 - node: color: '#A91409FF' id: BotGreyscale decals: - 5136: 51,23 - 5137: 52,23 - 5138: 53,23 - 5139: 55,23 - 5140: 54,23 - 5141: 56,23 - 5142: 57,23 - 5143: 50,27 + 5132: 51,23 + 5133: 52,23 + 5134: 53,23 + 5135: 55,23 + 5136: 54,23 + 5137: 56,23 + 5138: 57,23 + 5139: 50,27 - node: color: '#FF0000FF' id: BotGreyscale decals: - 5843: 65,7 - 5844: 65,8 - 5845: 65,9 - 5846: 67,9 - 5847: 67,8 - 5848: 67,7 - 5849: 68,8 - 5850: 68,10 - 5851: 69,10 - 5852: 70,10 - 5853: 70,8 + 5839: 65,7 + 5840: 65,8 + 5841: 65,9 + 5842: 67,9 + 5843: 67,8 + 5844: 67,7 + 5845: 68,8 + 5846: 68,10 + 5847: 69,10 + 5848: 70,10 + 5849: 70,8 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 5733: -95,-3 - 5734: -91,-3 - 5735: -91,-13 - 5736: -95,-13 - 6926: -59,-24 - 6927: -59,-25 - 7910: 13,-14 - 7911: 12,-13 - 7912: 13,-13 - 7913: 13,-12 - 7914: 14,-13 + 5729: -95,-3 + 5730: -91,-3 + 5731: -91,-13 + 5732: -95,-13 + 6922: -59,-24 + 6923: -59,-25 + 7906: 13,-14 + 7907: 12,-13 + 7908: 13,-13 + 7909: 13,-12 + 7910: 14,-13 - node: cleanable: True color: '#FFFFFFFF' @@ -1213,8 +1213,8 @@ entities: id: BotLeftGreyscale decals: 1194: -71,7 - 7906: 14,-12 - 7907: 12,-14 + 7902: 14,-12 + 7903: 12,-14 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1241,17 +1241,17 @@ entities: 3751: -49,25 3752: -48,25 3753: -47,25 - 5273: -47,24 - 5274: -48,24 - 5275: -49,24 - 5276: -50,24 - 7258: -11,-73 + 5269: -47,24 + 5270: -48,24 + 5271: -49,24 + 5272: -50,24 + 7254: -11,-73 - node: color: '#FFFFFFFF' id: BotRightGreyscale decals: - 7908: 12,-12 - 7909: 14,-14 + 7904: 12,-12 + 7905: 14,-14 - node: cleanable: True color: '#A4610696' @@ -1300,33 +1300,33 @@ entities: 4812: 78,23 4813: 77,23 4912: 62,-6 - 5200: 72,2 - 5201: 72,3 - 5241: -12,-12 - 5242: -12,-13 - 5243: -12,-14 - 5244: -12,-15 - 5245: -12,-16 - 5460: -30,-53 - 5461: -31,-53 - 5463: -31,-52 - 5662: -35,-44 - 5663: -35,-46 - 5664: -35,-41 - 5665: -35,-39 - 5854: 69,3 - 5855: 70,3 - 7394: 68,3 - 7584: 17,79 - 7585: 18,77 + 5196: 72,2 + 5197: 72,3 + 5237: -12,-12 + 5238: -12,-13 + 5239: -12,-14 + 5240: -12,-15 + 5241: -12,-16 + 5456: -30,-53 + 5457: -31,-53 + 5459: -31,-52 + 5658: -35,-44 + 5659: -35,-46 + 5660: -35,-41 + 5661: -35,-39 + 5850: 69,3 + 5851: 70,3 + 7390: 68,3 + 7580: 17,79 + 7581: 18,77 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 5336: 29,28 - 5337: 29,27 - 5338: 29,26 + 5332: 29,28 + 5333: 29,27 + 5334: 29,26 - node: angle: 3.141592653589793 rad color: '#5D95E9FF' @@ -1339,375 +1339,375 @@ entities: id: BoxGreyscale decals: 1130: -62,4 - 5777: 8,-49 - 5778: 9,-49 - 5779: 10,-49 - 5780: 9,-53 - 5781: 8,-53 - 5782: 7,-53 - 5783: 6,-53 - 5784: 5,-53 - 5799: 10,-62 - 5800: 11,-62 - 5801: 12,-62 - 5802: 13,-62 - 5803: 14,-62 + 5773: 8,-49 + 5774: 9,-49 + 5775: 10,-49 + 5776: 9,-53 + 5777: 8,-53 + 5778: 7,-53 + 5779: 6,-53 + 5780: 5,-53 + 5795: 10,-62 + 5796: 11,-62 + 5797: 12,-62 + 5798: 13,-62 + 5799: 14,-62 - node: color: '#EFB34196' id: BrickCornerOverlayNE decals: - 6499: -62,-34 + 6495: -62,-34 - node: color: '#EFB34196' id: BrickCornerOverlayNW decals: - 6498: -64,-34 + 6494: -64,-34 - node: color: '#EFB34196' id: BrickCornerOverlaySE decals: - 6503: -62,-38 + 6499: -62,-38 - node: color: '#EFB34196' id: BrickCornerOverlaySW decals: - 6502: -64,-38 + 6498: -64,-38 - node: color: '#0000BDFF' id: BrickLineOverlayE decals: - 8005: 24,21 + 8001: 24,21 - node: color: '#EFB34196' id: BrickLineOverlayE decals: - 6505: -62,-37 - 6506: -62,-36 + 6501: -62,-37 + 6502: -62,-36 - node: color: '#EFB34196' id: BrickLineOverlayN decals: - 6497: -63,-34 + 6493: -63,-34 - node: color: '#EFB34196' id: BrickLineOverlayS decals: - 6504: -63,-38 + 6500: -63,-38 - node: color: '#EFB34196' id: BrickLineOverlayW decals: - 6500: -64,-35 - 6501: -64,-37 + 6496: -64,-35 + 6497: -64,-37 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 5792: 13,-59 - 5856: 70,4 - 7249: -15,-74 + 5788: 13,-59 + 5852: 70,4 + 7245: -15,-74 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 5793: 11,-59 - 7247: -19,-74 - 7393: 68,4 - 7455: 22,1 - 7456: 22,-3 + 5789: 11,-59 + 7243: -19,-74 + 7389: 68,4 + 7451: 22,1 + 7452: 22,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 5794: 13,-61 - 7463: 55,27 + 5790: 13,-61 + 7459: 55,27 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 5791: 11,-61 - 7453: 22,-5 - 7454: 22,-1 - 7464: 53,27 + 5787: 11,-61 + 7449: 22,-5 + 7450: 22,-1 + 7460: 53,27 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 7248: -15,-75 - 7466: 55,28 + 7244: -15,-75 + 7462: 55,28 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 7228: 15,37 - 7229: 16,37 - 7230: 17,37 - 7231: 18,37 - 7232: 19,37 - 7235: -57,10 - 7236: -56,10 - 7237: -55,10 - 7238: -54,10 - 7239: -53,10 - 7240: -52,10 - 7250: -18,-74 - 7251: -17,-74 - 7252: -17,-74 - 7256: -16,-74 - 7392: 69,4 - 7457: 23,-3 - 7458: 23,1 + 7224: 15,37 + 7225: 16,37 + 7226: 17,37 + 7227: 18,37 + 7228: 19,37 + 7231: -57,10 + 7232: -56,10 + 7233: -55,10 + 7234: -54,10 + 7235: -53,10 + 7236: -52,10 + 7246: -18,-74 + 7247: -17,-74 + 7248: -17,-74 + 7252: -16,-74 + 7388: 69,4 + 7453: 23,-3 + 7454: 23,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 7241: -57,14 - 7242: -56,14 - 7243: -55,14 - 7244: -54,14 - 7245: -53,14 - 7246: -52,14 - 7461: 23,-5 - 7462: 54,27 + 7237: -57,14 + 7238: -56,14 + 7239: -55,14 + 7240: -54,14 + 7241: -53,14 + 7242: -52,14 + 7457: 23,-5 + 7458: 54,27 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 7253: -19,-75 - 7254: -19,-74 - 7255: -18,-73 - 7459: 22,-4 - 7460: 22,0 - 7465: 53,28 + 7249: -19,-75 + 7250: -19,-74 + 7251: -18,-73 + 7455: 22,-4 + 7456: 22,0 + 7461: 53,28 - node: color: '#0000BDFF' id: BrickTileSteelCornerNe decals: - 8009: 24,22 + 8005: 24,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 7524: 39,-9 + 7520: 39,-9 - node: color: '#0000BDFF' id: BrickTileSteelCornerNw decals: - 8008: 20,22 + 8004: 20,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 7527: 35,-9 + 7523: 35,-9 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 5296: 28,1 + 5292: 28,1 - node: color: '#0000BDFF' id: BrickTileSteelCornerSe decals: - 8006: 24,18 + 8002: 24,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 7525: 39,-12 + 7521: 39,-12 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 5300: 30,1 + 5296: 30,1 - node: color: '#0000BDFF' id: BrickTileSteelCornerSw decals: - 8007: 20,18 + 8003: 20,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 7402: -29,38 - 7526: 35,-12 + 7398: -29,38 + 7522: 35,-12 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 5288: 28,-8 + 5284: 28,-8 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: - 7301: -33,33 + 7297: -33,33 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 7300: -29,33 + 7296: -29,33 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 7299: -33,37 + 7295: -33,37 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 7298: -29,37 - 7403: -28,38 + 7294: -29,37 + 7399: -28,38 - node: color: '#0000BDFF' id: BrickTileSteelLineE decals: - 8010: 24,21 - 8011: 24,20 - 8012: 24,19 + 8006: 24,21 + 8007: 24,20 + 8008: 24,19 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 7290: -33,34 - 7291: -33,35 - 7292: -33,36 - 7515: 39,-11 - 7516: 39,-10 + 7286: -33,34 + 7287: -33,35 + 7288: -33,36 + 7511: 39,-11 + 7512: 39,-10 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 5281: 28,-7 - 5282: 28,-6 - 5283: 28,-5 - 5284: 28,-4 - 5285: 28,-3 - 5286: 28,-1 - 5287: 28,0 - 5299: 30,2 - 5308: 28,-2 + 5277: 28,-7 + 5278: 28,-6 + 5279: 28,-5 + 5280: 28,-4 + 5281: 28,-3 + 5282: 28,-1 + 5283: 28,0 + 5295: 30,2 + 5304: 28,-2 - node: color: '#0000BDFF' id: BrickTileSteelLineN decals: - 8019: 21,22 - 8020: 22,22 - 8021: 23,22 + 8015: 21,22 + 8016: 22,22 + 8017: 23,22 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 7293: -32,33 - 7294: -31,33 - 7295: -30,33 - 7521: 36,-9 - 7522: 37,-9 - 7523: 38,-9 - 7701: 88,1 - 7702: 87,1 - 7703: 86,1 - 7704: 85,1 - 7705: 84,1 + 7289: -32,33 + 7290: -31,33 + 7291: -30,33 + 7517: 36,-9 + 7518: 37,-9 + 7519: 38,-9 + 7697: 88,1 + 7698: 87,1 + 7699: 86,1 + 7700: 85,1 + 7701: 84,1 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 5277: 25,-2 - 5278: 26,-2 - 5297: 29,1 - 5306: 27,-2 + 5273: 25,-2 + 5274: 26,-2 + 5293: 29,1 + 5302: 27,-2 - node: color: '#0000BDFF' id: BrickTileSteelLineS decals: - 8013: 21,18 - 8014: 22,18 - 8015: 23,18 + 8009: 21,18 + 8010: 22,18 + 8011: 23,18 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 7287: -32,37 - 7288: -31,37 - 7289: -30,37 - 7302: -66,16 - 7303: -65,16 - 7304: -64,16 - 7305: -63,16 - 7517: 36,-12 - 7519: 37,-12 - 7520: 38,-12 - 7699: 84,5 - 7700: 85,5 + 7283: -32,37 + 7284: -31,37 + 7285: -30,37 + 7298: -66,16 + 7299: -65,16 + 7300: -64,16 + 7301: -63,16 + 7513: 36,-12 + 7515: 37,-12 + 7516: 38,-12 + 7695: 84,5 + 7696: 85,5 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 5279: 25,-2 - 5280: 26,-2 - 5301: 29,1 - 5307: 27,-2 + 5275: 25,-2 + 5276: 26,-2 + 5297: 29,1 + 5303: 27,-2 - node: color: '#0000BDFF' id: BrickTileSteelLineW decals: - 8016: 20,19 - 8017: 20,20 - 8018: 20,21 + 8012: 20,19 + 8013: 20,20 + 8014: 20,21 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 7296: -29,34 - 7297: -29,35 - 7395: -28,32 - 7396: -28,33 - 7397: -28,34 - 7398: -28,35 - 7399: -28,36 - 7400: -28,37 - 7401: -29,36 - 7432: -26,8 - 7433: -26,9 - 7434: -26,12 - 7435: -26,13 - 7436: -26,14 - 7437: -26,15 - 7528: 35,-11 - 7529: 35,-10 - 7757: 95,-2 - 7758: 95,-1 - 7759: 95,0 - 7760: 95,-3 + 7292: -29,34 + 7293: -29,35 + 7391: -28,32 + 7392: -28,33 + 7393: -28,34 + 7394: -28,35 + 7395: -28,36 + 7396: -28,37 + 7397: -29,36 + 7428: -26,8 + 7429: -26,9 + 7430: -26,12 + 7431: -26,13 + 7432: -26,14 + 7433: -26,15 + 7524: 35,-11 + 7525: 35,-10 + 7753: 95,-2 + 7754: 95,-1 + 7755: 95,0 + 7756: 95,-3 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 5289: 28,-7 - 5290: 28,-6 - 5291: 28,-5 - 5292: 28,-4 - 5293: 28,-3 - 5294: 28,-1 - 5295: 28,0 - 5298: 30,2 + 5285: 28,-7 + 5286: 28,-6 + 5287: 28,-5 + 5288: 28,-4 + 5289: 28,-3 + 5290: 28,-1 + 5291: 28,0 + 5294: 30,2 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 7259: -16,27 - 7260: -16,29 - 7261: -16,31 - 7262: -16,33 - 7263: -16,32 - 7264: -16,28 + 7255: -16,27 + 7256: -16,29 + 7257: -16,31 + 7258: -16,33 + 7259: -16,32 + 7260: -16,28 - node: color: '#80C71FFF' id: BrickTileWhiteCornerNe @@ -1724,25 +1724,25 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 7641: 12,82 - 7642: 19,81 + 7637: 12,82 + 7638: 19,81 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 7404: -22,15 + 7400: -22,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 5165: 70,-41 - 5417: 0,-15 + 5161: 70,-41 + 5413: 0,-15 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerNw decals: - 5186: 72,-44 + 5182: 72,-44 - node: color: '#80C71FFF' id: BrickTileWhiteCornerNw @@ -1759,27 +1759,27 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 7643: 14,81 - 7644: 10,82 - 7645: 14,76 + 7639: 14,81 + 7640: 10,82 + 7641: 14,76 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 7405: -29,15 + 7401: -29,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 5166: 69,-41 - 5418: -1,-15 + 5162: 69,-41 + 5414: -1,-15 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 5163: 69,-47 + 5159: 69,-47 - node: color: '#80C71FFF' id: BrickTileWhiteCornerSe @@ -1795,31 +1795,31 @@ entities: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 7649: 12,74 - 7650: 19,74 + 7645: 12,74 + 7646: 19,74 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 7407: -22,8 + 7403: -22,8 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 5175: 75,-47 - 5420: 0,-16 + 5171: 75,-47 + 5416: 0,-16 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 5164: 75,-42 + 5160: 75,-42 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerSw decals: - 5187: 72,-46 + 5183: 72,-46 - node: color: '#80C71FFF' id: BrickTileWhiteCornerSw @@ -1835,31 +1835,31 @@ entities: color: '#D4D4D4FF' id: BrickTileWhiteCornerSw decals: - 7499: 45,-19 + 7495: 45,-19 - node: color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 7646: 14,74 - 7647: 14,80 - 7648: 10,74 + 7642: 14,74 + 7643: 14,80 + 7644: 10,74 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 7406: -29,8 + 7402: -29,8 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 5419: -1,-16 + 5415: -1,-16 - node: color: '#0A6AB6FF' id: BrickTileWhiteEndE decals: - 5189: 73,-44 - 5190: 73,-46 + 5185: 73,-44 + 5186: 73,-46 - node: color: '#9FED58FF' id: BrickTileWhiteEndN @@ -1876,27 +1876,27 @@ entities: color: '#D4D4D4FF' id: BrickTileWhiteInnerNe decals: - 7547: -122,46 + 7543: -122,46 - node: color: '#D4D4D4FF' id: BrickTileWhiteInnerNw decals: - 7548: -116,46 + 7544: -116,46 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 7657: 15,76 + 7653: 15,76 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 7656: 15,80 + 7652: 15,80 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineE decals: - 5191: 72,-45 + 5187: 72,-45 - node: color: '#3AB3DAFF' id: BrickTileWhiteLineE @@ -2159,22 +2159,22 @@ entities: 3754: -43,16 3755: -43,17 3758: -43,18 - 7467: 43,-17 - 7468: 43,-16 - 7469: 43,-15 - 7470: 43,-19 - 7471: 43,-20 - 7472: 43,-13 - 7473: 43,-12 - 7474: 43,-11 - 7475: 43,-10 - 7496: 46,-20 - 7536: -122,49 - 7537: -122,48 - 7538: -122,47 - 7539: -122,50 - 7595: 16,-15 - 7596: 16,-16 + 7463: 43,-17 + 7464: 43,-16 + 7465: 43,-15 + 7466: 43,-19 + 7467: 43,-20 + 7468: 43,-13 + 7469: 43,-12 + 7470: 43,-11 + 7471: 43,-10 + 7492: 46,-20 + 7532: -122,49 + 7533: -122,48 + 7534: -122,47 + 7535: -122,50 + 7591: 16,-15 + 7592: 16,-16 - node: color: '#DE3A3AFF' id: BrickTileWhiteLineE @@ -2185,38 +2185,38 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 7616: 12,75 - 7617: 12,76 - 7618: 12,77 - 7619: 12,78 - 7620: 12,79 - 7621: 12,80 - 7622: 12,81 - 7623: 19,75 - 7624: 19,76 - 7625: 19,77 - 7626: 19,78 - 7627: 19,79 - 7628: 19,80 + 7612: 12,75 + 7613: 12,76 + 7614: 12,77 + 7615: 12,78 + 7616: 12,79 + 7617: 12,80 + 7618: 12,81 + 7619: 19,75 + 7620: 19,76 + 7621: 19,77 + 7622: 19,78 + 7623: 19,79 + 7624: 19,80 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteLineE decals: - 7414: -22,9 - 7415: -22,10 - 7416: -22,11 - 7417: -22,12 - 7418: -22,13 - 7419: -22,14 + 7410: -22,9 + 7411: -22,10 + 7412: -22,11 + 7413: -22,12 + 7414: -22,13 + 7415: -22,14 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 5176: 75,-46 - 5177: 75,-45 - 5178: 75,-44 - 5179: 75,-43 + 5172: 75,-46 + 5173: 75,-45 + 5174: 75,-44 + 5175: 75,-43 - node: color: '#3AB3DAFF' id: BrickTileWhiteLineN @@ -2361,48 +2361,48 @@ entities: 3547: 17,2 3548: 17,7 3757: -42,19 - 7486: 44,-21 - 7487: 45,-21 - 7488: 44,-18 - 7489: 44,-14 - 7490: 47,-21 - 7491: 48,-21 - 7492: 49,-21 - 7493: 50,-21 - 7494: 51,-21 - 7495: 52,-21 - 7518: 28,-12 - 7544: -118,46 - 7545: -119,46 - 7546: -120,46 + 7482: 44,-21 + 7483: 45,-21 + 7484: 44,-18 + 7485: 44,-14 + 7486: 47,-21 + 7487: 48,-21 + 7488: 49,-21 + 7489: 50,-21 + 7490: 51,-21 + 7491: 52,-21 + 7514: 28,-12 + 7540: -118,46 + 7541: -119,46 + 7542: -120,46 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 7635: 11,82 - 7636: 15,81 - 7637: 16,81 - 7638: 17,81 - 7639: 18,81 + 7631: 11,82 + 7632: 15,81 + 7633: 16,81 + 7634: 17,81 + 7635: 18,81 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteLineN decals: - 7420: -23,15 - 7421: -24,15 - 7422: -25,15 - 7423: -26,15 - 7424: -27,15 - 7425: -28,15 + 7416: -23,15 + 7417: -24,15 + 7418: -25,15 + 7419: -26,15 + 7420: -27,15 + 7421: -28,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 5180: 74,-42 - 5181: 73,-42 - 5182: 72,-42 - 5183: 71,-42 + 5176: 74,-42 + 5177: 73,-42 + 5178: 72,-42 + 5179: 71,-42 - node: color: '#3AB3DAFF' id: BrickTileWhiteLineS @@ -2541,49 +2541,49 @@ entities: 3537: 31,6 3756: -42,19 3775: -42,23 - 7483: 44,-14 - 7484: 44,-9 - 7485: 44,-18 - 7500: 47,-19 - 7501: 48,-19 - 7502: 49,-19 - 7503: 50,-19 - 7504: 51,-19 - 7505: 52,-19 + 7479: 44,-14 + 7480: 44,-9 + 7481: 44,-18 + 7496: 47,-19 + 7497: 48,-19 + 7498: 49,-19 + 7499: 50,-19 + 7500: 51,-19 + 7501: 52,-19 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 7651: 15,74 - 7652: 16,74 - 7653: 17,74 - 7654: 18,74 - 7655: 11,74 + 7647: 15,74 + 7648: 16,74 + 7649: 17,74 + 7650: 18,74 + 7651: 11,74 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteLineS decals: - 7408: -28,8 - 7409: -27,8 - 7410: -26,8 - 7411: -25,8 - 7412: -24,8 - 7413: -23,8 + 7404: -28,8 + 7405: -27,8 + 7406: -26,8 + 7407: -25,8 + 7408: -24,8 + 7409: -23,8 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 5170: 70,-47 - 5171: 71,-47 - 5172: 72,-47 - 5173: 73,-47 - 5174: 74,-47 + 5166: 70,-47 + 5167: 71,-47 + 5168: 72,-47 + 5169: 73,-47 + 5170: 74,-47 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineW decals: - 5188: 72,-45 + 5184: 72,-45 - node: color: '#3AB3DAFF' id: BrickTileWhiteLineW @@ -2838,19 +2838,19 @@ entities: 3772: -41,20 3773: -41,21 3774: -41,22 - 7476: 45,-10 - 7477: 45,-13 - 7478: 45,-11 - 7479: 45,-12 - 7480: 45,-15 - 7481: 45,-16 - 7482: 45,-17 - 7497: 53,-20 - 7498: 46,-20 - 7540: -116,47 - 7541: -116,48 - 7542: -116,49 - 7543: -116,50 + 7472: 45,-10 + 7473: 45,-13 + 7474: 45,-11 + 7475: 45,-12 + 7476: 45,-15 + 7477: 45,-16 + 7478: 45,-17 + 7493: 53,-20 + 7494: 46,-20 + 7536: -116,47 + 7537: -116,48 + 7538: -116,49 + 7539: -116,50 - node: color: '#DE3A3AFF' id: BrickTileWhiteLineW @@ -2861,88 +2861,88 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 7629: 15,77 - 7630: 15,78 - 7631: 15,79 - 7632: 10,79 - 7633: 10,78 - 7634: 10,77 - 7640: 14,75 + 7625: 15,77 + 7626: 15,78 + 7627: 15,79 + 7628: 10,79 + 7629: 10,78 + 7630: 10,77 + 7636: 14,75 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteLineW decals: - 7426: -29,14 - 7427: -29,13 - 7428: -29,12 - 7429: -29,11 - 7430: -29,10 - 7431: -29,9 + 7422: -29,14 + 7423: -29,13 + 7424: -29,12 + 7425: -29,11 + 7426: -29,10 + 7427: -29,9 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 5167: 69,-42 - 5168: 69,-43 - 5169: 69,-46 - 5185: 69,-45 - 5421: 2,-17 - 5422: 2,-16 - 5423: 2,-15 - 5424: 2,-14 + 5163: 69,-42 + 5164: 69,-43 + 5165: 69,-46 + 5181: 69,-45 + 5417: 2,-17 + 5418: 2,-16 + 5419: 2,-15 + 5420: 2,-14 - node: color: '#FFFFFFFF' id: BushAThree decals: - 5208: -36,48 - 5209: -36,50 + 5204: -36,48 + 5205: -36,50 - node: color: '#FFFFFFFF' id: BushCOne decals: - 5866: -18,39 + 5862: -18,39 - node: color: '#FFFFFFFF' id: Busha1 decals: - 5456: -43.133636,-38.091503 - 5457: -45.18062,-32.962475 - 6332: -38,35 + 5452: -43.133636,-38.091503 + 5453: -45.18062,-32.962475 + 6328: -38,35 - node: color: '#FFFFFFFF' id: Busha2 decals: - 6333: -38,31 + 6329: -38,31 - node: zIndex: 4 color: '#FFFFFFFF' id: Busha2 decals: - 7272: -17.874979,40.956867 - 7273: -20.781229,41.409996 - 7274: -18.140604,39.519367 + 7268: -17.874979,40.956867 + 7269: -20.781229,41.409996 + 7270: -18.140604,39.519367 - node: color: '#FFFFFFFF' id: Busha3 decals: - 6334: -41,31 + 6330: -41,31 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 5207: -36,50 + 5203: -36,50 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 5206: -36,48 - 5455: -44.91489,-39.19307 + 5202: -36,48 + 5451: -44.91489,-39.19307 - node: color: '#FFFFFFFF' id: Bushc3 decals: - 5867: -20,43 + 5863: -20,43 - node: color: '#FFFFFFFF' id: Bushf1 @@ -2986,7 +2986,7 @@ entities: color: '#FFFFFFFF' id: Bushi2 decals: - 5458: -51.935246,-34.15779 + 5454: -51.935246,-34.15779 - node: color: '#FFFFFFFF' id: Bushi3 @@ -2997,7 +2997,7 @@ entities: color: '#FFFFFFFF' id: Bushn1 decals: - 7275: -20.453102,40.503746 + 7271: -20.453102,40.503746 - node: angle: 1.5707963267948966 rad color: '#FED83DFF' @@ -3049,10 +3049,10 @@ entities: 4768: 58,1 4769: 62,1 4770: 66,1 - 5144: 92,26 - 5145: -68,60 - 5459: -24,-50 - 7582: 17,78 + 5140: 92,26 + 5141: -68,60 + 5455: -24,-50 + 7578: 17,78 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3062,8 +3062,8 @@ entities: 2873: 5,77 4138: -31,84 4139: -31,77 - 5160: -53,54 - 5184: 69,-47 + 5156: -53,54 + 5180: 69,-47 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -3310,14 +3310,14 @@ entities: color: '#EFB34196' id: ConcreteTrimCornerNw decals: - 7563: 13,81 - 7566: 13,76 + 7559: 13,81 + 7562: 13,76 - node: color: '#EFB34196' id: ConcreteTrimCornerSw decals: - 7564: 13,80 - 7565: 13,75 + 7560: 13,80 + 7561: 13,75 - node: color: '#FFFFFFFF' id: Delivery @@ -3482,40 +3482,40 @@ entities: 4774: 33,6 4794: 38,4 4803: 61,12 - 5159: 61,24 - 5264: 71,-3 - 5265: 71,-5 - 5347: 30,32 - 5348: 36,32 - 5349: 36,28 - 5368: 33,26 - 5369: 32,26 - 5666: -27,-48 - 5667: -26,-48 - 5670: -30,-45 - 5677: -32,-46 - 5678: -32,-39 - 5681: -32,-44 - 5682: -32,-45 - 5718: -34,-36 - 5719: -33,-36 - 5721: 13,26 - 5828: 61,6 - 5829: 63,6 - 5857: 61,3 - 5858: 63,3 - 7216: 10,30 - 7549: -120,49 - 7550: -118,49 - 7578: 17,77 - 7579: 16,79 - 7666: 20,80 - 7667: 20,79 - 7668: 20,78 - 7669: 20,77 - 7670: 20,76 - 7671: 20,75 - 7884: 6,-13 + 5155: 61,24 + 5260: 71,-3 + 5261: 71,-5 + 5343: 30,32 + 5344: 36,32 + 5345: 36,28 + 5364: 33,26 + 5365: 32,26 + 5662: -27,-48 + 5663: -26,-48 + 5666: -30,-45 + 5673: -32,-46 + 5674: -32,-39 + 5677: -32,-44 + 5678: -32,-45 + 5714: -34,-36 + 5715: -33,-36 + 5717: 13,26 + 5824: 61,6 + 5825: 63,6 + 5853: 61,3 + 5854: 63,3 + 7212: 10,30 + 7545: -120,49 + 7546: -118,49 + 7574: 17,77 + 7575: 16,79 + 7662: 20,80 + 7663: 20,79 + 7664: 20,78 + 7665: 20,77 + 7666: 20,76 + 7667: 20,75 + 7880: 6,-13 - node: cleanable: True color: '#FFFFFFFF' @@ -3524,21 +3524,21 @@ entities: 3902: -115,19 3903: -115,18 3904: -115,17 - 5330: 25,49 - 5331: 25,50 - 5332: 25,51 - 5333: 38,51 - 5334: 38,50 - 5335: 38,49 - 5339: 33,28 + 5326: 25,49 + 5327: 25,50 + 5328: 25,51 + 5329: 38,51 + 5330: 38,50 + 5331: 38,49 + 5335: 33,28 - node: zIndex: 10 color: '#FFFFFFFF' id: Delivery decals: - 7353: -11,-41 - 7354: -4,-41 - 7360: -4,-40 + 7349: -11,-41 + 7350: -4,-41 + 7356: -4,-40 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3591,10 +3591,10 @@ entities: color: '#0096FFFF' id: DeliveryGreyscale decals: - 5826: 57,6 - 5827: 59,6 - 5836: 57,3 - 5837: 59,3 + 5822: 57,6 + 5823: 59,6 + 5832: 57,3 + 5833: 59,3 - node: color: '#DE3A3A96' id: DeliveryGreyscale @@ -3609,19 +3609,19 @@ entities: color: '#FF0000FF' id: DeliveryGreyscale decals: - 5838: 65,6 - 5839: 67,6 - 5840: 68,7 - 5841: 70,7 - 5842: 65,3 + 5834: 65,6 + 5835: 67,6 + 5836: 68,7 + 5837: 70,7 + 5838: 65,3 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay decals: - 5413: 0,-15 - 5414: 0,-16 - 5415: -1,-15 - 5416: -1,-16 + 5409: 0,-15 + 5410: 0,-16 + 5411: -1,-15 + 5412: -1,-16 - node: cleanable: True color: '#A461061F' @@ -3649,219 +3649,219 @@ entities: 2051: -77,-32 2052: -77,-26 4949: -66,-20 - 5340: 35,34 - 5341: 36,37 - 5342: 34,38 - 5343: 40,29 - 5344: 42,30 - 5371: -5,-15 - 5372: 28,-61 - 5373: 34,-61 - 5374: 36,-62 - 5375: 35,-64 - 5376: 34,-66 - 5377: 35,-67 - 5378: 36,-68 - 5379: 33,-70 - 5380: 34,-69 - 5381: 34,-68 - 5382: 35,-69 - 5383: 35,-70 - 5384: 35,-71 - 5385: 35,-68 - 5386: 39,-67 - 5387: 40,-68 - 5388: 41,-68 - 5389: 39,-71 - 5390: 41,-74 - 5391: 41,-71 - 5392: 30,-68 - 5393: 30,-69 - 5394: 31,-69 - 5395: 30,-69 - 5396: 32,-67 - 5397: 28,-70 - 5398: 27,-66 - 5411: 31,-61 - 5656: -24,-26 - 5657: -30,-36 - 5714: -33,-40 - 5715: -33,-47 - 6117: -42,63 - 6118: -41,63 - 6119: -42,59 - 6120: -42,60 - 6139: -36,59 - 6140: -36,60 - 6141: -34,61 - 6352: -38,29 - 6353: -39,26 - 6354: -38,25 - 6367: -39,60 - 6368: -38,59 - 6530: -64,-36 - 6531: -63,-37 - 6532: -71,-38 - 6533: -72,-36 - 6534: -68,-34 - 6535: -66,-36 - 6536: -66,-37 - 6552: -66,-41 - 6553: -70,-41 - 6554: -69,-42 - 6555: -72,-42 - 6556: -68,-45 - 6557: -70,-46 - 6558: -66,-47 - 6570: -60,-34 - 6571: -59,-36 - 6572: -58,-35 - 6573: -59,-34 - 6574: -60,-39 - 6575: -58,-39 - 6576: -58,-37 - 6577: -60,-36 - 6636: -59,-46 - 6637: -59,-46 - 6638: -59,-44 - 6639: -58,-44 - 6640: -59,-43 - 6641: -58,-42 - 6642: -58,-41 - 6643: -60,-42 - 6889: -66,-29 - 6890: -58,-26 - 6891: -60,-28 - 6892: -58,-29 - 7003: -72,-28 - 7004: -72,-26 - 7005: -69,-25 - 7006: -70,-28 - 7007: -70,-29 - 7008: -70,-25 - 7009: -69,-23 - 7010: -69,-24 - 7160: 34,-20 - 7161: 33,-20 - 7162: 33,-19 - 7163: 36,-21 - 7164: 35,-23 - 7165: 37,-23 - 7166: 37,-24 - 7167: 41,-24 - 7168: 40,-24 - 7169: 40,-27 - 7170: 41,-28 - 7171: 43,-29 - 7172: 26,-20 - 7173: 24,-21 - 7174: 23,-23 - 7175: 24,-23 - 7176: 23,-23 - 7177: 22,-21 - 7178: 21,-22 - 7179: 20,-21 - 7180: 21,-21 - 7181: 22,-18 - 7182: 52,-29 - 7183: 52,-29 - 7184: 52,-31 - 7185: 52,-34 - 7186: 52,-37 - 7187: 51,-39 - 7188: 52,-42 - 7189: 52,-45 - 7190: 51,-48 - 7191: 51,-48 - 7192: 47,-48 - 7193: 44,-48 - 7194: 41,-48 - 7195: 37,-47 - 7196: 36,-49 - 7197: 37,-56 - 7198: 34,-56 - 7199: 32,-55 - 7200: 30,-55 + 5336: 35,34 + 5337: 36,37 + 5338: 34,38 + 5339: 40,29 + 5340: 42,30 + 5367: -5,-15 + 5368: 28,-61 + 5369: 34,-61 + 5370: 36,-62 + 5371: 35,-64 + 5372: 34,-66 + 5373: 35,-67 + 5374: 36,-68 + 5375: 33,-70 + 5376: 34,-69 + 5377: 34,-68 + 5378: 35,-69 + 5379: 35,-70 + 5380: 35,-71 + 5381: 35,-68 + 5382: 39,-67 + 5383: 40,-68 + 5384: 41,-68 + 5385: 39,-71 + 5386: 41,-74 + 5387: 41,-71 + 5388: 30,-68 + 5389: 30,-69 + 5390: 31,-69 + 5391: 30,-69 + 5392: 32,-67 + 5393: 28,-70 + 5394: 27,-66 + 5407: 31,-61 + 5652: -24,-26 + 5653: -30,-36 + 5710: -33,-40 + 5711: -33,-47 + 6113: -42,63 + 6114: -41,63 + 6115: -42,59 + 6116: -42,60 + 6135: -36,59 + 6136: -36,60 + 6137: -34,61 + 6348: -38,29 + 6349: -39,26 + 6350: -38,25 + 6363: -39,60 + 6364: -38,59 + 6526: -64,-36 + 6527: -63,-37 + 6528: -71,-38 + 6529: -72,-36 + 6530: -68,-34 + 6531: -66,-36 + 6532: -66,-37 + 6548: -66,-41 + 6549: -70,-41 + 6550: -69,-42 + 6551: -72,-42 + 6552: -68,-45 + 6553: -70,-46 + 6554: -66,-47 + 6566: -60,-34 + 6567: -59,-36 + 6568: -58,-35 + 6569: -59,-34 + 6570: -60,-39 + 6571: -58,-39 + 6572: -58,-37 + 6573: -60,-36 + 6632: -59,-46 + 6633: -59,-46 + 6634: -59,-44 + 6635: -58,-44 + 6636: -59,-43 + 6637: -58,-42 + 6638: -58,-41 + 6639: -60,-42 + 6885: -66,-29 + 6886: -58,-26 + 6887: -60,-28 + 6888: -58,-29 + 6999: -72,-28 + 7000: -72,-26 + 7001: -69,-25 + 7002: -70,-28 + 7003: -70,-29 + 7004: -70,-25 + 7005: -69,-23 + 7006: -69,-24 + 7156: 34,-20 + 7157: 33,-20 + 7158: 33,-19 + 7159: 36,-21 + 7160: 35,-23 + 7161: 37,-23 + 7162: 37,-24 + 7163: 41,-24 + 7164: 40,-24 + 7165: 40,-27 + 7166: 41,-28 + 7167: 43,-29 + 7168: 26,-20 + 7169: 24,-21 + 7170: 23,-23 + 7171: 24,-23 + 7172: 23,-23 + 7173: 22,-21 + 7174: 21,-22 + 7175: 20,-21 + 7176: 21,-21 + 7177: 22,-18 + 7178: 52,-29 + 7179: 52,-29 + 7180: 52,-31 + 7181: 52,-34 + 7182: 52,-37 + 7183: 51,-39 + 7184: 52,-42 + 7185: 52,-45 + 7186: 51,-48 + 7187: 51,-48 + 7188: 47,-48 + 7189: 44,-48 + 7190: 41,-48 + 7191: 37,-47 + 7192: 36,-49 + 7193: 37,-56 + 7194: 34,-56 + 7195: 32,-55 + 7196: 30,-55 - node: color: '#FFFFFFFF' id: DirtHeavy decals: 2902: 6,89 - 7930: 86,2 - 7931: 92,4 - 7932: 90,4 - 7933: 90,2 - 7934: 91,3 - 7935: 91,2 - 7936: 93,2 - 7937: 93,0 - 7938: 92,-2 - 7939: 93,-3 - 7940: 94,-2 - 7941: 94,-1 + 7926: 86,2 + 7927: 92,4 + 7928: 90,4 + 7929: 90,2 + 7930: 91,3 + 7931: 91,2 + 7932: 93,2 + 7933: 93,0 + 7934: 92,-2 + 7935: 93,-3 + 7936: 94,-2 + 7937: 94,-1 + 7938: 97,-1 + 7939: 96,-2 + 7940: 98,-3 + 7941: 98,-1 7942: 97,-1 7943: 96,-2 - 7944: 98,-3 - 7945: 98,-1 - 7946: 97,-1 - 7947: 96,-2 - 7948: 94,5 + 7944: 94,5 + 7945: 93,6 + 7946: 93,8 + 7947: 92,9 + 7948: 92,6 7949: 93,6 - 7950: 93,8 - 7951: 92,9 - 7952: 92,6 - 7953: 93,6 - 7954: 94,8 - 7955: 93,6 - 7956: 91,5 - 7957: 94,4 - 7958: 95,4 - 7959: 91,4 - 7960: 86,4 - 7961: 84,5 - 7962: 82,5 - 7963: 80,5 - 7964: 82,4 - 7965: 82,2 - 7966: 81,1 - 7967: 80,1 - 7968: 82,1 - 7969: 87,3 - 7970: 86,1 + 7950: 94,8 + 7951: 93,6 + 7952: 91,5 + 7953: 94,4 + 7954: 95,4 + 7955: 91,4 + 7956: 86,4 + 7957: 84,5 + 7958: 82,5 + 7959: 80,5 + 7960: 82,4 + 7961: 82,2 + 7962: 81,1 + 7963: 80,1 + 7964: 82,1 + 7965: 87,3 + 7966: 86,1 + 7967: 85,-1 + 7968: 87,-2 + 7969: 86,-2 + 7970: 84,-1 7971: 85,-1 - 7972: 87,-2 - 7973: 86,-2 - 7974: 84,-1 - 7975: 85,-1 - 7976: 85,-2 - 7977: 85,-2 - 7978: 85,-1 - 7979: 84,-1 - 7980: 88,-2 - 7981: 87,-1 - 7982: 87,-2 - 7983: 91,1 - 7984: 90,1 - 7985: 90,0 - 7986: 90,-1 - 7987: 90,-4 - 7988: 90,-4 - 7989: 88,-5 - 7990: 88,-5 - 7991: 89,-5 - 7992: 86,-4 - 7993: 85,-4 - 7994: 82,-4 - 7995: 81,-2 - 7996: 81,-2 - 7997: 82,-4 - 7998: 89,-4 - 7999: 94,-4 - 8000: 88,7 - 8001: 87,7 - 8002: 89,4 - 8003: 88,4 - 8004: 89,4 + 7972: 85,-2 + 7973: 85,-2 + 7974: 85,-1 + 7975: 84,-1 + 7976: 88,-2 + 7977: 87,-1 + 7978: 87,-2 + 7979: 91,1 + 7980: 90,1 + 7981: 90,0 + 7982: 90,-1 + 7983: 90,-4 + 7984: 90,-4 + 7985: 88,-5 + 7986: 88,-5 + 7987: 89,-5 + 7988: 86,-4 + 7989: 85,-4 + 7990: 82,-4 + 7991: 81,-2 + 7992: 81,-2 + 7993: 82,-4 + 7994: 89,-4 + 7995: 94,-4 + 7996: 88,7 + 7997: 87,7 + 7998: 89,4 + 7999: 88,4 + 8000: 89,4 - node: cleanable: True color: '#FFFFFFFF' @@ -3928,622 +3928,622 @@ entities: 2605: -10,-70 4443: -12,-36 4459: -15,-32 - 5150: 59,24 - 5399: 30,-69 - 5400: 36,-66 - 5401: 40,-62 - 5402: 45,-63 - 5403: 39,-71 - 5410: 27,-69 - 5412: 36,-60 - 5471: -36,-37 - 5472: -37,-37 - 5473: -39,-37 - 5474: -38,-36 - 5475: -39,-36 - 5476: -38,-37 - 5477: -40,-36 - 5478: -41,-37 - 5479: -41,-36 - 5480: -36,-37 - 5481: -37,-37 - 5482: -38,-37 - 5483: -38,-36 - 5484: -35,-37 - 5485: -39,-37 - 5486: -39,-36 - 5487: -40,-36 - 5488: -40,-37 - 5489: -41,-37 - 5658: -26,-36 - 5936: 25,59 - 5937: 25,60 - 5938: 27,56 - 5939: 26,56 - 5940: 30,56 - 5941: 31,56 - 5942: 31,58 - 5967: 18,56 - 5968: 18,56 - 5969: 20,56 - 5970: 11,56 - 5971: 10,56 - 5982: 15,65 - 5983: 14,68 - 5984: 14,68 - 5985: 14,67 - 5986: 15,66 - 5990: 12,72 - 5991: 13,72 - 5992: 14,60 - 5993: 14,59 - 5994: 16,59 - 5995: 16,58 - 5996: 16,58 - 5997: 18,59 - 5998: 17,61 - 5999: 17,62 - 6000: 12,62 - 6001: 12,60 - 6002: 19,61 - 6003: 21,63 - 6042: 15,62 - 6043: 16,62 - 6044: 18,61 - 6045: 18,66 - 6046: 19,67 - 6047: 19,66 - 6048: 21,66 - 6049: 21,65 - 6050: 22,66 - 6051: 23,67 - 6052: 23,66 - 6053: 26,65 - 6054: 25,65 - 6055: 25,67 - 6056: 27,67 - 6057: 26,66 - 6058: 27,66 - 6059: 27,65 - 6060: 26,67 - 6061: 22,69 - 6062: 23,70 - 6063: 19,70 - 6064: 18,69 - 6065: 17,69 - 6066: 17,71 - 6067: 20,71 - 6068: 20,72 - 6069: 18,72 - 6070: 14,68 - 6071: 15,68 - 6072: 15,69 - 6073: 22,72 - 6093: 24,66 - 6094: 9,66 - 6095: 11,67 - 6096: 11,66 - 6097: 12,66 - 6098: 12,68 - 6099: 11,70 - 6100: 10,68 - 6101: 9,67 - 6102: 9,70 - 6142: -40,60 - 6143: -40,59 - 6144: -41,59 - 6145: -40,62 - 6146: -42,62 - 6166: -28,58 - 6167: -30,57 - 6168: -30,57 - 6169: -30,58 - 6170: -31,57 - 6171: -24,57 - 6172: -25,57 - 6173: -24,55 - 6174: -24,56 - 6175: -25,57 - 6176: -31,58 - 6177: -35,57 - 6178: -36,57 - 6179: -37,57 - 6180: -40,57 - 6181: -42,57 - 6182: -42,56 - 6183: -42,53 - 6184: -42,51 - 6185: -42,48 - 6186: -42,48 - 6187: -41,49 - 6188: -42,49 - 6189: -41,50 - 6190: -42,47 - 6191: -42,45 - 6192: -42,44 - 6193: -42,43 - 6194: -42,42 - 6195: -40,42 - 6196: -40,42 - 6197: -38,42 - 6198: -37,42 - 6199: -36,42 - 6200: -36,39 - 6201: -36,37 - 6202: -37,37 - 6203: -38,37 - 6204: -39,37 - 6205: -41,37 - 6206: -45,37 - 6207: -45,38 - 6208: -45,40 - 6209: -44,40 - 6210: -44,41 - 6211: -45,41 - 6212: -43,36 - 6213: -43,34 - 6214: -43,32 - 6215: -43,30 - 6216: -43,28 - 6217: -43,30 - 6218: -43,26 - 6219: -43,25 - 6220: -41,25 - 6221: -41,25 - 6222: -36,25 - 6223: -36,24 - 6224: -36,23 - 6225: -37,23 - 6226: -39,23 - 6227: -38,23 - 6228: -33,23 - 6229: -32,23 - 6230: -31,22 - 6231: -31,22 - 6232: -31,21 - 6233: -31,23 - 6234: -30,23 - 6235: -29,25 - 6236: -28,25 - 6237: -24,26 - 6238: -23,26 - 6239: -26,17 - 6240: -25,17 - 6241: -25,17 - 6242: -31,13 - 6243: -31,12 - 6244: -31,10 - 6245: -31,8 - 6295: -39,54 - 6296: -40,54 - 6297: -40,53 - 6298: -39,52 - 6299: -38,53 - 6300: -38,54 - 6301: -38,54 - 6302: -37,53 - 6303: -37,55 - 6316: -40,45 - 6317: -40,46 - 6318: -39,46 - 6319: -39,44 - 6320: -38,44 - 6321: -37,44 - 6322: -36,44 - 6323: -36,45 - 6324: -38,45 - 6325: -39,45 - 6326: -38,46 - 6327: -40,44 - 6364: -39,29 - 6365: -39,29 - 6366: -41,27 - 6369: -65,-46 - 6372: -70,-41 - 6373: -63,-43 - 6374: -63,-43 - 6428: -66,-47 - 6429: -66,-46 - 6430: -67,-46 - 6431: -66,-45 - 6432: -65,-46 - 6433: -65,-47 - 6434: -66,-48 - 6435: -64,-47 - 6436: -64,-46 - 6437: -63,-46 - 6438: -62,-47 - 6439: -66,-43 - 6440: -67,-44 - 6441: -68,-44 + 5146: 59,24 + 5395: 30,-69 + 5396: 36,-66 + 5397: 40,-62 + 5398: 45,-63 + 5399: 39,-71 + 5406: 27,-69 + 5408: 36,-60 + 5467: -36,-37 + 5468: -37,-37 + 5469: -39,-37 + 5470: -38,-36 + 5471: -39,-36 + 5472: -38,-37 + 5473: -40,-36 + 5474: -41,-37 + 5475: -41,-36 + 5476: -36,-37 + 5477: -37,-37 + 5478: -38,-37 + 5479: -38,-36 + 5480: -35,-37 + 5481: -39,-37 + 5482: -39,-36 + 5483: -40,-36 + 5484: -40,-37 + 5485: -41,-37 + 5654: -26,-36 + 5932: 25,59 + 5933: 25,60 + 5934: 27,56 + 5935: 26,56 + 5936: 30,56 + 5937: 31,56 + 5938: 31,58 + 5963: 18,56 + 5964: 18,56 + 5965: 20,56 + 5966: 11,56 + 5967: 10,56 + 5978: 15,65 + 5979: 14,68 + 5980: 14,68 + 5981: 14,67 + 5982: 15,66 + 5986: 12,72 + 5987: 13,72 + 5988: 14,60 + 5989: 14,59 + 5990: 16,59 + 5991: 16,58 + 5992: 16,58 + 5993: 18,59 + 5994: 17,61 + 5995: 17,62 + 5996: 12,62 + 5997: 12,60 + 5998: 19,61 + 5999: 21,63 + 6038: 15,62 + 6039: 16,62 + 6040: 18,61 + 6041: 18,66 + 6042: 19,67 + 6043: 19,66 + 6044: 21,66 + 6045: 21,65 + 6046: 22,66 + 6047: 23,67 + 6048: 23,66 + 6049: 26,65 + 6050: 25,65 + 6051: 25,67 + 6052: 27,67 + 6053: 26,66 + 6054: 27,66 + 6055: 27,65 + 6056: 26,67 + 6057: 22,69 + 6058: 23,70 + 6059: 19,70 + 6060: 18,69 + 6061: 17,69 + 6062: 17,71 + 6063: 20,71 + 6064: 20,72 + 6065: 18,72 + 6066: 14,68 + 6067: 15,68 + 6068: 15,69 + 6069: 22,72 + 6089: 24,66 + 6090: 9,66 + 6091: 11,67 + 6092: 11,66 + 6093: 12,66 + 6094: 12,68 + 6095: 11,70 + 6096: 10,68 + 6097: 9,67 + 6098: 9,70 + 6138: -40,60 + 6139: -40,59 + 6140: -41,59 + 6141: -40,62 + 6142: -42,62 + 6162: -28,58 + 6163: -30,57 + 6164: -30,57 + 6165: -30,58 + 6166: -31,57 + 6167: -24,57 + 6168: -25,57 + 6169: -24,55 + 6170: -24,56 + 6171: -25,57 + 6172: -31,58 + 6173: -35,57 + 6174: -36,57 + 6175: -37,57 + 6176: -40,57 + 6177: -42,57 + 6178: -42,56 + 6179: -42,53 + 6180: -42,51 + 6181: -42,48 + 6182: -42,48 + 6183: -41,49 + 6184: -42,49 + 6185: -41,50 + 6186: -42,47 + 6187: -42,45 + 6188: -42,44 + 6189: -42,43 + 6190: -42,42 + 6191: -40,42 + 6192: -40,42 + 6193: -38,42 + 6194: -37,42 + 6195: -36,42 + 6196: -36,39 + 6197: -36,37 + 6198: -37,37 + 6199: -38,37 + 6200: -39,37 + 6201: -41,37 + 6202: -45,37 + 6203: -45,38 + 6204: -45,40 + 6205: -44,40 + 6206: -44,41 + 6207: -45,41 + 6208: -43,36 + 6209: -43,34 + 6210: -43,32 + 6211: -43,30 + 6212: -43,28 + 6213: -43,30 + 6214: -43,26 + 6215: -43,25 + 6216: -41,25 + 6217: -41,25 + 6218: -36,25 + 6219: -36,24 + 6220: -36,23 + 6221: -37,23 + 6222: -39,23 + 6223: -38,23 + 6224: -33,23 + 6225: -32,23 + 6226: -31,22 + 6227: -31,22 + 6228: -31,21 + 6229: -31,23 + 6230: -30,23 + 6231: -29,25 + 6232: -28,25 + 6233: -24,26 + 6234: -23,26 + 6235: -26,17 + 6236: -25,17 + 6237: -25,17 + 6238: -31,13 + 6239: -31,12 + 6240: -31,10 + 6241: -31,8 + 6291: -39,54 + 6292: -40,54 + 6293: -40,53 + 6294: -39,52 + 6295: -38,53 + 6296: -38,54 + 6297: -38,54 + 6298: -37,53 + 6299: -37,55 + 6312: -40,45 + 6313: -40,46 + 6314: -39,46 + 6315: -39,44 + 6316: -38,44 + 6317: -37,44 + 6318: -36,44 + 6319: -36,45 + 6320: -38,45 + 6321: -39,45 + 6322: -38,46 + 6323: -40,44 + 6360: -39,29 + 6361: -39,29 + 6362: -41,27 + 6365: -65,-46 + 6368: -70,-41 + 6369: -63,-43 + 6370: -63,-43 + 6424: -66,-47 + 6425: -66,-46 + 6426: -67,-46 + 6427: -66,-45 + 6428: -65,-46 + 6429: -65,-47 + 6430: -66,-48 + 6431: -64,-47 + 6432: -64,-46 + 6433: -63,-46 + 6434: -62,-47 + 6435: -66,-43 + 6436: -67,-44 + 6437: -68,-44 + 6438: -68,-44 + 6439: -68,-45 + 6440: -69,-46 + 6441: -70,-46 6442: -68,-44 - 6443: -68,-45 - 6444: -69,-46 - 6445: -70,-46 - 6446: -68,-44 - 6447: -69,-43 - 6448: -68,-42 - 6449: -68,-40 - 6450: -67,-41 - 6451: -70,-40 - 6452: -71,-40 - 6453: -70,-42 - 6454: -71,-42 - 6455: -72,-40 - 6456: -64,-41 - 6457: -65,-41 - 6458: -65,-40 - 6459: -64,-42 - 6460: -68,-43 - 6461: -68,-43 - 6462: -67,-42 - 6463: -64,-44 - 6507: -63,-37 - 6508: -63,-38 - 6509: -62,-38 - 6510: -62,-36 - 6511: -63,-36 - 6512: -63,-36 - 6513: -62,-35 - 6514: -63,-34 - 6515: -63,-34 - 6516: -64,-35 - 6517: -63,-35 - 6537: -72,-38 - 6538: -72,-37 - 6539: -66,-37 - 6540: -66,-36 - 6541: -66,-34 - 6542: -66,-35 - 6543: -65,-35 - 6544: -61,-36 - 6559: -60,-36 - 6560: -60,-35 - 6561: -60,-37 - 6562: -59,-37 - 6563: -59,-38 - 6564: -60,-39 - 6565: -58,-38 - 6566: -58,-39 - 6567: -58,-36 - 6568: -59,-35 - 6569: -58,-34 - 6578: -59,-42 - 6579: -60,-42 - 6580: -60,-43 - 6581: -60,-41 - 6582: -59,-41 - 6583: -59,-40 - 6584: -59,-44 - 6585: -59,-45 - 6586: -59,-46 - 6587: -60,-46 - 6588: -60,-45 - 6589: -58,-46 - 6590: -58,-44 - 6591: -58,-43 - 6628: -58,-50 - 6629: -59,-51 - 6630: -60,-50 - 6631: -60,-49 - 6632: -58,-48 - 6633: -58,-48 - 6634: -59,-48 - 6635: -59,-49 - 6644: -38,-1 - 6645: -39,0 - 6646: -37,1 - 6647: -38,1 - 6648: -37,2 - 6649: -37,0 - 6650: -39,2 - 6651: -39,2 - 6685: -54,-47 - 6686: -52,-48 - 6687: -52,-48 - 6688: -51,-49 - 6689: -49,-48 - 6690: -48,-48 - 6691: -49,-47 - 6692: -50,-47 - 6693: -52,-47 - 6694: -49,-47 - 6695: -50,-46 - 6696: -49,-45 - 6697: -50,-44 - 6698: -50,-44 - 6699: -54,-45 - 6700: -55,-47 - 6701: -56,-46 - 6702: -55,-45 - 6703: -54,-44 - 6704: -55,-43 - 6705: -56,-44 - 6706: -54,-46 - 6707: -53,-47 + 6443: -69,-43 + 6444: -68,-42 + 6445: -68,-40 + 6446: -67,-41 + 6447: -70,-40 + 6448: -71,-40 + 6449: -70,-42 + 6450: -71,-42 + 6451: -72,-40 + 6452: -64,-41 + 6453: -65,-41 + 6454: -65,-40 + 6455: -64,-42 + 6456: -68,-43 + 6457: -68,-43 + 6458: -67,-42 + 6459: -64,-44 + 6503: -63,-37 + 6504: -63,-38 + 6505: -62,-38 + 6506: -62,-36 + 6507: -63,-36 + 6508: -63,-36 + 6509: -62,-35 + 6510: -63,-34 + 6511: -63,-34 + 6512: -64,-35 + 6513: -63,-35 + 6533: -72,-38 + 6534: -72,-37 + 6535: -66,-37 + 6536: -66,-36 + 6537: -66,-34 + 6538: -66,-35 + 6539: -65,-35 + 6540: -61,-36 + 6555: -60,-36 + 6556: -60,-35 + 6557: -60,-37 + 6558: -59,-37 + 6559: -59,-38 + 6560: -60,-39 + 6561: -58,-38 + 6562: -58,-39 + 6563: -58,-36 + 6564: -59,-35 + 6565: -58,-34 + 6574: -59,-42 + 6575: -60,-42 + 6576: -60,-43 + 6577: -60,-41 + 6578: -59,-41 + 6579: -59,-40 + 6580: -59,-44 + 6581: -59,-45 + 6582: -59,-46 + 6583: -60,-46 + 6584: -60,-45 + 6585: -58,-46 + 6586: -58,-44 + 6587: -58,-43 + 6624: -58,-50 + 6625: -59,-51 + 6626: -60,-50 + 6627: -60,-49 + 6628: -58,-48 + 6629: -58,-48 + 6630: -59,-48 + 6631: -59,-49 + 6640: -38,-1 + 6641: -39,0 + 6642: -37,1 + 6643: -38,1 + 6644: -37,2 + 6645: -37,0 + 6646: -39,2 + 6647: -39,2 + 6681: -54,-47 + 6682: -52,-48 + 6683: -52,-48 + 6684: -51,-49 + 6685: -49,-48 + 6686: -48,-48 + 6687: -49,-47 + 6688: -50,-47 + 6689: -52,-47 + 6690: -49,-47 + 6691: -50,-46 + 6692: -49,-45 + 6693: -50,-44 + 6694: -50,-44 + 6695: -54,-45 + 6696: -55,-47 + 6697: -56,-46 + 6698: -55,-45 + 6699: -54,-44 + 6700: -55,-43 + 6701: -56,-44 + 6702: -54,-46 + 6703: -53,-47 + 6704: -50,-48 + 6705: -49,-48 + 6706: -48,-47 + 6707: -47,-48 6708: -50,-48 - 6709: -49,-48 - 6710: -48,-47 - 6711: -47,-48 - 6712: -50,-48 - 6713: -51,-48 - 6714: -48,-49 - 6715: -48,-47 - 6716: -47,-47 - 6717: -46,-48 - 6718: -47,-46 - 6719: -47,-45 - 6720: -46,-45 - 6721: -47,-45 - 6722: -47,-44 - 6723: -46,-44 - 6724: -46,-43 - 6725: -47,-44 - 6726: -47,-48 - 6727: -49,-48 - 6728: -49,-46 - 6729: -50,-46 - 6730: -49,-45 - 6731: -50,-44 - 6732: -51,-44 - 6733: -50,-43 + 6709: -51,-48 + 6710: -48,-49 + 6711: -48,-47 + 6712: -47,-47 + 6713: -46,-48 + 6714: -47,-46 + 6715: -47,-45 + 6716: -46,-45 + 6717: -47,-45 + 6718: -47,-44 + 6719: -46,-44 + 6720: -46,-43 + 6721: -47,-44 + 6722: -47,-48 + 6723: -49,-48 + 6724: -49,-46 + 6725: -50,-46 + 6726: -49,-45 + 6727: -50,-44 + 6728: -51,-44 + 6729: -50,-43 + 6730: -53,-44 + 6731: -54,-44 + 6732: -54,-43 + 6733: -53,-44 6734: -53,-44 6735: -54,-44 - 6736: -54,-43 - 6737: -53,-44 - 6738: -53,-44 + 6736: -52,-44 + 6737: -51,-44 + 6738: -50,-43 6739: -54,-44 - 6740: -52,-44 - 6741: -51,-44 - 6742: -50,-43 - 6743: -54,-44 - 6744: -55,-44 - 6745: -55,-44 - 6746: -55,-45 - 6747: -55,-46 - 6748: -56,-46 - 6749: -55,-47 - 6750: -52,-48 - 6751: -50,-49 - 6752: -49,-49 - 6753: -52,-48 - 6754: -53,-49 - 6755: -53,-49 - 6756: -54,-48 - 6757: -52,-49 - 6758: -47,-47 - 6759: -46,-47 - 6760: -56,-49 - 6761: -56,-49 - 6762: -56,-48 - 6763: -50,-48 - 6764: -47,-48 - 6765: -46,-47 - 6766: -53,-37 - 6767: -52,-37 - 6768: -52,-38 - 6769: -52,-38 - 6770: -51,-38 - 6771: -52,-36 - 6772: -52,-36 - 6773: -50,-36 - 6774: -48,-36 - 6775: -48,-38 - 6776: -49,-38 - 6777: -49,-36 - 6778: -50,-37 - 6779: -50,-38 - 6780: -51,-37 - 6781: -52,-38 - 6782: -53,-38 - 6783: -54,-37 - 6836: -66,-27 - 6837: -66,-26 - 6838: -65,-27 - 6839: -64,-29 - 6840: -62,-29 - 6841: -63,-29 - 6842: -61,-29 - 6843: -59,-29 - 6844: -60,-28 - 6845: -61,-28 - 6846: -63,-28 - 6847: -63,-27 - 6848: -61,-25 - 6849: -61,-25 - 6850: -61,-24 - 6851: -63,-24 - 6852: -63,-25 - 6853: -61,-26 - 6854: -61,-27 - 6855: -61,-23 - 6856: -62,-23 - 6857: -60,-23 - 6858: -60,-24 - 6859: -60,-25 - 6860: -59,-24 - 6861: -58,-24 - 6862: -58,-25 - 6863: -58,-27 - 6864: -58,-29 - 6865: -59,-28 - 6866: -59,-27 - 6867: -58,-23 - 6868: -59,-23 - 6869: -64,-24 - 6870: -65,-25 - 6871: -65,-25 - 6872: -66,-24 - 6873: -66,-23 - 6874: -64,-23 - 6875: -66,-25 - 6876: -66,-26 - 6877: -65,-27 - 6925: -59,-25 - 6957: -70,-29 - 6958: -70,-28 - 6959: -71,-28 - 6960: -72,-29 - 6961: -72,-28 - 6962: -72,-26 - 6963: -71,-27 - 6964: -70,-27 - 6965: -70,-24 - 6966: -71,-25 - 6967: -72,-23 - 6968: -70,-23 - 6969: -68,-23 - 6970: -70,-26 - 6971: -68,-26 - 6972: -68,-26 + 6740: -55,-44 + 6741: -55,-44 + 6742: -55,-45 + 6743: -55,-46 + 6744: -56,-46 + 6745: -55,-47 + 6746: -52,-48 + 6747: -50,-49 + 6748: -49,-49 + 6749: -52,-48 + 6750: -53,-49 + 6751: -53,-49 + 6752: -54,-48 + 6753: -52,-49 + 6754: -47,-47 + 6755: -46,-47 + 6756: -56,-49 + 6757: -56,-49 + 6758: -56,-48 + 6759: -50,-48 + 6760: -47,-48 + 6761: -46,-47 + 6762: -53,-37 + 6763: -52,-37 + 6764: -52,-38 + 6765: -52,-38 + 6766: -51,-38 + 6767: -52,-36 + 6768: -52,-36 + 6769: -50,-36 + 6770: -48,-36 + 6771: -48,-38 + 6772: -49,-38 + 6773: -49,-36 + 6774: -50,-37 + 6775: -50,-38 + 6776: -51,-37 + 6777: -52,-38 + 6778: -53,-38 + 6779: -54,-37 + 6832: -66,-27 + 6833: -66,-26 + 6834: -65,-27 + 6835: -64,-29 + 6836: -62,-29 + 6837: -63,-29 + 6838: -61,-29 + 6839: -59,-29 + 6840: -60,-28 + 6841: -61,-28 + 6842: -63,-28 + 6843: -63,-27 + 6844: -61,-25 + 6845: -61,-25 + 6846: -61,-24 + 6847: -63,-24 + 6848: -63,-25 + 6849: -61,-26 + 6850: -61,-27 + 6851: -61,-23 + 6852: -62,-23 + 6853: -60,-23 + 6854: -60,-24 + 6855: -60,-25 + 6856: -59,-24 + 6857: -58,-24 + 6858: -58,-25 + 6859: -58,-27 + 6860: -58,-29 + 6861: -59,-28 + 6862: -59,-27 + 6863: -58,-23 + 6864: -59,-23 + 6865: -64,-24 + 6866: -65,-25 + 6867: -65,-25 + 6868: -66,-24 + 6869: -66,-23 + 6870: -64,-23 + 6871: -66,-25 + 6872: -66,-26 + 6873: -65,-27 + 6921: -59,-25 + 6953: -70,-29 + 6954: -70,-28 + 6955: -71,-28 + 6956: -72,-29 + 6957: -72,-28 + 6958: -72,-26 + 6959: -71,-27 + 6960: -70,-27 + 6961: -70,-24 + 6962: -71,-25 + 6963: -72,-23 + 6964: -70,-23 + 6965: -68,-23 + 6966: -70,-26 + 6967: -68,-26 + 6968: -68,-26 + 6969: -68,-24 + 6970: -68,-27 + 6971: -69,-27 + 6972: -69,-29 6973: -68,-24 - 6974: -68,-27 - 6975: -69,-27 - 6976: -69,-29 - 6977: -68,-24 - 6978: -68,-23 - 6979: -69,-23 - 7022: -40,-6 - 7023: -39,-6 - 7024: -40,-7 - 7025: -42,-9 - 7026: -42,-11 - 7027: -43,-11 - 7028: -42,-10 - 7029: -38,-9 - 7030: -43,-20 - 7031: -41,-20 - 7032: -39,-20 - 7033: -36,-20 - 7034: -34,-20 - 7035: -30,-20 - 7036: -31,-20 - 7037: -29,-18 - 7038: -31,-18 - 7039: -33,-18 - 7040: -34,-18 - 7041: -43,-4 - 7042: -43,-4 - 7043: -42,1 - 7044: -43,1 - 7045: -42,1 - 7046: -56,-33 - 7047: -56,-34 - 7048: -55,-35 - 7049: -55,-35 - 7050: -55,-31 - 7051: -55,-29 - 7052: -55,-28 - 7053: -56,-27 - 7054: -55,-25 - 7055: -56,-25 - 7056: -55,-23 - 7057: -55,-20 - 7058: -54,-20 - 7059: -52,-21 - 7060: -51,-21 - 7061: -61,-20 - 7062: -63,-20 - 7063: -64,-21 - 7064: -66,-21 - 7065: -69,-20 - 7066: -74,-21 - 7067: -75,-22 - 7068: -77,-20 - 7069: -77,-19 - 7070: -78,-20 - 7071: -78,-21 - 7072: -77,-24 - 7073: -77,-24 - 7074: -78,-24 - 7075: -78,-27 - 7076: -78,-28 - 7077: -78,-28 - 7078: -78,-26 - 7079: -77,-31 - 7080: -77,-32 - 7081: -78,-32 - 7082: -74,-32 - 7083: -73,-32 - 7084: -72,-32 - 7085: -70,-31 - 7086: -68,-31 - 7087: -68,-31 - 7088: -66,-32 - 7089: -62,-32 - 7090: -59,-32 - 7091: -61,-32 - 7092: -48,-34 - 7093: 41,-48 - 7094: 41,-48 - 7095: 37,-48 - 7096: 36,-47 - 7097: 36,-48 - 7098: 47,-48 - 7099: 45,-48 - 7100: 41,-45 - 7101: 41,-45 - 7102: 41,-39 - 7103: 41,-38 - 7104: 40,-37 - 7105: 40,-36 - 7106: 41,-33 - 7107: 42,-28 - 7108: 43,-28 - 7109: 51,-28 - 7110: 52,-28 - 7111: 52,-29 - 7112: 51,-30 - 7113: 52,-31 - 7114: 52,-32 - 7115: 51,-34 - 7116: 51,-35 - 7117: 51,-37 - 7118: 51,-39 - 7119: 52,-38 - 7120: 52,-37 - 7121: 52,-43 - 7122: 52,-45 - 7123: 49,-42 - 7124: 49,-44 - 7125: 47,-45 - 7126: 45,-45 - 7127: 43,-41 - 7128: 46,-45 - 7129: 45,-44 - 7130: 45,-41 - 7131: 48,-42 - 7132: 49,-40 - 7133: 47,-40 - 7134: 45,-39 - 7135: 48,-38 - 7136: 47,-38 - 7137: 45,-38 - 7138: 44,-38 - 7139: 52,-47 - 7140: 55,-43 - 7141: 56,-44 - 7142: 55,-44 - 7143: 55,-44 - 7144: 35,-55 - 7145: 34,-56 - 7146: 32,-55 - 7147: 30,-55 - 7148: 41,-42 - 7149: 43,-28 - 7150: 39,-23 - 7151: 38,-23 - 7152: 36,-23 - 7153: 36,-22 - 7154: 35,-21 - 7155: 36,-20 - 7156: 34,-21 - 7157: 35,-22 - 7158: 35,-23 - 7159: 34,-20 - 7506: 33,-11 - 7507: 35,-16 - 7508: 39,-13 + 6974: -68,-23 + 6975: -69,-23 + 7018: -40,-6 + 7019: -39,-6 + 7020: -40,-7 + 7021: -42,-9 + 7022: -42,-11 + 7023: -43,-11 + 7024: -42,-10 + 7025: -38,-9 + 7026: -43,-20 + 7027: -41,-20 + 7028: -39,-20 + 7029: -36,-20 + 7030: -34,-20 + 7031: -30,-20 + 7032: -31,-20 + 7033: -29,-18 + 7034: -31,-18 + 7035: -33,-18 + 7036: -34,-18 + 7037: -43,-4 + 7038: -43,-4 + 7039: -42,1 + 7040: -43,1 + 7041: -42,1 + 7042: -56,-33 + 7043: -56,-34 + 7044: -55,-35 + 7045: -55,-35 + 7046: -55,-31 + 7047: -55,-29 + 7048: -55,-28 + 7049: -56,-27 + 7050: -55,-25 + 7051: -56,-25 + 7052: -55,-23 + 7053: -55,-20 + 7054: -54,-20 + 7055: -52,-21 + 7056: -51,-21 + 7057: -61,-20 + 7058: -63,-20 + 7059: -64,-21 + 7060: -66,-21 + 7061: -69,-20 + 7062: -74,-21 + 7063: -75,-22 + 7064: -77,-20 + 7065: -77,-19 + 7066: -78,-20 + 7067: -78,-21 + 7068: -77,-24 + 7069: -77,-24 + 7070: -78,-24 + 7071: -78,-27 + 7072: -78,-28 + 7073: -78,-28 + 7074: -78,-26 + 7075: -77,-31 + 7076: -77,-32 + 7077: -78,-32 + 7078: -74,-32 + 7079: -73,-32 + 7080: -72,-32 + 7081: -70,-31 + 7082: -68,-31 + 7083: -68,-31 + 7084: -66,-32 + 7085: -62,-32 + 7086: -59,-32 + 7087: -61,-32 + 7088: -48,-34 + 7089: 41,-48 + 7090: 41,-48 + 7091: 37,-48 + 7092: 36,-47 + 7093: 36,-48 + 7094: 47,-48 + 7095: 45,-48 + 7096: 41,-45 + 7097: 41,-45 + 7098: 41,-39 + 7099: 41,-38 + 7100: 40,-37 + 7101: 40,-36 + 7102: 41,-33 + 7103: 42,-28 + 7104: 43,-28 + 7105: 51,-28 + 7106: 52,-28 + 7107: 52,-29 + 7108: 51,-30 + 7109: 52,-31 + 7110: 52,-32 + 7111: 51,-34 + 7112: 51,-35 + 7113: 51,-37 + 7114: 51,-39 + 7115: 52,-38 + 7116: 52,-37 + 7117: 52,-43 + 7118: 52,-45 + 7119: 49,-42 + 7120: 49,-44 + 7121: 47,-45 + 7122: 45,-45 + 7123: 43,-41 + 7124: 46,-45 + 7125: 45,-44 + 7126: 45,-41 + 7127: 48,-42 + 7128: 49,-40 + 7129: 47,-40 + 7130: 45,-39 + 7131: 48,-38 + 7132: 47,-38 + 7133: 45,-38 + 7134: 44,-38 + 7135: 52,-47 + 7136: 55,-43 + 7137: 56,-44 + 7138: 55,-44 + 7139: 55,-44 + 7140: 35,-55 + 7141: 34,-56 + 7142: 32,-55 + 7143: 30,-55 + 7144: 41,-42 + 7145: 43,-28 + 7146: 39,-23 + 7147: 38,-23 + 7148: 36,-23 + 7149: 36,-22 + 7150: 35,-21 + 7151: 36,-20 + 7152: 34,-21 + 7153: 35,-22 + 7154: 35,-23 + 7155: 34,-20 + 7502: 33,-11 + 7503: 35,-16 + 7504: 39,-13 - node: cleanable: True angle: 1.5707963267948966 rad @@ -4559,332 +4559,332 @@ entities: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 5522: -8,-43 - 5523: -12,-50 - 5524: -19,-43 - 5525: -19,-44 - 5526: -19,-40 - 5527: -21,-40 - 7530: 45,-18 + 5518: -8,-43 + 5519: -12,-50 + 5520: -19,-43 + 5521: -19,-44 + 5522: -19,-40 + 5523: -21,-40 + 7526: 45,-18 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 5148: 81,12 - 5149: 73,14 - 5155: 45,24 - 5156: 38,21 - 5157: 14,29 - 5346: 33,36 - 5404: 34,-68 - 5405: 41,-67 - 5406: 43,-62 - 5920: 57,5 - 5921: 62,6 - 5922: 70,6 - 5943: 31,58 - 5944: 31,59 - 5945: 31,59 - 5946: 31,60 - 5947: 29,60 - 5948: 28,60 - 5949: 29,60 - 5950: 27,56 - 5951: 26,56 - 5952: 25,59 - 5953: 25,60 - 5954: 25,61 - 5955: 26,61 - 5956: 28,59 - 5957: 27,59 - 5958: 30,59 - 5959: 30,56 - 5960: 31,56 - 5961: 31,58 - 5962: 31,59 - 5963: 31,60 - 5964: 31,60 - 5965: 20,56 - 5966: 21,56 - 5972: 9,59 - 5973: 9,60 - 5974: 9,59 - 5975: 7,57 + 5144: 81,12 + 5145: 73,14 + 5151: 45,24 + 5152: 38,21 + 5153: 14,29 + 5342: 33,36 + 5400: 34,-68 + 5401: 41,-67 + 5402: 43,-62 + 5916: 57,5 + 5917: 62,6 + 5918: 70,6 + 5939: 31,58 + 5940: 31,59 + 5941: 31,59 + 5942: 31,60 + 5943: 29,60 + 5944: 28,60 + 5945: 29,60 + 5946: 27,56 + 5947: 26,56 + 5948: 25,59 + 5949: 25,60 + 5950: 25,61 + 5951: 26,61 + 5952: 28,59 + 5953: 27,59 + 5954: 30,59 + 5955: 30,56 + 5956: 31,56 + 5957: 31,58 + 5958: 31,59 + 5959: 31,60 + 5960: 31,60 + 5961: 20,56 + 5962: 21,56 + 5968: 9,59 + 5969: 9,60 + 5970: 9,59 + 5971: 7,57 + 5972: 6,56 + 5975: 6,56 5976: 6,56 - 5979: 6,56 - 5980: 6,56 - 5981: 15,65 - 5987: 13,72 - 5988: 13,72 - 5989: 12,72 - 6004: 19,63 - 6005: 20,62 - 6006: 20,61 - 6007: 21,61 - 6008: 20,60 - 6009: 20,59 + 5977: 15,65 + 5983: 13,72 + 5984: 13,72 + 5985: 12,72 + 6000: 19,63 + 6001: 20,62 + 6002: 20,61 + 6003: 21,61 + 6004: 20,60 + 6005: 20,59 + 6006: 20,58 + 6007: 19,59 + 6008: 19,58 + 6009: 18,58 6010: 20,58 - 6011: 19,59 - 6012: 19,58 - 6013: 18,58 - 6014: 20,58 - 6015: 21,60 - 6016: 13,58 - 6017: 12,59 - 6018: 12,58 - 6019: 13,60 - 6020: 18,59 - 6021: 17,60 - 6022: 17,58 - 6023: 17,58 - 6024: 19,58 - 6025: 21,59 - 6026: 18,62 - 6027: 18,63 - 6028: 17,63 - 6029: 16,63 - 6030: 14,61 - 6031: 13,61 - 6032: 12,61 - 6033: 12,60 - 6034: 17,60 - 6035: 17,61 - 6036: 24,57 - 6037: 23,57 - 6038: 23,56 - 6039: 25,56 - 6040: 25,57 - 6041: 25,58 - 6074: 20,70 - 6075: 19,69 - 6076: 18,70 - 6077: 20,71 - 6078: 18,72 - 6079: 22,71 - 6080: 21,69 - 6081: 20,70 - 6082: 23,71 - 6083: 22,67 - 6084: 21,67 - 6085: 19,66 - 6086: 18,66 - 6087: 15,62 - 6088: 14,62 - 6089: 13,61 - 6090: 13,62 - 6091: 15,59 - 6092: 15,60 - 6103: 10,71 - 6104: 9,71 - 6105: 9,72 - 6106: 10,70 - 6107: 8,68 - 6108: 10,68 - 6109: 11,69 - 6110: 12,70 - 6147: -41,60 - 6148: -40,61 - 6149: -42,59 - 6150: -41,59 - 6151: -40,59 - 6152: -40,62 - 6153: -42,63 - 6154: -38,60 - 6155: -38,62 - 6246: -31,9 - 6247: -31,9 - 6248: -31,11 - 6249: -31,16 - 6250: -31,18 - 6251: -31,22 - 6252: -31,23 - 6253: -32,23 - 6254: -31,23 - 6255: -27,25 - 6256: -27,25 - 6257: -23,26 - 6258: -31,21 - 6259: -31,20 - 6260: -31,19 - 6261: -31,19 - 6262: -25,27 - 6263: -25,27 - 6264: -24,25 - 6265: -36,24 - 6266: -36,27 - 6267: -36,29 - 6268: -36,31 - 6269: -36,32 - 6270: -36,33 - 6271: -39,37 - 6272: -39,37 - 6273: -45,37 - 6274: -39,42 - 6275: -39,42 - 6276: -37,42 - 6277: -36,41 - 6278: -42,45 - 6279: -41,50 - 6280: -41,50 - 6281: -41,49 - 6282: -41,48 - 6283: -42,49 - 6284: -39,57 - 6285: -36,57 - 6304: -39,54 - 6305: -39,54 - 6306: -40,54 - 6307: -40,53 - 6308: -38,54 - 6309: -37,55 - 6310: -37,53 - 6311: -38,52 - 6328: -40,45 - 6329: -40,46 - 6330: -39,46 - 6331: -38,44 - 6355: -41,29 - 6356: -41,28 - 6357: -40,29 - 6358: -40,29 - 6359: -40,27 - 6360: -39,29 - 6361: -39,29 - 6362: -39,29 - 6363: -41,27 - 6375: -70,-41 - 6376: -64,-43 - 6377: -65,-43 - 6378: -66,-42 - 6379: -63,-43 - 6380: -65,-42 - 6464: -65,-44 - 6465: -66,-44 - 6466: -67,-44 - 6467: -66,-42 - 6468: -66,-46 - 6469: -66,-47 - 6470: -64,-46 - 6471: -62,-46 - 6472: -65,-42 - 6473: -66,-41 - 6474: -66,-40 - 6475: -64,-40 - 6476: -70,-40 - 6477: -69,-41 - 6478: -69,-41 - 6479: -69,-42 - 6480: -69,-40 - 6481: -72,-42 - 6482: -72,-42 - 6483: -71,-40 - 6484: -62,-42 - 6485: -62,-42 - 6486: -63,-42 - 6487: -63,-40 - 6488: -62,-40 - 6518: -63,-35 - 6519: -62,-34 - 6520: -62,-35 - 6521: -64,-36 - 6522: -64,-37 - 6523: -64,-37 - 6524: -62,-37 - 6525: -63,-37 - 6526: -63,-37 - 6527: -64,-36 - 6528: -64,-36 - 6529: -62,-35 - 6545: -72,-38 - 6546: -67,-38 - 6547: -68,-38 - 6548: -70,-36 - 6549: -71,-36 - 6550: -70,-35 - 6551: -71,-34 - 6592: -59,-44 - 6593: -60,-43 - 6594: -60,-42 - 6595: -59,-42 - 6596: -59,-41 - 6597: -60,-41 - 6598: -60,-41 - 6599: -59,-40 - 6652: -36,1 - 6653: -38,1 - 6654: -38,1 - 6655: -37,2 - 6656: -37,1 - 6657: -39,1 - 6658: -39,1 - 6659: -39,0 - 6660: -39,-1 - 6661: -37,0 - 6662: -37,0 - 6663: -38,2 - 6664: -37,2 - 6784: -53,-36 - 6785: -50,-36 - 6786: -51,-36 - 6787: -51,-38 - 6878: -65,-26 - 6879: -66,-28 - 6880: -65,-28 - 6881: -64,-26 - 6882: -60,-27 - 6883: -61,-29 - 6884: -59,-29 - 6885: -59,-26 - 6886: -60,-26 - 6887: -58,-28 - 6888: -60,-29 - 6893: -60,-24 - 6894: -60,-23 - 6895: -59,-23 - 6896: -61,-23 - 6897: -63,-23 - 6898: -61,-24 - 6899: -64,-26 - 6900: -65,-26 - 6901: -64,-25 - 6902: -64,-23 - 6903: -66,-24 - 6904: -64,-27 - 6905: -64,-27 - 6906: -64,-28 - 6907: -65,-28 - 6908: -60,-29 - 6909: -60,-28 - 6910: -59,-29 - 6911: -62,-30 - 6912: -57,-26 - 6913: -57,-26 - 6980: -70,-24 - 6981: -70,-24 - 6982: -71,-25 - 6983: -70,-25 - 6984: -70,-26 - 6985: -71,-25 - 6986: -72,-24 - 6987: -72,-23 - 6988: -72,-26 - 6989: -70,-27 - 6990: -71,-26 - 6991: -71,-27 - 6992: -72,-28 - 6993: -70,-29 - 6994: -69,-29 - 6995: -68,-28 - 6996: -68,-28 - 6997: -69,-28 - 6998: -68,-26 - 6999: -68,-26 - 7000: -69,-26 - 7001: -68,-25 - 7002: -69,-24 - 7509: 33,-13 - 7510: 36,-8 + 6011: 21,60 + 6012: 13,58 + 6013: 12,59 + 6014: 12,58 + 6015: 13,60 + 6016: 18,59 + 6017: 17,60 + 6018: 17,58 + 6019: 17,58 + 6020: 19,58 + 6021: 21,59 + 6022: 18,62 + 6023: 18,63 + 6024: 17,63 + 6025: 16,63 + 6026: 14,61 + 6027: 13,61 + 6028: 12,61 + 6029: 12,60 + 6030: 17,60 + 6031: 17,61 + 6032: 24,57 + 6033: 23,57 + 6034: 23,56 + 6035: 25,56 + 6036: 25,57 + 6037: 25,58 + 6070: 20,70 + 6071: 19,69 + 6072: 18,70 + 6073: 20,71 + 6074: 18,72 + 6075: 22,71 + 6076: 21,69 + 6077: 20,70 + 6078: 23,71 + 6079: 22,67 + 6080: 21,67 + 6081: 19,66 + 6082: 18,66 + 6083: 15,62 + 6084: 14,62 + 6085: 13,61 + 6086: 13,62 + 6087: 15,59 + 6088: 15,60 + 6099: 10,71 + 6100: 9,71 + 6101: 9,72 + 6102: 10,70 + 6103: 8,68 + 6104: 10,68 + 6105: 11,69 + 6106: 12,70 + 6143: -41,60 + 6144: -40,61 + 6145: -42,59 + 6146: -41,59 + 6147: -40,59 + 6148: -40,62 + 6149: -42,63 + 6150: -38,60 + 6151: -38,62 + 6242: -31,9 + 6243: -31,9 + 6244: -31,11 + 6245: -31,16 + 6246: -31,18 + 6247: -31,22 + 6248: -31,23 + 6249: -32,23 + 6250: -31,23 + 6251: -27,25 + 6252: -27,25 + 6253: -23,26 + 6254: -31,21 + 6255: -31,20 + 6256: -31,19 + 6257: -31,19 + 6258: -25,27 + 6259: -25,27 + 6260: -24,25 + 6261: -36,24 + 6262: -36,27 + 6263: -36,29 + 6264: -36,31 + 6265: -36,32 + 6266: -36,33 + 6267: -39,37 + 6268: -39,37 + 6269: -45,37 + 6270: -39,42 + 6271: -39,42 + 6272: -37,42 + 6273: -36,41 + 6274: -42,45 + 6275: -41,50 + 6276: -41,50 + 6277: -41,49 + 6278: -41,48 + 6279: -42,49 + 6280: -39,57 + 6281: -36,57 + 6300: -39,54 + 6301: -39,54 + 6302: -40,54 + 6303: -40,53 + 6304: -38,54 + 6305: -37,55 + 6306: -37,53 + 6307: -38,52 + 6324: -40,45 + 6325: -40,46 + 6326: -39,46 + 6327: -38,44 + 6351: -41,29 + 6352: -41,28 + 6353: -40,29 + 6354: -40,29 + 6355: -40,27 + 6356: -39,29 + 6357: -39,29 + 6358: -39,29 + 6359: -41,27 + 6371: -70,-41 + 6372: -64,-43 + 6373: -65,-43 + 6374: -66,-42 + 6375: -63,-43 + 6376: -65,-42 + 6460: -65,-44 + 6461: -66,-44 + 6462: -67,-44 + 6463: -66,-42 + 6464: -66,-46 + 6465: -66,-47 + 6466: -64,-46 + 6467: -62,-46 + 6468: -65,-42 + 6469: -66,-41 + 6470: -66,-40 + 6471: -64,-40 + 6472: -70,-40 + 6473: -69,-41 + 6474: -69,-41 + 6475: -69,-42 + 6476: -69,-40 + 6477: -72,-42 + 6478: -72,-42 + 6479: -71,-40 + 6480: -62,-42 + 6481: -62,-42 + 6482: -63,-42 + 6483: -63,-40 + 6484: -62,-40 + 6514: -63,-35 + 6515: -62,-34 + 6516: -62,-35 + 6517: -64,-36 + 6518: -64,-37 + 6519: -64,-37 + 6520: -62,-37 + 6521: -63,-37 + 6522: -63,-37 + 6523: -64,-36 + 6524: -64,-36 + 6525: -62,-35 + 6541: -72,-38 + 6542: -67,-38 + 6543: -68,-38 + 6544: -70,-36 + 6545: -71,-36 + 6546: -70,-35 + 6547: -71,-34 + 6588: -59,-44 + 6589: -60,-43 + 6590: -60,-42 + 6591: -59,-42 + 6592: -59,-41 + 6593: -60,-41 + 6594: -60,-41 + 6595: -59,-40 + 6648: -36,1 + 6649: -38,1 + 6650: -38,1 + 6651: -37,2 + 6652: -37,1 + 6653: -39,1 + 6654: -39,1 + 6655: -39,0 + 6656: -39,-1 + 6657: -37,0 + 6658: -37,0 + 6659: -38,2 + 6660: -37,2 + 6780: -53,-36 + 6781: -50,-36 + 6782: -51,-36 + 6783: -51,-38 + 6874: -65,-26 + 6875: -66,-28 + 6876: -65,-28 + 6877: -64,-26 + 6878: -60,-27 + 6879: -61,-29 + 6880: -59,-29 + 6881: -59,-26 + 6882: -60,-26 + 6883: -58,-28 + 6884: -60,-29 + 6889: -60,-24 + 6890: -60,-23 + 6891: -59,-23 + 6892: -61,-23 + 6893: -63,-23 + 6894: -61,-24 + 6895: -64,-26 + 6896: -65,-26 + 6897: -64,-25 + 6898: -64,-23 + 6899: -66,-24 + 6900: -64,-27 + 6901: -64,-27 + 6902: -64,-28 + 6903: -65,-28 + 6904: -60,-29 + 6905: -60,-28 + 6906: -59,-29 + 6907: -62,-30 + 6908: -57,-26 + 6909: -57,-26 + 6976: -70,-24 + 6977: -70,-24 + 6978: -71,-25 + 6979: -70,-25 + 6980: -70,-26 + 6981: -71,-25 + 6982: -72,-24 + 6983: -72,-23 + 6984: -72,-26 + 6985: -70,-27 + 6986: -71,-26 + 6987: -71,-27 + 6988: -72,-28 + 6989: -70,-29 + 6990: -69,-29 + 6991: -68,-28 + 6992: -68,-28 + 6993: -69,-28 + 6994: -68,-26 + 6995: -68,-26 + 6996: -69,-26 + 6997: -68,-25 + 6998: -69,-24 + 7505: 33,-13 + 7506: 36,-8 - node: cleanable: True angle: 1.5707963267948966 rad @@ -4899,24 +4899,24 @@ entities: id: DirtLight decals: 2901: 6,88 - 5510: -33,-52 - 5511: -34,-52 - 5512: -34,-54 - 5513: -35,-54 - 5514: -35,-53 - 5515: -33,-53 - 5516: -33,-54 - 5517: -28,-52 - 5518: -29,-53 - 5519: -24,-50 - 5520: -24,-49 - 5528: -23,-42 - 5532: -4,-50 - 5533: -12,-46 - 5534: -8,-43 - 5535: -10,-36 - 7534: 43,-12 - 7535: 43,-16 + 5506: -33,-52 + 5507: -34,-52 + 5508: -34,-54 + 5509: -35,-54 + 5510: -35,-53 + 5511: -33,-53 + 5512: -33,-54 + 5513: -28,-52 + 5514: -29,-53 + 5515: -24,-50 + 5516: -24,-49 + 5524: -23,-42 + 5528: -4,-50 + 5529: -12,-46 + 5530: -8,-43 + 5531: -10,-36 + 7530: 43,-12 + 7531: 43,-16 - node: cleanable: True color: '#FFFFFFFF' @@ -5219,84 +5219,84 @@ entities: 4464: -29,-29 4465: -37,-38 4466: -19,-47 - 5146: 93,17 - 5151: 51,28 - 5152: 53,22 - 5153: 45,19 - 5154: 47,15 - 5158: 19,47 - 5407: 36,-61 - 5408: 41,-74 - 5470: -37,-37 - 5536: -19,-35 - 5537: -24,-46 - 5538: -29,-46 - 5539: -7,-43 - 5923: 66,8 - 5924: 62,9 - 5925: 58,3 - 5926: 67,4 - 5927: 52,5 - 5928: 54,8 - 5929: 53,-1 - 5930: 59,1 - 5931: 47,0 - 5932: 48,4 - 5933: 48,13 - 5934: 50,15 - 5935: 56,26 - 5977: 6,56 - 5978: 7,57 - 6111: 10,69 - 6112: 9,69 - 6113: 9,67 - 6114: 10,67 - 6115: 10,66 - 6116: 12,67 - 6156: -37,61 - 6157: -37,61 - 6158: -35,62 - 6159: -37,63 - 6160: -36,61 - 6161: -34,61 - 6162: -34,59 - 6163: -38,59 - 6164: -38,59 - 6165: -38,61 - 6370: -62,-48 - 6381: -66,-42 - 6382: -65,-42 - 6383: -68,-41 - 6489: -69,-43 - 6490: -67,-44 - 6491: -67,-43 - 6492: -69,-45 - 6493: -69,-44 - 6494: -70,-44 - 6495: -69,-46 - 6600: -59,-43 - 6601: -59,-43 - 6602: -58,-42 - 6603: -58,-41 - 6604: -58,-41 - 6605: -58,-45 - 6606: -58,-45 - 6607: -59,-44 - 6608: -59,-45 - 6609: -60,-46 - 6610: -58,-44 - 6611: -58,-43 - 6612: -58,-46 - 6613: -59,-46 - 6614: -59,-44 - 6615: -59,-47 - 6914: -57,-26 - 6915: -62,-30 - 6923: -65,-23 - 6924: -65,-23 - 7512: 41,-10 - 7513: 40,-12 - 7514: 34,-8 + 5142: 93,17 + 5147: 51,28 + 5148: 53,22 + 5149: 45,19 + 5150: 47,15 + 5154: 19,47 + 5403: 36,-61 + 5404: 41,-74 + 5466: -37,-37 + 5532: -19,-35 + 5533: -24,-46 + 5534: -29,-46 + 5535: -7,-43 + 5919: 66,8 + 5920: 62,9 + 5921: 58,3 + 5922: 67,4 + 5923: 52,5 + 5924: 54,8 + 5925: 53,-1 + 5926: 59,1 + 5927: 47,0 + 5928: 48,4 + 5929: 48,13 + 5930: 50,15 + 5931: 56,26 + 5973: 6,56 + 5974: 7,57 + 6107: 10,69 + 6108: 9,69 + 6109: 9,67 + 6110: 10,67 + 6111: 10,66 + 6112: 12,67 + 6152: -37,61 + 6153: -37,61 + 6154: -35,62 + 6155: -37,63 + 6156: -36,61 + 6157: -34,61 + 6158: -34,59 + 6159: -38,59 + 6160: -38,59 + 6161: -38,61 + 6366: -62,-48 + 6377: -66,-42 + 6378: -65,-42 + 6379: -68,-41 + 6485: -69,-43 + 6486: -67,-44 + 6487: -67,-43 + 6488: -69,-45 + 6489: -69,-44 + 6490: -70,-44 + 6491: -69,-46 + 6596: -59,-43 + 6597: -59,-43 + 6598: -58,-42 + 6599: -58,-41 + 6600: -58,-41 + 6601: -58,-45 + 6602: -58,-45 + 6603: -59,-44 + 6604: -59,-45 + 6605: -60,-46 + 6606: -58,-44 + 6607: -58,-43 + 6608: -58,-46 + 6609: -59,-46 + 6610: -59,-44 + 6611: -59,-47 + 6910: -57,-26 + 6911: -62,-30 + 6919: -65,-23 + 6920: -65,-23 + 7508: 41,-10 + 7509: 40,-12 + 7510: 34,-8 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5313,32 +5313,32 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 5490: -30,-52 - 5491: -26,-53 - 5492: -27,-52 - 5493: -30,-53 - 5494: -24,-54 - 5495: -23,-53 - 5496: -28,-50 - 5497: -30,-51 - 5498: -27,-52 - 5499: -27,-50 - 5500: -30,-53 - 5501: -30,-55 - 5502: -27,-55 - 5503: -34,-53 + 5486: -30,-52 + 5487: -26,-53 + 5488: -27,-52 + 5489: -30,-53 + 5490: -24,-54 + 5491: -23,-53 + 5492: -28,-50 + 5493: -30,-51 + 5494: -27,-52 + 5495: -27,-50 + 5496: -30,-53 + 5497: -30,-55 + 5498: -27,-55 + 5499: -34,-53 + 5500: -34,-52 + 5501: -34,-54 + 5502: -33,-53 + 5503: -34,-52 5504: -34,-52 5505: -34,-54 - 5506: -33,-53 - 5507: -34,-52 - 5508: -34,-52 - 5509: -34,-54 - 5529: -21,-29 - 5530: -12,-51 - 5531: -12,-49 - 7531: 53,-19 - 7532: 44,-21 - 7533: 45,-10 + 5525: -21,-29 + 5526: -12,-51 + 5527: -12,-49 + 7527: 53,-19 + 7528: 44,-21 + 7529: 45,-10 - node: cleanable: True color: '#FFFFFFFF' @@ -5410,36 +5410,36 @@ entities: 4444: -20,-59 4456: -11,-48 4457: -11,-48 - 5147: 91,12 - 5345: 33,37 - 5370: -1,-14 - 5409: 40,-68 - 5659: -16,-51 - 5660: -7,-51 - 5661: -22,-29 - 5716: -35,-45 - 5717: -33,-37 - 6371: -65,-46 - 6616: -59,-45 - 6617: -60,-45 - 6618: -60,-43 - 6619: -60,-41 - 6620: -59,-40 - 6621: -58,-49 - 6622: -59,-48 - 6623: -59,-49 - 6624: -60,-51 - 6625: -60,-50 - 6626: -60,-48 - 6627: -58,-49 - 6916: -64,-28 - 6917: -65,-28 - 6918: -64,-27 - 6919: -64,-25 - 6920: -65,-26 - 6921: -59,-28 - 6922: -59,-27 - 7511: 37,-13 + 5143: 91,12 + 5341: 33,37 + 5366: -1,-14 + 5405: 40,-68 + 5655: -16,-51 + 5656: -7,-51 + 5657: -22,-29 + 5712: -35,-45 + 5713: -33,-37 + 6367: -65,-46 + 6612: -59,-45 + 6613: -60,-45 + 6614: -60,-43 + 6615: -60,-41 + 6616: -59,-40 + 6617: -58,-49 + 6618: -59,-48 + 6619: -59,-49 + 6620: -60,-51 + 6621: -60,-50 + 6622: -60,-48 + 6623: -58,-49 + 6912: -64,-28 + 6913: -65,-28 + 6914: -64,-27 + 6915: -64,-25 + 6916: -65,-26 + 6917: -59,-28 + 6918: -59,-27 + 7507: 37,-13 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5463,7 +5463,7 @@ entities: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 5770: 70,-18 + 5766: 70,-18 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -5505,9 +5505,9 @@ entities: color: '#FFFFFFFF' id: Flowerspv3 decals: - 5771: 72,-18 - 7279: -18.156227,40.488117 - 7280: -18.749979,39.019367 + 5767: 72,-18 + 7275: -18.156227,40.488117 + 7276: -18.749979,39.019367 - node: color: '#FFFFFFFF' id: Flowersy1 @@ -5519,14 +5519,14 @@ entities: id: Flowersy2 decals: 2417: -1.9973309,-73.04275 - 7277: -16.843727,40.472496 - 7278: -19.843729,41.316246 + 7273: -16.843727,40.472496 + 7274: -19.843729,41.316246 - node: zIndex: 4 color: '#FFFFFFFF' id: Flowersy2 decals: - 7276: -17.437477,42.05062 + 7272: -17.437477,42.05062 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -5542,49 +5542,49 @@ entities: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 7364: -3,10 - 7365: -3,8 + 7360: -3,10 + 7361: -3,8 - node: color: '#37789B66' id: FullTileOverlayGreyscale decals: - 5808: 37,-44 - 5809: 37,-45 - 5810: 37,-42 - 5811: 37,-41 - 5812: 37,-40 - 5813: 36,-40 - 5814: 35,-40 - 5815: 34,-40 - 5816: 33,-40 - 5817: 32,-40 - 5818: 31,-40 - 5819: 30,-40 + 5804: 37,-44 + 5805: 37,-45 + 5806: 37,-42 + 5807: 37,-41 + 5808: 37,-40 + 5809: 36,-40 + 5810: 35,-40 + 5811: 34,-40 + 5812: 33,-40 + 5813: 32,-40 + 5814: 31,-40 + 5815: 30,-40 - node: color: '#474F527F' id: FullTileOverlayGreyscale decals: - 5628: -23,-31 - 5629: -23,-29 - 5630: -23,-25 - 5631: -15,-35 - 5632: -13,-35 - 5633: -14,-36 - 5634: -14,-38 - 5635: -14,-40 - 5636: -14,-42 - 5637: -14,-48 - 5638: -14,-50 - 5650: -29,-38 - 5651: -29,-40 - 5652: -29,-42 + 5624: -23,-31 + 5625: -23,-29 + 5626: -23,-25 + 5627: -15,-35 + 5628: -13,-35 + 5629: -14,-36 + 5630: -14,-38 + 5631: -14,-40 + 5632: -14,-42 + 5633: -14,-48 + 5634: -14,-50 + 5646: -29,-38 + 5647: -29,-40 + 5648: -29,-42 - node: color: '#52B4E966' id: FullTileOverlayGreyscale decals: - 7927: 6,-27 - 7928: 13,-26 - 7929: 27,-45 + 7923: 6,-27 + 7924: 13,-26 + 7925: 27,-45 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -5607,8 +5607,8 @@ entities: 4487: 32,-32 4488: 32,-31 4489: 31,-31 - 7366: 1,10 - 7367: 1,8 + 7362: 1,10 + 7363: 1,8 - node: color: '#55555596' id: FullTileOverlayGreyscale @@ -5733,19 +5733,19 @@ entities: color: '#726F6A9B' id: FullTileOverlayGreyscale decals: - 5621: -26,-35 - 5622: -21,-35 - 5623: -14,-51 - 5624: -14,-53 - 5625: -28,-35 - 5626: -29,-35 + 5617: -26,-35 + 5618: -21,-35 + 5619: -14,-51 + 5620: -14,-53 + 5621: -28,-35 + 5622: -29,-35 - node: color: '#88D85873' id: FullTileOverlayGreyscale decals: - 5212: -37,48 - 5213: -37,49 - 5214: -37,50 + 5208: -37,48 + 5209: -37,49 + 5210: -37,50 - node: color: '#909090FF' id: FullTileOverlayGreyscale @@ -5870,14 +5870,14 @@ entities: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 7375: 1,6 - 7376: 1,4 + 7371: 1,6 + 7372: 1,4 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 7371: -5,6 - 7372: -5,4 + 7367: -5,6 + 7368: -5,4 - node: color: '#A580A0FF' id: FullTileOverlayGreyscale @@ -5964,47 +5964,47 @@ entities: color: '#D381C94C' id: FullTileOverlayGreyscale decals: - 5639: -14,-50 - 5640: -14,-48 - 5641: -14,-42 - 5642: -14,-40 - 5643: -14,-38 - 5644: -14,-36 - 5645: -15,-35 - 5646: -13,-35 - 5647: -23,-29 - 5648: -23,-31 - 5649: -23,-25 + 5635: -14,-50 + 5636: -14,-48 + 5637: -14,-42 + 5638: -14,-40 + 5639: -14,-38 + 5640: -14,-36 + 5641: -15,-35 + 5642: -13,-35 + 5643: -23,-29 + 5644: -23,-31 + 5645: -23,-25 - node: color: '#D381C959' id: FullTileOverlayGreyscale decals: - 5627: -29,-35 + 5623: -29,-35 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: 1355: -17,-40 - 7373: 3,10 - 7374: 3,8 + 7369: 3,10 + 7370: 3,8 - node: color: '#D4D4D428' id: FullTileOverlayGreyscale decals: - 7379: -5,7 - 7380: 3,7 - 7915: -4,-31 - 7916: -4,-32 - 7917: -5,-32 - 7918: -5,-31 - 7919: -6,-31 - 7920: -6,-32 + 7375: -5,7 + 7376: 3,7 + 7911: -4,-31 + 7912: -4,-32 + 7913: -5,-32 + 7914: -5,-31 + 7915: -6,-31 + 7916: -6,-32 - node: color: '#D4D4D496' id: FullTileOverlayGreyscale decals: - 7377: 3,6 - 7378: 3,4 + 7373: 3,6 + 7374: 3,4 - node: color: '#DCB9D7FF' id: FullTileOverlayGreyscale @@ -6032,23 +6032,23 @@ entities: 3736: -22,2 3737: -22,1 3738: -22,0 - 5272: 64,-4 - 5859: 58,3 - 5860: 62,3 - 5861: 66,3 - 5862: 58,6 - 5863: 62,6 - 5864: 66,6 - 5865: 69,7 - 7213: 3,32 - 7214: 5,34 - 7215: 5,36 - 7369: -3,6 - 7370: -3,4 - 7447: -47,10 - 7448: -45,9 - 7449: -49,9 - 7450: -48,7 + 5268: 64,-4 + 5855: 58,3 + 5856: 62,3 + 5857: 66,3 + 5858: 58,6 + 5859: 62,6 + 5860: 66,6 + 5861: 69,7 + 7209: 3,32 + 7210: 5,34 + 7211: 5,36 + 7365: -3,6 + 7366: -3,4 + 7443: -47,10 + 7444: -45,9 + 7445: -49,9 + 7446: -48,7 - node: color: '#DE3A3AA1' id: FullTileOverlayGreyscale @@ -6060,15 +6060,15 @@ entities: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 7363: -5,10 - 7368: -5,8 + 7359: -5,10 + 7364: -5,8 - node: color: '#F6A4EC72' id: FullTileOverlayGreyscale decals: - 5653: -29,-38 - 5654: -29,-40 - 5655: -29,-42 + 5649: -29,-38 + 5650: -29,-40 + 5651: -29,-42 - node: color: '#FFFFFFA1' id: FullTileOverlayGreyscale @@ -6079,51 +6079,51 @@ entities: color: '#FFFFFFFF' id: Grassa3 decals: - 5868: -21,40 - 5899: 88,-24 + 5864: -21,40 + 5895: 88,-24 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 5871: -18,43 - 5898: 85,-17 - 5913: -34,40 + 5867: -18,43 + 5894: 85,-17 + 5909: -34,40 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 5766: 70,-17 - 5900: 90,-17 + 5762: 70,-17 + 5896: 90,-17 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 5767: 74,-21 - 5869: -17,42 - 5895: 86,-16 + 5763: 74,-21 + 5865: -17,42 + 5891: 86,-16 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 5768: 70,-24 - 5870: -20,39 - 5896: 86,-25 - 6340: -39,32 + 5764: 70,-24 + 5866: -20,39 + 5892: 86,-25 + 6336: -39,32 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 5769: 68,-20 - 5897: 89,-19 - 6341: -40,35 + 5765: 68,-20 + 5893: 89,-19 + 6337: -40,35 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 5761: 69,-18 - 5879: -18,42 - 5902: 87,-20 - 5911: -34,42 + 5757: 69,-18 + 5875: -18,42 + 5898: 87,-20 + 5907: -34,42 - node: cleanable: True color: '#FFFFFFFF' @@ -6145,200 +6145,200 @@ entities: color: '#FFFFFFFF' id: Grassc2 decals: - 5762: 73,-20 - 5880: -19,39 - 5882: -20,43 - 5903: 86,-18 - 5905: 89,-25 - 5908: 89,-18 + 5758: 73,-20 + 5876: -19,39 + 5878: -20,43 + 5899: 86,-18 + 5901: 89,-25 + 5904: 89,-18 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 5763: 70,-23 - 5765: 71,-21 - 5907: 85,-20 - 6342: -39,31 + 5759: 70,-23 + 5761: 71,-21 + 5903: 85,-20 + 6338: -39,31 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 5764: 72,-24 - 5878: -20,41 - 5881: -17,41 - 5901: 86,-22 - 5904: 88,-16 - 5906: 86,-24 - 5909: 87,-17 - 6335: -41,33 + 5760: 72,-24 + 5874: -20,41 + 5877: -17,41 + 5897: 86,-22 + 5900: 88,-16 + 5902: 86,-24 + 5905: 87,-17 + 6331: -41,33 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 5746: 68,-18 - 5747: 72,-21 - 5748: 73,-24 - 5872: -21,42 - 5875: -19,42 - 5883: 85,-16 - 5884: 88,-17 - 5885: 86,-19 - 5886: 85,-21 - 5887: 87,-23 - 5888: 85,-25 - 6336: -40,31 - 6343: -41,32 + 5742: 68,-18 + 5743: 72,-21 + 5744: 73,-24 + 5868: -21,42 + 5871: -19,42 + 5879: 85,-16 + 5880: 88,-17 + 5881: 86,-19 + 5882: 85,-21 + 5883: 87,-23 + 5884: 85,-25 + 6332: -40,31 + 6339: -41,32 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 5749: 68,-21 - 5750: 72,-17 - 5751: 69,-23 - 5889: 88,-25 - 5890: 88,-21 - 5891: 85,-23 - 5892: 88,-19 - 5893: 85,-18 - 5894: 89,-16 - 6345: -39,35 + 5745: 68,-21 + 5746: 72,-17 + 5747: 69,-23 + 5885: 88,-25 + 5886: 88,-21 + 5887: 85,-23 + 5888: 88,-19 + 5889: 85,-18 + 5890: 89,-16 + 6341: -39,35 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 5752: 69,-24 - 5753: 74,-20 - 5754: 69,-17 - 5876: -21,41 - 6337: -39,32 + 5748: 69,-24 + 5749: 74,-20 + 5750: 69,-17 + 5872: -21,41 + 6333: -39,32 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 5755: 71,-23 - 5756: 69,-20 - 5877: -17,40 - 6339: -38,34 - 6344: -39,34 + 5751: 71,-23 + 5752: 69,-20 + 5873: -17,40 + 6335: -38,34 + 6340: -39,34 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 5757: 68,-23 - 5758: 70,-21 - 5874: -17,41 - 5912: -33,43 - 6338: -41,35 + 5753: 68,-23 + 5754: 70,-21 + 5870: -17,41 + 5908: -33,43 + 6334: -41,35 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 5759: 73,-18 - 5760: 74,-23 - 5873: -19,40 - 5910: -33,40 + 5755: 73,-18 + 5756: 74,-23 + 5869: -19,40 + 5906: -33,40 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNe decals: - 7698: 94,6 - 7754: 84,2 - 7755: 92,6 - 7756: 92,-3 + 7694: 94,6 + 7750: 84,2 + 7751: 92,6 + 7752: 92,-3 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 7697: 92,6 - 7751: 95,2 - 7752: 94,6 - 7753: 94,-3 + 7693: 92,6 + 7747: 95,2 + 7748: 94,6 + 7749: 94,-3 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSe decals: - 7695: 94,10 - 7748: 84,4 - 7749: 92,10 - 7750: 92,1 + 7691: 94,10 + 7744: 84,4 + 7745: 92,10 + 7746: 92,1 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerSw decals: - 7696: 92,10 - 7745: 95,4 - 7746: 94,10 - 7747: 94,1 + 7692: 92,10 + 7741: 95,4 + 7742: 94,10 + 7743: 94,1 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 7689: 94,7 - 7690: 94,8 - 7691: 94,9 - 7706: 84,3 - 7707: 92,7 - 7708: 92,8 - 7709: 92,9 - 7710: 92,-2 - 7711: 92,-1 - 7712: 92,0 + 7685: 94,7 + 7686: 94,8 + 7687: 94,9 + 7702: 84,3 + 7703: 92,7 + 7704: 92,8 + 7705: 92,9 + 7706: 92,-2 + 7707: 92,-1 + 7708: 92,0 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 7687: 91,6 - 7688: 95,6 - 7733: 85,2 - 7734: 86,2 - 7735: 87,2 - 7736: 88,2 - 7737: 89,2 - 7738: 90,2 - 7739: 91,2 - 7740: 92,2 - 7741: 93,2 - 7742: 94,2 - 7743: 93,-3 - 7744: 93,6 + 7683: 91,6 + 7684: 95,6 + 7729: 85,2 + 7730: 86,2 + 7731: 87,2 + 7732: 88,2 + 7733: 89,2 + 7734: 90,2 + 7735: 91,2 + 7736: 92,2 + 7737: 93,2 + 7738: 94,2 + 7739: 93,-3 + 7740: 93,6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 7713: 85,4 - 7714: 86,4 - 7715: 87,4 - 7716: 88,4 - 7717: 88,4 - 7718: 89,4 - 7719: 91,4 - 7720: 90,4 - 7721: 92,4 - 7722: 93,4 - 7723: 94,4 - 7724: 93,1 - 7725: 93,10 + 7709: 85,4 + 7710: 86,4 + 7711: 87,4 + 7712: 88,4 + 7713: 88,4 + 7714: 89,4 + 7715: 91,4 + 7716: 90,4 + 7717: 92,4 + 7718: 93,4 + 7719: 94,4 + 7720: 93,1 + 7721: 93,10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 7692: 92,7 - 7693: 92,8 - 7694: 92,9 - 7726: 95,3 - 7727: 94,8 - 7728: 94,9 - 7729: 94,7 - 7730: 94,-2 - 7731: 94,-1 - 7732: 94,0 + 7688: 92,7 + 7689: 92,8 + 7690: 92,9 + 7722: 95,3 + 7723: 94,8 + 7724: 94,9 + 7725: 94,7 + 7726: 94,-2 + 7727: 94,-1 + 7728: 94,0 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale decals: - 6929: -71,-23 - 6930: -70,-23 - 6931: -69,-23 + 6925: -71,-23 + 6926: -70,-23 + 6927: -69,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -6350,8 +6350,8 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 7361: -122,50 - 7362: -120,50 + 7357: -122,50 + 7358: -120,50 - node: color: '#416E8796' id: HalfTileOverlayGreyscale @@ -6392,7 +6392,7 @@ entities: color: '#639137BF' id: HalfTileOverlayGreyscale decals: - 6314: -39,46 + 6310: -39,46 - node: color: '#6E96AFFF' id: HalfTileOverlayGreyscale @@ -6402,14 +6402,14 @@ entities: color: '#79150096' id: HalfTileOverlayGreyscale decals: - 6400: -69,-40 - 6401: -70,-40 - 6402: -71,-40 - 6423: -67,-40 - 6424: -66,-40 - 6425: -65,-40 - 6426: -64,-40 - 6427: -63,-40 + 6396: -69,-40 + 6397: -70,-40 + 6398: -71,-40 + 6419: -67,-40 + 6420: -66,-40 + 6421: -65,-40 + 6422: -64,-40 + 6423: -63,-40 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -6429,7 +6429,7 @@ entities: 2391: -9,-64 2691: -4,-80 2692: -5,-80 - 5430: -5,-14 + 5426: -5,-14 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -6463,9 +6463,9 @@ entities: 342: -9,16 2323: 21,32 2325: 26,32 - 5359: 28,44 - 7224: 13,32 - 7225: 14,32 + 5355: 28,44 + 7220: 13,32 + 7221: 14,32 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale @@ -6569,7 +6569,7 @@ entities: color: '#DE3A3A93' id: HalfTileOverlayGreyscale decals: - 5197: 73,3 + 5193: 73,3 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -6641,16 +6641,16 @@ entities: 4786: 36,6 4787: 35,6 4832: 73,19 - 5065: 50,29 - 5066: 57,29 - 5067: 58,29 - 5103: 46,24 - 5115: 53,19 - 5116: 52,19 - 5117: 51,19 - 5132: 51,29 - 5728: -47,9 - 7205: 3,37 + 5061: 50,29 + 5062: 57,29 + 5063: 58,29 + 5099: 46,24 + 5111: 53,19 + 5112: 52,19 + 5113: 51,19 + 5128: 51,29 + 5724: -47,9 + 7201: 3,37 - node: color: '#DE3A3ACC' id: HalfTileOverlayGreyscale @@ -6690,40 +6690,40 @@ entities: 4994: -78,1 4995: -79,1 4996: -76,1 - 5232: -77,16 - 5233: -76,16 - 5234: -75,16 - 5235: -74,16 - 5236: -73,16 - 5237: -72,16 - 5238: -71,16 - 5239: -70,16 - 5240: -69,16 - 6826: -60,-23 - 6827: -61,-23 - 6828: -62,-23 - 6829: -63,-23 - 6830: -64,-23 - 6831: -65,-23 + 5228: -77,16 + 5229: -76,16 + 5230: -75,16 + 5231: -74,16 + 5232: -73,16 + 5233: -72,16 + 5234: -71,16 + 5235: -70,16 + 5236: -69,16 + 6822: -60,-23 + 6823: -61,-23 + 6824: -62,-23 + 6825: -63,-23 + 6826: -64,-23 + 6827: -65,-23 - node: color: '#F6A4EC72' id: HalfTileOverlayGreyscale decals: - 5582: -24,-24 - 5583: -23,-24 - 5615: -19,-34 - 5708: -29,-44 - 5709: -28,-44 - 5710: -27,-44 - 5711: -26,-44 - 5712: -25,-44 - 5713: -24,-44 + 5578: -24,-24 + 5579: -23,-24 + 5611: -19,-34 + 5704: -29,-44 + 5705: -28,-44 + 5706: -27,-44 + 5707: -26,-44 + 5708: -25,-44 + 5709: -24,-44 - node: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 6286: -38,54 - 6287: -39,54 + 6282: -38,54 + 6283: -39,54 - node: color: '#FFFFFF96' id: HalfTileOverlayGreyscale @@ -6733,9 +6733,9 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale180 decals: - 6938: -71,-29 - 6939: -70,-29 - 6940: -69,-29 + 6934: -71,-29 + 6935: -70,-29 + 6936: -69,-29 - node: cleanable: True color: '#334E6DC8' @@ -6798,7 +6798,7 @@ entities: color: '#639137BF' id: HalfTileOverlayGreyscale180 decals: - 6315: -39,44 + 6311: -39,44 - node: color: '#6E96AFFF' id: HalfTileOverlayGreyscale180 @@ -6808,13 +6808,13 @@ entities: color: '#79150096' id: HalfTileOverlayGreyscale180 decals: - 6404: -71,-42 - 6411: -69,-46 - 6413: -67,-44 - 6414: -66,-44 - 6415: -65,-44 - 6416: -64,-44 - 6417: -63,-44 + 6400: -71,-42 + 6407: -69,-46 + 6409: -67,-44 + 6410: -66,-44 + 6411: -65,-44 + 6412: -64,-44 + 6413: -63,-44 - node: color: '#909090FF' id: HalfTileOverlayGreyscale180 @@ -6836,7 +6836,7 @@ entities: 2631: -10,-78 2689: -5,-76 2690: -4,-76 - 5426: -5,-17 + 5422: -5,-17 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -6873,8 +6873,8 @@ entities: 1505: 30,56 1506: 27,56 1507: 26,56 - 5360: 28,40 - 7234: 15,27 + 5356: 28,40 + 7230: 15,27 - node: color: '#A580A096' id: HalfTileOverlayGreyscale180 @@ -7032,22 +7032,22 @@ entities: 4845: 73,-1 4986: 7,-62 4990: 6,-62 - 5074: 58,21 - 5075: 57,21 - 5076: 56,21 - 5077: 55,21 - 5078: 54,21 - 5079: 53,21 - 5080: 52,21 - 5081: 51,21 - 5082: 50,21 - 5087: 46,15 - 5104: 47,15 - 5118: 53,15 - 5119: 52,15 - 5120: 51,15 - 5727: -47,8 - 7206: 3,33 + 5070: 58,21 + 5071: 57,21 + 5072: 56,21 + 5073: 55,21 + 5074: 54,21 + 5075: 53,21 + 5076: 52,21 + 5077: 51,21 + 5078: 50,21 + 5083: 46,15 + 5100: 47,15 + 5114: 53,15 + 5115: 52,15 + 5116: 51,15 + 5723: -47,8 + 7202: 3,33 - node: color: '#DE3A3AA1' id: HalfTileOverlayGreyscale180 @@ -7070,7 +7070,7 @@ entities: color: '#EB99E15B' id: HalfTileOverlayGreyscale180 decals: - 5557: -29,-36 + 5553: -29,-36 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale180 @@ -7095,32 +7095,32 @@ entities: 4997: -78,-2 4998: -77,-2 4999: -76,-2 - 5221: -77,13 - 5222: -75,14 - 5223: -73,14 - 5224: -74,14 - 5225: -72,14 - 5226: -71,14 - 5227: -70,14 - 5228: -69,14 - 6816: -64,-29 - 6817: -63,-29 - 6818: -62,-29 - 6819: -61,-29 - 6820: -60,-29 - 6821: -59,-29 + 5217: -77,13 + 5218: -75,14 + 5219: -73,14 + 5220: -74,14 + 5221: -72,14 + 5222: -71,14 + 5223: -70,14 + 5224: -69,14 + 6812: -64,-29 + 6813: -63,-29 + 6814: -62,-29 + 6815: -61,-29 + 6816: -60,-29 + 6817: -59,-29 - node: color: '#F6A4EC72' id: HalfTileOverlayGreyscale180 decals: - 5560: -24,-36 - 5611: -16,-54 + 5556: -24,-36 + 5607: -16,-54 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 decals: - 6291: -39,52 - 6292: -38,52 + 6287: -39,52 + 6288: -38,52 - node: color: '#FFFFFF96' id: HalfTileOverlayGreyscale180 @@ -7135,11 +7135,11 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale270 decals: - 6932: -72,-24 - 6933: -72,-25 - 6934: -72,-26 - 6935: -72,-27 - 6936: -72,-28 + 6928: -72,-24 + 6929: -72,-25 + 6930: -72,-26 + 6931: -72,-27 + 6932: -72,-28 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -7206,7 +7206,7 @@ entities: color: '#639137BF' id: HalfTileOverlayGreyscale270 decals: - 6313: -40,45 + 6309: -40,45 - node: color: '#6E96AFFF' id: HalfTileOverlayGreyscale270 @@ -7217,9 +7217,9 @@ entities: color: '#79150096' id: HalfTileOverlayGreyscale270 decals: - 6406: -70,-44 - 6407: -70,-43 - 6408: -70,-45 + 6402: -70,-44 + 6403: -70,-43 + 6404: -70,-45 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -7240,9 +7240,9 @@ entities: 2616: -9,-80 2617: -9,-81 2693: -9,-79 - 5427: -6,-16 - 5428: -6,-15 - 7257: -11,-73 + 5423: -6,-16 + 5424: -6,-15 + 7253: -11,-73 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -7274,14 +7274,14 @@ entities: 1501: 25,59 2335: 19,30 2336: 19,28 - 5356: 27,41 - 5357: 27,42 - 5358: 27,43 - 7217: 6,34 - 7218: 6,36 - 7219: 6,35 - 7226: 12,30 - 7227: 12,31 + 5352: 27,41 + 5353: 27,42 + 5354: 27,43 + 7213: 6,34 + 7214: 6,36 + 7215: 6,35 + 7222: 12,30 + 7223: 12,31 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale270 @@ -7331,9 +7331,9 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 5450: -26,-40 - 5553: -25,-40 - 7310: -8,-33 + 5446: -26,-40 + 5549: -25,-40 + 7306: -8,-33 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale270 @@ -7376,7 +7376,7 @@ entities: color: '#DE3A3A93' id: HalfTileOverlayGreyscale270 decals: - 5199: 72,2 + 5195: 72,2 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -7449,28 +7449,28 @@ entities: 4902: 56,16 4903: 56,17 4904: 56,18 - 5083: 49,22 - 5084: 49,23 - 5085: 49,24 - 5088: 45,16 - 5089: 45,18 - 5090: 45,17 - 5091: 45,19 - 5092: 45,21 - 5093: 45,20 - 5094: 45,22 - 5095: 45,23 - 5121: 50,16 - 5122: 50,17 - 5123: 50,18 - 5127: 49,28 - 5128: 49,27 - 5129: 49,26 - 5130: 49,25 - 5267: 65,-4 - 7210: 2,34 - 7211: 2,35 - 7212: 2,36 + 5079: 49,22 + 5080: 49,23 + 5081: 49,24 + 5084: 45,16 + 5085: 45,18 + 5086: 45,17 + 5087: 45,19 + 5088: 45,21 + 5089: 45,20 + 5090: 45,22 + 5091: 45,23 + 5117: 50,16 + 5118: 50,17 + 5119: 50,18 + 5123: 49,28 + 5124: 49,27 + 5125: 49,26 + 5126: 49,25 + 5263: 65,-4 + 7206: 2,34 + 7207: 2,35 + 7208: 2,36 - node: color: '#DE3A3ACC' id: HalfTileOverlayGreyscale270 @@ -7509,12 +7509,12 @@ entities: 5000: -79,-1 5001: -79,0 5002: -79,1 - 5230: -78,14 - 5231: -78,15 - 6832: -66,-24 - 6833: -66,-25 - 6834: -66,-26 - 6835: -66,-27 + 5226: -78,14 + 5227: -78,15 + 6828: -66,-24 + 6829: -66,-25 + 6830: -66,-26 + 6831: -66,-27 - node: cleanable: True color: '#EFB34196' @@ -7527,14 +7527,14 @@ entities: color: '#F6A4EC72' id: HalfTileOverlayGreyscale270 decals: - 5567: -31,-35 - 5613: -17,-51 - 5692: -34,-43 + 5563: -31,-35 + 5609: -17,-51 + 5688: -34,-43 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: - 6289: -40,53 + 6285: -40,53 - node: color: '#FFFFFF96' id: HalfTileOverlayGreyscale270 @@ -7544,10 +7544,10 @@ entities: color: '#169C9C93' id: HalfTileOverlayGreyscale90 decals: - 6941: -68,-28 - 6942: -68,-27 - 6943: -68,-26 - 6944: -68,-25 + 6937: -68,-28 + 6938: -68,-27 + 6939: -68,-26 + 6940: -68,-25 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -7581,7 +7581,7 @@ entities: 3877: -118,22 3878: -118,21 3899: -115,47 - 5317: 31,-2 + 5313: 31,-2 - node: color: '#416E8796' id: HalfTileOverlayGreyscale90 @@ -7614,10 +7614,10 @@ entities: color: '#79150096' id: HalfTileOverlayGreyscale90 decals: - 6412: -68,-45 - 6419: -62,-43 - 6420: -62,-42 - 6421: -62,-41 + 6408: -68,-45 + 6415: -62,-43 + 6416: -62,-42 + 6417: -62,-41 - node: color: '#80808096' id: HalfTileOverlayGreyscale90 @@ -7630,9 +7630,9 @@ entities: color: '#88D85873' id: HalfTileOverlayGreyscale90 decals: - 5203: -38,48 - 5204: -38,49 - 5205: -38,50 + 5199: -38,48 + 5200: -38,49 + 5201: -38,50 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale90 @@ -7659,8 +7659,8 @@ entities: 2628: 2,-80 2629: 2,-79 2630: 2,-78 - 5433: -4,-15 - 5434: -4,-16 + 5429: -4,-15 + 5430: -4,-16 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 @@ -7685,10 +7685,10 @@ entities: 1502: 31,59 1503: 31,58 2324: 27,31 - 5353: 29,41 - 5354: 29,42 - 5355: 29,43 - 5365: 27,29 + 5349: 29,41 + 5350: 29,42 + 5351: 29,43 + 5361: 27,29 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale90 @@ -7743,9 +7743,9 @@ entities: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 5439: -24,-40 - 5449: -23,-40 - 7311: -7,-33 + 5435: -24,-40 + 5445: -23,-40 + 7307: -7,-33 - node: color: '#D4D4D496' id: HalfTileOverlayGreyscale90 @@ -7782,7 +7782,7 @@ entities: color: '#DE3A3A93' id: HalfTileOverlayGreyscale90 decals: - 5202: 74,0 + 5198: 74,0 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -7853,28 +7853,28 @@ entities: 4987: 8,-59 4988: 8,-60 4989: 8,-61 - 5068: 59,27 - 5069: 59,26 - 5070: 59,25 - 5071: 59,24 - 5072: 59,23 - 5073: 59,22 - 5096: 47,23 - 5097: 47,21 - 5098: 47,22 - 5099: 47,20 - 5100: 48,18 - 5101: 48,17 - 5102: 48,16 - 5124: 54,18 - 5125: 54,17 - 5126: 54,16 - 5131: 59,28 - 5261: 71,-4 - 5266: 66,-4 - 7207: 4,34 - 7208: 4,35 - 7209: 4,36 + 5064: 59,27 + 5065: 59,26 + 5066: 59,25 + 5067: 59,24 + 5068: 59,23 + 5069: 59,22 + 5092: 47,23 + 5093: 47,21 + 5094: 47,22 + 5095: 47,20 + 5096: 48,18 + 5097: 48,17 + 5098: 48,16 + 5120: 54,18 + 5121: 54,17 + 5122: 54,16 + 5127: 59,28 + 5257: 71,-4 + 5262: 66,-4 + 7203: 4,34 + 7204: 4,35 + 7205: 4,36 - node: color: '#E6CD9BFF' id: HalfTileOverlayGreyscale90 @@ -7905,12 +7905,12 @@ entities: 5004: -76,-2 5005: -76,0 5006: -76,1 - 5229: -68,15 - 5738: -66,1 - 5739: -66,0 - 6823: -58,-28 - 6824: -58,-27 - 6825: -58,-24 + 5225: -68,15 + 5734: -66,1 + 5735: -66,0 + 6819: -58,-28 + 6820: -58,-27 + 6821: -58,-24 - node: cleanable: True color: '#EFB34196' @@ -7923,12 +7923,12 @@ entities: color: '#F6A4EC72' id: HalfTileOverlayGreyscale90 decals: - 5691: -33,-43 + 5687: -33,-43 - node: color: '#FA750096' id: HalfTileOverlayGreyscale90 decals: - 6294: -37,53 + 6290: -37,53 - node: angle: 3.141592653589793 rad color: '#FF0000FF' @@ -7991,8 +7991,8 @@ entities: decals: 24: 24,53 25: 24,52 - 5464: -35,-40 - 5676: -35,-45 + 5460: -35,-40 + 5672: -35,-45 - node: color: '#5D95E9FF' id: LoadingAreaGreyscale @@ -8008,22 +8008,22 @@ entities: color: '#EFB34196' id: MiniTileCornerOverlayNE decals: - 5745: -63,2 + 5741: -63,2 - node: color: '#EFB34196' id: MiniTileCornerOverlayNW decals: - 5744: -64,2 + 5740: -64,2 - node: color: '#EFB34196' id: MiniTileCornerOverlaySE decals: - 5742: -63,0 + 5738: -63,0 - node: color: '#EFB34196' id: MiniTileCornerOverlaySW decals: - 5743: -64,0 + 5739: -64,0 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE @@ -8081,9 +8081,9 @@ entities: color: '#9D9D975A' id: MiniTileDiagonalOverlay decals: - 5772: 12,-59 - 5773: 12,-60 - 5774: 12,-61 + 5768: 12,-59 + 5769: 12,-60 + 5770: 12,-61 - node: color: '#DE3A3A96' id: MiniTileSteelCornerNe @@ -8128,20 +8128,20 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 5303: 30,1 - 5304: 28,-2 + 5299: 30,1 + 5300: 28,-2 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 5302: 28,1 + 5298: 28,1 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 5305: 28,-2 + 5301: 28,-2 - node: color: '#DE3A3A96' id: MiniTileSteelLineE @@ -8196,7 +8196,7 @@ entities: id: MiniTileWhiteCornerNe decals: 4919: 78,10 - 5039: 93,23 + 5037: 93,23 - node: color: '#EFB341FF' id: MiniTileWhiteCornerNe @@ -8209,8 +8209,8 @@ entities: id: MiniTileWhiteCornerNw decals: 4918: 76,10 - 5040: 91,23 - 5046: 81,14 + 5038: 91,23 + 5044: 81,14 - node: color: '#EFB341FF' id: MiniTileWhiteCornerNw @@ -8222,7 +8222,7 @@ entities: id: MiniTileWhiteCornerSe decals: 4920: 78,8 - 5037: 93,12 + 5035: 93,12 - node: color: '#EFB341FF' id: MiniTileWhiteCornerSe @@ -8234,7 +8234,7 @@ entities: id: MiniTileWhiteCornerSw decals: 4921: 76,8 - 5038: 81,12 + 5036: 81,12 - node: color: '#EFB341FF' id: MiniTileWhiteCornerSw @@ -8261,8 +8261,12 @@ entities: id: MiniTileWhiteInnerNe decals: 4925: 78,9 - 5058: 93,21 - 5059: 92,23 + 5055: 92,23 + - node: + color: '#DE3A3A99' + id: MiniTileWhiteInnerNe + decals: + 8018: 93,18 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe @@ -8273,23 +8277,27 @@ entities: id: MiniTileWhiteInnerNw decals: 4924: 76,9 - 5026: 91,14 - 5057: 91,21 - 5060: 92,23 + 5024: 91,14 + 5054: 91,21 + 5056: 92,23 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSe decals: 4927: 78,9 - 5043: 83,12 - 5056: 93,21 + 5041: 83,12 + - node: + color: '#DE3A3A99' + id: MiniTileWhiteInnerSe + decals: + 8019: 93,18 - node: color: '#DE3A3A96' id: MiniTileWhiteInnerSw decals: 4926: 76,9 - 5041: 91,21 - 5042: 83,12 + 5039: 91,21 + 5040: 83,12 - node: color: '#D4D4D4FF' id: MiniTileWhiteLineE @@ -8324,11 +8332,15 @@ entities: 5011: 93,16 5012: 93,15 5013: 93,17 - 5014: 93,18 - 5015: 93,19 - 5016: 93,20 - 5017: 93,22 - 5044: 83,11 + 5014: 93,19 + 5015: 93,22 + 5042: 83,11 + - node: + color: '#DE3A3A99' + id: MiniTileWhiteLineE + decals: + 8020: 93,21 + 8021: 93,20 - node: angle: -3.141592653589793 rad color: '#EFB341FF' @@ -8412,15 +8424,15 @@ entities: id: MiniTileWhiteLineN decals: 4923: 77,10 - 5047: 82,14 - 5048: 83,14 - 5049: 84,14 - 5050: 86,14 - 5051: 85,14 - 5052: 87,14 - 5053: 88,14 - 5054: 89,14 - 5055: 90,14 + 5045: 82,14 + 5046: 83,14 + 5047: 84,14 + 5048: 86,14 + 5049: 85,14 + 5050: 87,14 + 5051: 88,14 + 5052: 89,14 + 5053: 90,14 - node: color: '#EFB341FF' id: MiniTileWhiteLineN @@ -8491,16 +8503,16 @@ entities: id: MiniTileWhiteLineS decals: 4922: 77,8 - 5027: 82,12 - 5028: 84,12 - 5029: 85,12 - 5030: 86,12 - 5031: 87,12 - 5032: 88,12 - 5033: 89,12 - 5034: 90,12 - 5035: 91,12 - 5036: 92,12 + 5025: 82,12 + 5026: 84,12 + 5027: 85,12 + 5028: 86,12 + 5029: 87,12 + 5030: 88,12 + 5031: 89,12 + 5032: 90,12 + 5033: 91,12 + 5034: 92,12 - node: color: '#EFB341FF' id: MiniTileWhiteLineS @@ -8540,15 +8552,15 @@ entities: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 5018: 91,22 - 5019: 91,20 - 5020: 91,19 - 5021: 91,18 - 5022: 91,17 - 5023: 91,16 - 5024: 91,15 - 5025: 81,13 - 5045: 83,11 + 5016: 91,22 + 5017: 91,20 + 5018: 91,19 + 5019: 91,18 + 5020: 91,17 + 5021: 91,16 + 5022: 91,15 + 5023: 81,13 + 5043: 83,11 - node: angle: -3.141592653589793 rad color: '#EFB341FF' @@ -8592,17 +8604,17 @@ entities: 3925: 38,-40 3926: 38,-41 3927: 38,-42 - 7794: -31,47 - 7795: -30,47 - 7796: -32,48 - 7797: -29,47 - 7798: -28,48 - 7799: -28,47 - 7800: -27,48 - 7801: -27,49 - 7802: -27,50 - 7803: -27,51 - 7883: -28,52 + 7790: -31,47 + 7791: -30,47 + 7792: -32,48 + 7793: -29,47 + 7794: -28,48 + 7795: -28,47 + 7796: -27,48 + 7797: -27,49 + 7798: -27,50 + 7799: -27,51 + 7879: -28,52 - node: color: '#6E96AFC7' id: QuarterTileOverlayGreyscale @@ -8618,27 +8630,27 @@ entities: id: QuarterTileOverlayGreyscale decals: 1439: 1,54 - 7857: -35,53 - 7858: -33,55 - 7859: -32,55 - 7860: -31,55 - 7861: -30,55 - 7862: -29,55 - 7863: -28,55 - 7864: -27,55 - 7865: -26,54 - 7866: -25,53 - 7867: -33,45 - 7868: -34,46 - 7869: -35,47 - 7870: -35,48 - 7871: -35,49 - 7872: -35,50 - 7873: -35,51 - 7874: -35,52 - 7875: -34,53 - 7876: -34,54 - 7877: -33,54 + 7853: -35,53 + 7854: -33,55 + 7855: -32,55 + 7856: -31,55 + 7857: -30,55 + 7858: -29,55 + 7859: -28,55 + 7860: -27,55 + 7861: -26,54 + 7862: -25,53 + 7863: -33,45 + 7864: -34,46 + 7865: -35,47 + 7866: -35,48 + 7867: -35,49 + 7868: -35,50 + 7869: -35,51 + 7870: -35,52 + 7871: -34,53 + 7872: -34,54 + 7873: -33,54 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -8647,7 +8659,7 @@ entities: 97: 15,46 105: 13,42 180: 5,31 - 7223: 12,29 + 7219: 12,29 - node: color: '#A5CDE6FF' id: QuarterTileOverlayGreyscale @@ -8723,10 +8735,10 @@ entities: id: QuarterTileOverlayGreyscale decals: 4320: -7,-47 - 5445: -26,-38 - 5451: -26,-39 - 5554: -25,-39 - 5555: -24,-38 + 5441: -26,-38 + 5447: -26,-39 + 5550: -25,-39 + 5551: -24,-38 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -8760,7 +8772,7 @@ entities: color: '#DE3A3A93' id: QuarterTileOverlayGreyscale decals: - 5195: 74,3 + 5191: 74,3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -8795,28 +8807,28 @@ entities: color: '#F6A4EC72' id: QuarterTileOverlayGreyscale decals: - 5568: -31,-34 - 5569: -29,-34 - 5570: -30,-34 - 5571: -28,-34 - 5572: -27,-34 - 5573: -26,-34 - 5574: -25,-34 - 5575: -24,-34 - 5576: -24,-32 - 5577: -24,-30 - 5578: -24,-29 - 5579: -24,-28 - 5580: -24,-27 - 5581: -24,-25 - 5610: -17,-52 - 5617: -18,-34 - 5618: -16,-34 - 5619: -15,-34 - 5684: -34,-40 - 5687: -34,-41 - 5693: -34,-42 - 5707: -29,-45 + 5564: -31,-34 + 5565: -29,-34 + 5566: -30,-34 + 5567: -28,-34 + 5568: -27,-34 + 5569: -26,-34 + 5570: -25,-34 + 5571: -24,-34 + 5572: -24,-32 + 5573: -24,-30 + 5574: -24,-29 + 5575: -24,-28 + 5576: -24,-27 + 5577: -24,-25 + 5606: -17,-52 + 5613: -18,-34 + 5614: -16,-34 + 5615: -15,-34 + 5680: -34,-40 + 5683: -34,-41 + 5689: -34,-42 + 5703: -29,-45 - node: color: '#FFFFFF96' id: QuarterTileOverlayGreyscale @@ -8849,19 +8861,19 @@ entities: 3922: 35,-39 3923: 36,-39 3924: 37,-39 - 7783: -32,53 - 7784: -32,52 - 7785: -33,52 - 7786: -33,51 - 7787: -33,50 - 7788: -33,49 - 7789: -32,48 - 7790: -28,52 - 7791: -29,53 - 7792: -30,53 - 7793: -31,53 - 7878: -26,54 - 7882: -27,46 + 7779: -32,53 + 7780: -32,52 + 7781: -33,52 + 7782: -33,51 + 7783: -33,50 + 7784: -33,49 + 7785: -32,48 + 7786: -28,52 + 7787: -29,53 + 7788: -30,53 + 7789: -31,53 + 7874: -26,54 + 7878: -27,46 - node: color: '#6E96AFC7' id: QuarterTileOverlayGreyscale180 @@ -8908,7 +8920,7 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale180 decals: - 6418: -68,-44 + 6414: -68,-44 - node: color: '#85C5E9A3' id: QuarterTileOverlayGreyscale180 @@ -8926,22 +8938,22 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 1444: -1,56 - 7841: -26,47 - 7842: -26,46 - 7843: -27,45 - 7844: -28,45 - 7845: -29,45 - 7846: -30,45 - 7847: -31,45 - 7848: -33,45 - 7849: -25,53 - 7850: -25,52 - 7851: -25,51 - 7852: -25,50 - 7853: -25,49 - 7854: -25,47 - 7855: -35,47 - 7856: -34,46 + 7837: -26,47 + 7838: -26,46 + 7839: -27,45 + 7840: -28,45 + 7841: -29,45 + 7842: -30,45 + 7843: -31,45 + 7844: -33,45 + 7845: -25,53 + 7846: -25,52 + 7847: -25,51 + 7848: -25,50 + 7849: -25,49 + 7850: -25,47 + 7851: -35,47 + 7852: -34,46 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -9041,10 +9053,10 @@ entities: 4316: -4,-48 4317: -4,-47 4318: -4,-46 - 5438: -24,-41 - 5446: -23,-42 - 5453: -23,-41 - 5551: -25,-42 + 5434: -24,-41 + 5442: -23,-42 + 5449: -23,-41 + 5547: -25,-42 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -9094,7 +9106,7 @@ entities: color: '#DE3A3A93' id: QuarterTileOverlayGreyscale180 decals: - 5196: 74,1 + 5192: 74,1 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -9131,28 +9143,28 @@ entities: 3699: -64,-8 3700: -63,-8 5007: -79,-1 - 5215: -76,14 + 5211: -76,14 - node: color: '#F6A4EC72' id: QuarterTileOverlayGreyscale180 decals: - 5559: -22,-36 - 5561: -25,-36 - 5562: -28,-36 - 5563: -27,-36 - 5564: -26,-36 - 5602: -13,-53 - 5603: -13,-49 - 5604: -13,-47 - 5605: -13,-44 - 5606: -13,-43 - 5607: -13,-40 - 5685: -33,-46 - 5689: -33,-45 - 5695: -33,-44 - 5701: -25,-47 - 5702: -24,-46 - 5705: -27,-47 + 5555: -22,-36 + 5557: -25,-36 + 5558: -28,-36 + 5559: -27,-36 + 5560: -26,-36 + 5598: -13,-53 + 5599: -13,-49 + 5600: -13,-47 + 5601: -13,-44 + 5602: -13,-43 + 5603: -13,-40 + 5681: -33,-46 + 5685: -33,-45 + 5691: -33,-44 + 5697: -25,-47 + 5698: -24,-46 + 5701: -27,-47 - node: color: '#FFFFFF96' id: QuarterTileOverlayGreyscale180 @@ -9177,26 +9189,26 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 4513: 22,-29 - 7820: -33,55 - 7821: -34,54 - 7822: -35,53 - 7823: -35,52 - 7824: -35,51 - 7825: -35,50 - 7826: -35,49 - 7827: -35,48 - 7828: -35,47 - 7829: -34,47 - 7830: -34,46 - 7831: -33,45 - 7832: -31,45 - 7833: -30,45 - 7834: -29,45 - 7835: -28,45 - 7836: -27,45 - 7837: -26,46 - 7838: -25,47 - 7881: -33,46 + 7816: -33,55 + 7817: -34,54 + 7818: -35,53 + 7819: -35,52 + 7820: -35,51 + 7821: -35,50 + 7822: -35,49 + 7823: -35,48 + 7824: -35,47 + 7825: -34,47 + 7826: -34,46 + 7827: -33,45 + 7828: -31,45 + 7829: -30,45 + 7830: -29,45 + 7831: -28,45 + 7832: -27,45 + 7833: -26,46 + 7834: -25,47 + 7877: -33,46 - node: color: '#6E96AFC7' id: QuarterTileOverlayGreyscale270 @@ -9209,7 +9221,7 @@ entities: color: '#79150096' id: QuarterTileOverlayGreyscale270 decals: - 6405: -70,-42 + 6401: -70,-42 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -9217,17 +9229,17 @@ entities: 1442: -2,52 1445: 1,56 2674: -9,-78 - 7770: -28,48 - 7771: -32,52 - 7772: -31,53 - 7773: -30,53 - 7774: -29,53 - 7775: -28,53 - 7776: -28,52 - 7777: -27,52 - 7778: -27,51 - 7779: -27,50 - 7780: -27,49 + 7766: -28,48 + 7767: -32,52 + 7768: -31,53 + 7769: -30,53 + 7770: -29,53 + 7771: -28,53 + 7772: -28,52 + 7773: -27,52 + 7774: -27,51 + 7775: -27,50 + 7776: -27,49 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -9355,10 +9367,10 @@ entities: 4310: -5,-53 4311: -4,-53 4331: -7,-48 - 5447: -26,-42 - 5452: -26,-41 - 5550: -24,-42 - 5552: -25,-41 + 5443: -26,-42 + 5448: -26,-41 + 5546: -24,-42 + 5548: -25,-41 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -9420,27 +9432,27 @@ entities: color: '#F6A4EC72' id: QuarterTileOverlayGreyscale270 decals: - 5558: -23,-36 - 5565: -30,-36 - 5566: -31,-36 - 5592: -20,-36 - 5593: -19,-36 - 5594: -18,-36 - 5595: -17,-36 - 5596: -15,-36 - 5597: -15,-37 - 5598: -15,-40 - 5599: -15,-42 - 5600: -15,-46 - 5601: -15,-49 - 5608: -6,-53 - 5614: -16,-36 - 5686: -34,-46 - 5688: -34,-45 - 5696: -34,-44 - 5700: -28,-47 - 5703: -29,-46 - 5704: -26,-47 + 5554: -23,-36 + 5561: -30,-36 + 5562: -31,-36 + 5588: -20,-36 + 5589: -19,-36 + 5590: -18,-36 + 5591: -17,-36 + 5592: -15,-36 + 5593: -15,-37 + 5594: -15,-40 + 5595: -15,-42 + 5596: -15,-46 + 5597: -15,-49 + 5604: -6,-53 + 5610: -16,-36 + 5682: -34,-46 + 5684: -34,-45 + 5692: -34,-44 + 5696: -28,-47 + 5699: -29,-46 + 5700: -26,-47 - node: color: '#373737FF' id: QuarterTileOverlayGreyscale90 @@ -9461,26 +9473,26 @@ entities: 3911: 34,-41 3912: 33,-41 4494: 26,-29 - 7804: -27,54 - 7805: -27,55 - 7806: -28,55 - 7807: -29,55 - 7808: -30,55 - 7809: -31,55 - 7810: -32,55 - 7811: -33,55 - 7812: -26,53 - 7813: -26,54 - 7814: -25,53 - 7815: -25,51 - 7816: -25,52 - 7817: -25,50 - 7818: -25,49 - 7819: -25,48 - 7839: -27,45 - 7840: -26,46 - 7879: -35,53 - 7880: -34,54 + 7800: -27,54 + 7801: -27,55 + 7802: -28,55 + 7803: -29,55 + 7804: -30,55 + 7805: -31,55 + 7806: -32,55 + 7807: -33,55 + 7808: -26,53 + 7809: -26,54 + 7810: -25,53 + 7811: -25,51 + 7812: -25,52 + 7813: -25,50 + 7814: -25,49 + 7815: -25,48 + 7835: -27,45 + 7836: -26,46 + 7875: -35,53 + 7876: -34,54 - node: color: '#909090FF' id: QuarterTileOverlayGreyscale90 @@ -9491,17 +9503,17 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 1440: -1,54 - 7761: -32,47 - 7762: -32,48 - 7763: -33,48 - 7764: -33,49 - 7765: -33,51 - 7766: -33,50 - 7767: -31,47 - 7768: -30,47 - 7769: -29,47 - 7781: -28,48 - 7782: -32,52 + 7757: -32,47 + 7758: -32,48 + 7759: -33,48 + 7760: -33,49 + 7761: -33,51 + 7762: -33,50 + 7763: -31,47 + 7764: -30,47 + 7765: -29,47 + 7777: -28,48 + 7778: -32,52 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -9603,10 +9615,10 @@ entities: decals: 4319: -7,-46 4332: -8,-49 - 5444: -23,-38 - 5448: -25,-38 - 5454: -23,-39 - 5556: -24,-39 + 5440: -23,-38 + 5444: -25,-38 + 5450: -23,-39 + 5552: -24,-39 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -9660,8 +9672,8 @@ entities: 2774: 32,6 4751: 48,1 4846: 74,3 - 5086: 41,5 - 5110: 47,19 + 5082: 41,5 + 5106: 47,19 - node: color: '#DFA9DE93' id: QuarterTileOverlayGreyscale90 @@ -9710,21 +9722,21 @@ entities: color: '#F6A4EC72' id: QuarterTileOverlayGreyscale90 decals: - 5584: -22,-24 - 5585: -22,-25 - 5586: -22,-26 - 5587: -22,-27 - 5588: -22,-28 - 5589: -22,-29 - 5590: -22,-30 - 5591: -22,-32 - 5609: -5,-46 - 5616: -20,-34 - 5620: -12,-34 - 5683: -33,-40 - 5690: -33,-41 - 5694: -33,-42 - 5706: -24,-45 + 5580: -22,-24 + 5581: -22,-25 + 5582: -22,-26 + 5583: -22,-27 + 5584: -22,-28 + 5585: -22,-29 + 5586: -22,-30 + 5587: -22,-32 + 5605: -5,-46 + 5612: -20,-34 + 5616: -12,-34 + 5679: -33,-40 + 5686: -33,-41 + 5690: -33,-42 + 5702: -24,-45 - node: cleanable: True color: '#539600FF' @@ -9746,12 +9758,12 @@ entities: color: '#FFFFFFFF' id: Rock02 decals: - 5210: -36,48 + 5206: -36,48 - node: color: '#FFFFFFFF' id: Rock04 decals: - 5211: -36,50 + 5207: -36,50 - node: cleanable: True color: '#FFFFFFFF' @@ -9813,8 +9825,8 @@ entities: 3675: -92,-8 4143: -33,77 4144: -33,84 - 5465: -38,-40 - 5697: -38,-45 + 5461: -38,-40 + 5693: -38,-45 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -9831,7 +9843,7 @@ entities: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale decals: - 6928: -72,-23 + 6924: -72,-23 - node: color: '#416E8796' id: ThreeQuarterTileOverlayGreyscale @@ -9845,12 +9857,12 @@ entities: 3825: 30,-38 4509: 20,-25 4540: 20,-25 - 5807: 36,-44 + 5803: 36,-44 - node: color: '#639137BF' id: ThreeQuarterTileOverlayGreyscale decals: - 6312: -40,46 + 6308: -40,46 - node: color: '#6E96AFFF' id: ThreeQuarterTileOverlayGreyscale @@ -9860,19 +9872,19 @@ entities: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale decals: - 6403: -72,-40 + 6399: -72,-40 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: 2392: -11,-64 - 5429: -6,-14 + 5425: -6,-14 - node: cleanable: True color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 5309: 25,1 + 5305: 25,1 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale @@ -9884,9 +9896,9 @@ entities: 141: 19,32 161: 2,31 204: 9,46 - 5361: 27,44 - 7221: 6,37 - 7222: 12,32 + 5357: 27,44 + 7217: 6,37 + 7218: 12,32 - node: color: '#AB5FC3E3' id: ThreeQuarterTileOverlayGreyscale @@ -9915,7 +9927,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 7309: -8,-32 + 7305: -8,-32 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale @@ -9941,7 +9953,7 @@ entities: color: '#DE3A3A93' id: ThreeQuarterTileOverlayGreyscale decals: - 5198: 72,3 + 5194: 72,3 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -9972,12 +9984,12 @@ entities: 4781: 34,6 4849: 72,19 4906: 56,19 - 5061: 49,29 - 5106: 45,24 - 5112: 50,19 - 5270: 65,-3 - 5723: -48,9 - 7204: 2,37 + 5057: 49,29 + 5102: 45,24 + 5108: 50,19 + 5266: 65,-3 + 5719: -48,9 + 7200: 2,37 - node: color: '#DE3A3ACC' id: ThreeQuarterTileOverlayGreyscale @@ -10005,19 +10017,19 @@ entities: 3634: -77,-6 4201: -79,7 4231: -79,11 - 5220: -78,16 + 5216: -78,16 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: - 6288: -40,54 + 6284: -40,54 - node: cleanable: True color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5314: 30,0 - 5315: 31,-3 + 5310: 30,0 + 5311: 31,-3 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -10026,7 +10038,7 @@ entities: 3826: 38,-42 4497: 30,-32 4539: 22,-29 - 5805: 38,-45 + 5801: 38,-45 - node: color: '#6E96AFFF' id: ThreeQuarterTileOverlayGreyscale180 @@ -10036,12 +10048,12 @@ entities: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 6410: -68,-46 + 6406: -68,-46 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5431: -4,-17 + 5427: -4,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 @@ -10054,8 +10066,8 @@ entities: 188: 11,33 206: 11,42 1504: 31,56 - 5363: 29,40 - 7233: 16,27 + 5359: 29,40 + 7229: 16,27 - node: color: '#A5CDE6FF' id: ThreeQuarterTileOverlayGreyscale180 @@ -10083,7 +10095,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 7307: -7,-34 + 7303: -7,-34 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale180 @@ -10130,19 +10142,19 @@ entities: 4847: 74,-1 4905: 57,15 4985: 8,-62 - 5062: 59,21 - 5105: 48,15 - 5111: 54,15 - 5263: 71,-5 - 5268: 66,-5 - 5724: -46,8 - 7203: 4,33 + 5058: 59,21 + 5101: 48,15 + 5107: 54,15 + 5259: 71,-5 + 5264: 66,-5 + 5720: -46,8 + 7199: 4,33 - node: cleanable: True color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5312: 26,-5 + 5308: 26,-5 - node: color: '#E6CD9BFF' id: ThreeQuarterTileOverlayGreyscale180 @@ -10160,24 +10172,24 @@ entities: 3636: -75,-10 4200: -76,3 4230: -76,9 - 5218: -76,13 - 5219: -68,14 - 6822: -58,-29 + 5214: -76,13 + 5215: -68,14 + 6818: -58,-29 - node: color: '#F6A4EC72' id: ThreeQuarterTileOverlayGreyscale180 decals: - 5699: -24,-47 + 5695: -24,-47 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 6293: -37,52 + 6289: -37,52 - node: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 6937: -72,-29 + 6933: -72,-29 - node: color: '#416E87FF' id: ThreeQuarterTileOverlayGreyscale270 @@ -10191,7 +10203,7 @@ entities: 4496: 26,-32 4511: 20,-29 4538: 20,-29 - 5806: 36,-45 + 5802: 36,-45 - node: color: '#6E96AFFF' id: ThreeQuarterTileOverlayGreyscale270 @@ -10201,13 +10213,13 @@ entities: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale270 decals: - 6409: -70,-46 + 6405: -70,-46 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: 2618: -9,-82 - 5425: -6,-17 + 5421: -6,-17 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 @@ -10217,9 +10229,9 @@ entities: 142: 19,27 166: 2,26 207: 9,42 - 5364: 27,40 - 5720: 13,27 - 7220: 6,33 + 5360: 27,40 + 5716: 13,27 + 7216: 6,33 - node: color: '#AB5FC3E3' id: ThreeQuarterTileOverlayGreyscale270 @@ -10241,7 +10253,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 7306: -8,-34 + 7302: -8,-34 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale270 @@ -10293,18 +10305,18 @@ entities: 4783: 34,4 4848: 72,-1 4908: 56,15 - 5063: 49,21 - 5109: 45,15 - 5113: 50,15 - 5269: 65,-5 - 5726: -48,8 - 7202: 2,33 + 5059: 49,21 + 5105: 45,15 + 5109: 50,15 + 5265: 65,-5 + 5722: -48,8 + 7198: 2,33 - node: cleanable: True color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 5311: 25,-5 + 5307: 25,-5 - node: color: '#DE3A3ACC' id: ThreeQuarterTileOverlayGreyscale270 @@ -10327,25 +10339,25 @@ entities: 3635: -77,-10 4199: -79,3 4229: -79,9 - 5217: -78,13 + 5213: -78,13 - node: color: '#F6A4EC72' id: ThreeQuarterTileOverlayGreyscale270 decals: - 5612: -17,-54 - 5698: -29,-47 + 5608: -17,-54 + 5694: -29,-47 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 decals: - 6290: -40,52 + 6286: -40,52 - node: cleanable: True color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 5313: 30,-4 - 5316: 31,-1 + 5309: 30,-4 + 5312: 31,-1 - node: color: '#416E8796' id: ThreeQuarterTileOverlayGreyscale90 @@ -10360,7 +10372,7 @@ entities: 4495: 32,-29 4510: 22,-25 4541: 22,-25 - 5804: 38,-44 + 5800: 38,-44 - node: color: '#6E96AFFF' id: ThreeQuarterTileOverlayGreyscale90 @@ -10370,19 +10382,19 @@ entities: color: '#79150096' id: ThreeQuarterTileOverlayGreyscale90 decals: - 6422: -62,-40 + 6418: -62,-40 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: 2379: 2,-64 - 5432: -4,-14 + 5428: -4,-14 - node: cleanable: True color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 5310: 26,1 + 5306: 26,1 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 @@ -10393,7 +10405,7 @@ entities: 124: 29,38 192: 11,37 205: 11,46 - 5362: 29,44 + 5358: 29,44 - node: color: '#A5CDE6FF' id: ThreeQuarterTileOverlayGreyscale90 @@ -10432,7 +10444,7 @@ entities: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 7308: -7,-32 + 7304: -7,-32 - node: color: '#D4D4D496' id: ThreeQuarterTileOverlayGreyscale90 @@ -10481,14 +10493,14 @@ entities: 4782: 37,6 4850: 74,19 4907: 57,19 - 5064: 59,29 - 5107: 47,24 - 5108: 48,19 - 5114: 54,19 - 5262: 71,-3 - 5271: 66,-3 - 5725: -46,9 - 7201: 4,37 + 5060: 59,29 + 5103: 47,24 + 5104: 48,19 + 5110: 54,19 + 5258: 71,-3 + 5267: 66,-3 + 5721: -46,9 + 7197: 4,37 - node: color: '#E6CD9BFF' id: ThreeQuarterTileOverlayGreyscale90 @@ -10505,14 +10517,14 @@ entities: 3633: -75,-6 4202: -76,7 4228: -76,11 - 5216: -68,16 - 5737: -66,2 + 5212: -68,16 + 5733: -66,2 - node: cleanable: True color: '#C27D3BFF' id: Tunnel decals: - 5466: -38.002388,-36.958828 + 5462: -38.002388,-36.958828 - node: color: '#FF0000FF' id: WarnBox @@ -10557,22 +10569,22 @@ entities: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 5785: 7,-49 + 5781: 7,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 5786: 5,-49 + 5782: 5,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 5789: 7,-50 + 5785: 7,-50 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 5788: 5,-50 + 5784: 5,-50 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -10580,13 +10592,13 @@ entities: 4292: -27,-50 4344: -9,-46 4350: -27,-54 - 6948: -71,-27 - 6953: -71,-23 - 7016: -55,-12 - 7314: -10,-30 - 7315: -8,-36 - 7556: 9,-12 - 7594: 14,-15 + 6944: -71,-27 + 6949: -71,-23 + 7012: -55,-12 + 7310: -10,-30 + 7311: -8,-36 + 7552: 9,-12 + 7590: 14,-15 - node: cleanable: True color: '#FFFFFFFF' @@ -10598,7 +10610,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: - 7322: -5,-38 + 7318: -5,-38 - node: color: '#FFFFFFFF' id: WarnCornerNW @@ -10607,12 +10619,12 @@ entities: 4293: -31,-50 4345: -11,-46 4349: -30,-54 - 6947: -72,-27 - 6952: -72,-23 - 7313: -6,-36 - 7555: 7,-12 - 7593: 12,-15 - 7926: -6,-31 + 6943: -72,-27 + 6948: -72,-23 + 7309: -6,-36 + 7551: 7,-12 + 7589: 12,-15 + 7922: -6,-31 - node: cleanable: True color: '#FFFFFFFF' @@ -10625,19 +10637,19 @@ entities: color: '#FFFFFFFF' id: WarnCornerNW decals: - 7321: -10,-38 + 7317: -10,-38 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: 4346: -9,-48 4352: -27,-55 - 6945: -71,-29 - 6951: -71,-25 - 7011: -55,-15 - 7312: -10,-33 - 7577: 10,-16 - 7591: 14,-17 + 6941: -71,-29 + 6947: -71,-25 + 7007: -55,-15 + 7308: -10,-33 + 7573: 10,-16 + 7587: 14,-17 - node: cleanable: True color: '#FFFFFFFF' @@ -10649,7 +10661,7 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 7323: -5,-44 + 7319: -5,-44 - node: color: '#FFFFFFFF' id: WarnCornerSW @@ -10657,11 +10669,11 @@ entities: 3726: -61,1 4343: -11,-48 4351: -30,-55 - 6946: -72,-29 - 6954: -72,-25 - 7576: 7,-16 - 7592: 12,-17 - 7925: -6,-32 + 6942: -72,-29 + 6950: -72,-25 + 7572: 7,-16 + 7588: 12,-17 + 7921: -6,-32 - node: cleanable: True color: '#FFFFFFFF' @@ -10673,17 +10685,17 @@ entities: color: '#FFFFFFFF' id: WarnCornerSW decals: - 7324: -10,-44 + 7320: -10,-44 - node: color: '#DE3A3AFF' id: WarnCornerSmallGreyscaleNE decals: - 5193: 74,1 + 5189: 74,1 - node: color: '#DE3A3AFF' id: WarnCornerSmallGreyscaleSE decals: - 5194: 74,3 + 5190: 74,3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -10694,10 +10706,10 @@ entities: 4766: 61,1 4767: 57,1 4809: 60,11 - 5251: -13,-17 - 6806: -64,-29 - 7665: 19,74 - 7905: 11,-19 + 5247: -13,-17 + 6802: -64,-29 + 7661: 19,74 + 7901: 11,-19 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -10707,8 +10719,8 @@ entities: 4762: 59,1 4763: 63,1 4764: 67,1 - 5259: -11,-17 - 6807: -60,-29 + 5255: -11,-17 + 6803: -60,-29 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -10716,33 +10728,33 @@ entities: 4566: -15,-11 4567: -11,-11 4810: 60,13 - 5252: -13,-11 - 6804: -64,-23 - 7664: 19,81 + 5248: -13,-11 + 6800: -64,-23 + 7660: 19,81 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 4568: -13,-11 4569: -9,-11 - 5258: -11,-11 - 6805: -60,-23 + 5254: -11,-11 + 6801: -60,-23 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 5329: 35,37 + 5325: 35,37 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleE decals: - 5776: 12,-49 + 5772: 12,-49 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleW decals: - 5775: 11,-49 + 5771: 11,-49 - node: color: '#D37D32FF' id: WarnFull @@ -10840,32 +10852,32 @@ entities: 4796: 37,5 4797: 37,6 4808: 60,12 - 5246: -13,-16 - 5247: -13,-15 - 5248: -13,-14 - 5249: -13,-13 - 5250: -13,-12 - 6796: -64,-24 - 6797: -64,-25 - 6798: -64,-26 - 6799: -64,-27 - 6800: -64,-28 - 6949: -71,-28 - 6955: -71,-24 - 7017: -55,-13 - 7018: -55,-14 - 7319: -10,-32 - 7320: -10,-31 - 7557: 9,-13 - 7558: 9,-14 - 7561: 10,-15 - 7589: 14,-16 - 7658: 19,75 - 7659: 19,76 - 7660: 19,77 - 7661: 19,78 - 7662: 19,79 - 7663: 19,80 + 5242: -13,-16 + 5243: -13,-15 + 5244: -13,-14 + 5245: -13,-13 + 5246: -13,-12 + 6792: -64,-24 + 6793: -64,-25 + 6794: -64,-26 + 6795: -64,-27 + 6796: -64,-28 + 6945: -71,-28 + 6951: -71,-24 + 7013: -55,-13 + 7014: -55,-14 + 7315: -10,-32 + 7316: -10,-31 + 7553: 9,-13 + 7554: 9,-14 + 7557: 10,-15 + 7585: 14,-16 + 7654: 19,75 + 7655: 19,76 + 7656: 19,77 + 7657: 19,78 + 7658: 19,79 + 7659: 19,80 - node: cleanable: True color: '#FFFFFFFF' @@ -10887,36 +10899,36 @@ entities: color: '#FFFFFFFF' id: WarnLineE decals: - 7329: -5,-43 - 7330: -5,-42 - 7331: -5,-41 - 7332: -5,-40 - 7333: -5,-39 + 7325: -5,-43 + 7326: -5,-42 + 7327: -5,-41 + 7328: -5,-40 + 7329: -5,-39 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleE decals: - 5192: 74,2 + 5188: 74,2 - node: color: '#EFB34196' id: WarnLineGreyscaleE decals: - 5740: -63,1 + 5736: -63,1 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 5787: 6,-49 + 5783: 6,-49 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 5790: 6,-50 + 5786: 6,-50 - node: color: '#EFB34196' id: WarnLineGreyscaleW decals: - 5741: -64,1 + 5737: -64,1 - node: color: '#FFFFFFFF' id: WarnLineN @@ -10929,15 +10941,15 @@ entities: 4477: -12,-17 4478: -11,-17 4640: 66,12 - 6793: -61,-23 - 6794: -62,-23 - 6795: -63,-23 - 7559: 10,-14 - 7574: 8,-16 - 7575: 9,-16 - 7590: 13,-17 - 7923: -5,-32 - 7924: -4,-32 + 6789: -61,-23 + 6790: -62,-23 + 6791: -63,-23 + 7555: 10,-14 + 7570: 8,-16 + 7571: 9,-16 + 7586: 13,-17 + 7919: -5,-32 + 7920: -4,-32 - node: cleanable: True color: '#FFFFFFFF' @@ -10951,17 +10963,17 @@ entities: 4961: -50,46 4962: -49,46 4963: -51,46 - 5327: 34,37 - 5328: 33,37 + 5323: 34,37 + 5324: 33,37 - node: zIndex: 10 color: '#FFFFFFFF' id: WarnLineN decals: - 7334: -9,-44 - 7335: -8,-44 - 7336: -7,-44 - 7337: -6,-44 + 7330: -9,-44 + 7331: -8,-44 + 7332: -7,-44 + 7333: -6,-44 - node: color: '#FFFFFFFF' id: WarnLineS @@ -10995,24 +11007,24 @@ entities: 4790: 34,4 4791: 34,5 4792: 34,6 - 5253: -11,-16 - 5254: -11,-15 - 5255: -11,-14 - 5256: -11,-13 - 5257: -11,-12 - 5442: 36,11 - 5443: 36,12 - 6788: -60,-28 - 6789: -60,-27 - 6790: -60,-26 - 6791: -60,-25 - 6792: -60,-24 - 6950: -72,-28 - 6956: -72,-24 - 7553: 7,-13 - 7554: 7,-14 - 7560: 7,-15 - 7588: 12,-16 + 5249: -11,-16 + 5250: -11,-15 + 5251: -11,-14 + 5252: -11,-13 + 5253: -11,-12 + 5438: 36,11 + 5439: 36,12 + 6784: -60,-28 + 6785: -60,-27 + 6786: -60,-26 + 6787: -60,-25 + 6788: -60,-24 + 6946: -72,-28 + 6952: -72,-24 + 7549: 7,-13 + 7550: 7,-14 + 7556: 7,-15 + 7584: 12,-16 - node: cleanable: True color: '#FFFFFFFF' @@ -11025,19 +11037,19 @@ entities: 4978: -53,54 4979: -53,53 4980: -53,52 - 5324: 35,34 - 5325: 35,35 - 5326: 35,36 + 5320: 35,34 + 5321: 35,35 + 5322: 35,36 - node: zIndex: 10 color: '#FFFFFFFF' id: WarnLineS decals: - 7338: -10,-43 - 7339: -10,-42 - 7340: -10,-41 - 7341: -10,-40 - 7342: -10,-39 + 7334: -10,-43 + 7335: -10,-42 + 7336: -10,-41 + 7337: -10,-40 + 7338: -10,-39 - node: color: '#FFFFFFFF' id: WarnLineW @@ -11067,23 +11079,23 @@ entities: 4760: 66,1 4814: 78,22 4815: 77,22 - 6801: -63,-29 - 6802: -62,-29 - 6803: -61,-29 - 7012: -59,-12 - 7013: -58,-12 - 7014: -57,-12 - 7015: -56,-12 - 7316: -9,-36 - 7317: -10,-36 - 7318: -5,-36 - 7551: 13,-15 - 7562: 8,-12 - 7902: 12,-19 - 7903: 13,-19 - 7904: 14,-19 - 7921: -5,-31 - 7922: -4,-31 + 6797: -63,-29 + 6798: -62,-29 + 6799: -61,-29 + 7008: -59,-12 + 7009: -58,-12 + 7010: -57,-12 + 7011: -56,-12 + 7312: -9,-36 + 7313: -10,-36 + 7314: -5,-36 + 7547: 13,-15 + 7558: 8,-12 + 7898: 12,-19 + 7899: 13,-19 + 7900: 14,-19 + 7917: -5,-31 + 7918: -4,-31 - node: cleanable: True color: '#FFFFFFFF' @@ -11101,10 +11113,10 @@ entities: color: '#FFFFFFFF' id: WarnLineW decals: - 7325: -9,-38 - 7326: -8,-38 - 7327: -7,-38 - 7328: -6,-38 + 7321: -9,-38 + 7322: -8,-38 + 7323: -7,-38 + 7324: -6,-38 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' @@ -11212,11 +11224,11 @@ entities: id: WoodTrimThinCornerNe decals: 2795: 36,1 - 5915: 56,-35 - 6121: -34,63 - 6384: -67,-34 - 6670: -49,-43 - 7604: -24,20 + 5911: 56,-35 + 6117: -34,63 + 6380: -67,-34 + 6666: -49,-43 + 7600: -24,20 - node: cleanable: True color: '#FFFFFFFF' @@ -11243,14 +11255,14 @@ entities: decals: 2796: 34,1 4445: 6,11 - 5540: -31,-4 - 5914: 54,-35 - 6127: -39,63 - 6349: -41,29 - 6385: -71,-34 - 6665: -56,-43 - 7451: 49,-15 - 7603: -26,20 + 5536: -31,-4 + 5910: 54,-35 + 6123: -39,63 + 6345: -41,29 + 6381: -71,-34 + 6661: -56,-43 + 7447: 49,-15 + 7599: -26,20 - node: cleanable: True color: '#FFFFFFFF' @@ -11276,13 +11288,13 @@ entities: id: WoodTrimThinCornerSe decals: 2799: 36,-1 - 5919: 56,-36 - 6125: -34,59 - 6347: -39,27 - 6395: -67,-38 - 6674: -49,-47 - 7286: -11,44 - 7388: -12,2 + 5915: 56,-36 + 6121: -34,59 + 6343: -39,27 + 6391: -67,-38 + 6670: -49,-47 + 7282: -11,44 + 7384: -12,2 - node: cleanable: True color: '#FFFFFFFF' @@ -11311,11 +11323,11 @@ entities: decals: 2794: 34,-1 4448: 6,8 - 5917: 54,-36 - 6126: -39,59 - 6396: -71,-38 - 6681: -56,-47 - 7452: 49,-16 + 5913: 54,-36 + 6122: -39,59 + 6392: -71,-38 + 6677: -56,-47 + 7448: 49,-16 - node: cleanable: True color: '#FFFFFFFF' @@ -11340,7 +11352,7 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: - 7444: 12,8 + 7440: 12,8 - node: cleanable: True color: '#151C2553' @@ -11366,23 +11378,23 @@ entities: decals: 2801: 36,0 3728: -26,2 - 6122: -34,62 - 6123: -34,61 - 6124: -34,60 - 6348: -39,28 - 6392: -67,-35 - 6393: -67,-36 - 6394: -67,-37 - 6671: -49,-44 - 6672: -49,-45 - 6673: -49,-46 - 7389: -12,3 - 7390: -12,4 - 7391: -12,5 - 7441: 12,9 - 7442: 12,10 - 7443: 12,11 - 7601: -24,19 + 6118: -34,62 + 6119: -34,61 + 6120: -34,60 + 6344: -39,28 + 6388: -67,-35 + 6389: -67,-36 + 6390: -67,-37 + 6667: -49,-44 + 6668: -49,-45 + 6669: -49,-46 + 7385: -12,3 + 7386: -12,4 + 7387: -12,5 + 7437: 12,9 + 7438: 12,10 + 7439: 12,11 + 7597: -24,19 - node: cleanable: True color: '#FFFFFFFF' @@ -11424,31 +11436,31 @@ entities: 4461: 9,11 4462: 8,11 4463: 7,11 - 5541: -30,-4 - 5542: -29,-4 - 5543: -28,-4 - 5544: -27,-4 - 5545: -26,-4 - 5546: -25,-4 - 5547: -24,-4 - 5548: -23,-4 - 5549: -22,-4 - 5918: 55,-35 - 6135: -38,63 - 6136: -37,63 - 6137: -36,63 - 6138: -35,63 - 6350: -40,29 - 6386: -70,-34 - 6387: -69,-34 - 6388: -68,-34 - 6666: -55,-43 - 6667: -54,-43 - 6668: -51,-43 - 6669: -50,-43 - 7445: 13,8 - 7446: 14,8 - 7602: -25,20 + 5537: -30,-4 + 5538: -29,-4 + 5539: -28,-4 + 5540: -27,-4 + 5541: -26,-4 + 5542: -25,-4 + 5543: -24,-4 + 5544: -23,-4 + 5545: -22,-4 + 5914: 55,-35 + 6131: -38,63 + 6132: -37,63 + 6133: -36,63 + 6134: -35,63 + 6346: -40,29 + 6382: -70,-34 + 6383: -69,-34 + 6384: -68,-34 + 6662: -55,-43 + 6663: -54,-43 + 6664: -51,-43 + 6665: -50,-43 + 7441: 13,8 + 7442: 14,8 + 7598: -25,20 - node: cleanable: True color: '#FFFFFFFF' @@ -11490,26 +11502,26 @@ entities: 4452: 9,8 4453: 10,8 4454: 11,8 - 5916: 55,-36 - 6131: -38,59 - 6132: -37,59 - 6133: -36,59 - 6134: -35,59 - 6346: -40,27 - 6397: -70,-38 - 6398: -69,-38 - 6399: -68,-38 - 6675: -50,-47 - 6676: -51,-47 - 6677: -52,-47 - 6678: -53,-47 - 6679: -54,-47 - 6680: -55,-47 - 7283: -14,44 - 7284: -13,44 - 7285: -12,44 - 7386: -14,2 - 7387: -13,2 + 5912: 55,-36 + 6127: -38,59 + 6128: -37,59 + 6129: -36,59 + 6130: -35,59 + 6342: -40,27 + 6393: -70,-38 + 6394: -69,-38 + 6395: -68,-38 + 6671: -50,-47 + 6672: -51,-47 + 6673: -52,-47 + 6674: -53,-47 + 6675: -54,-47 + 6676: -55,-47 + 7279: -14,44 + 7280: -13,44 + 7281: -12,44 + 7382: -14,2 + 7383: -13,2 - node: cleanable: True color: '#FFFFFFFF' @@ -11539,27 +11551,27 @@ entities: 2800: 34,0 4446: 6,10 4447: 6,9 - 6128: -39,62 - 6129: -39,61 - 6130: -39,60 - 6351: -41,28 - 6389: -71,-35 - 6390: -71,-36 - 6391: -71,-37 - 6682: -56,-46 - 6683: -56,-45 - 6684: -56,-44 - 7265: -9,43 - 7266: -9,42 - 7267: -9,41 - 7268: -9,40 - 7269: -9,40 - 7270: -9,39 - 7271: -9,38 - 7438: 10,7 - 7439: 10,6 - 7440: 10,5 - 7605: -26,19 + 6124: -39,62 + 6125: -39,61 + 6126: -39,60 + 6347: -41,28 + 6385: -71,-35 + 6386: -71,-36 + 6387: -71,-37 + 6678: -56,-46 + 6679: -56,-45 + 6680: -56,-44 + 7261: -9,43 + 7262: -9,42 + 7263: -9,41 + 7264: -9,40 + 7265: -9,40 + 7266: -9,39 + 7267: -9,38 + 7434: 10,7 + 7435: 10,6 + 7436: 10,5 + 7601: -26,19 - node: cleanable: True color: '#FFFFFFFF' @@ -11587,15 +11599,15 @@ entities: color: '#FFFF00FF' id: arrow decals: - 5161: -80,-13 - 5162: -72,-7 + 5157: -80,-13 + 5158: -72,-7 - node: cleanable: True angle: 0.3141592653589793 rad color: '#D4D4D428' id: body decals: - 6496: -67,-42 + 6492: -67,-42 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -11624,7 +11636,7 @@ entities: color: '#D381C996' id: ghost decals: - 5521: -38,-53 + 5517: -38,-53 - node: cleanable: True color: '#53960057' @@ -12048,30 +12060,30 @@ entities: color: '#FF130FFF' id: revolution decals: - 7672: 70.18129,-44.15733 - 7673: 70.68274,-45.61277 - 7674: 73.59362,-42.359432 - 7675: 71.7835,-42.579582 - 7676: 74.33969,-46.945908 - 7677: 51.94888,-37.615288 - 7678: 42.03047,-28.049185 - 7679: 40.961094,-48.00081 - 7680: 33.837444,-55.023407 - 7681: 11.044516,-54.9745 - 7682: -15.015266,-62.977703 - 7683: -27.979544,-68.03711 - 7684: -39.96965,-72.0345 - 7685: -32.867504,-59.191723 - 7686: -27.899733,-58.21326 + 7668: 70.18129,-44.15733 + 7669: 70.68274,-45.61277 + 7670: 73.59362,-42.359432 + 7671: 71.7835,-42.579582 + 7672: 74.33969,-46.945908 + 7673: 51.94888,-37.615288 + 7674: 42.03047,-28.049185 + 7675: 40.961094,-48.00081 + 7676: 33.837444,-55.023407 + 7677: 11.044516,-54.9745 + 7678: -15.015266,-62.977703 + 7679: -27.979544,-68.03711 + 7680: -39.96965,-72.0345 + 7681: -32.867504,-59.191723 + 7682: -27.899733,-58.21326 - node: cleanable: True color: '#FFFFFFFF' id: smallbrush decals: - 7597: 88.298744,-20.08006 - 7598: 88.42375,-20.11131 - 7599: 88.48625,-20.29881 - 7600: 88.2675,-20.33006 + 7593: 88.298744,-20.08006 + 7594: 88.42375,-20.11131 + 7595: 88.48625,-20.29881 + 7596: 88.2675,-20.33006 - node: cleanable: True color: '#52B4E93B' @@ -12137,59 +12149,59 @@ entities: color: '#79150072' id: splatter decals: - 5795: 4.9943438,-52.500916 - 5796: 8.991885,-52.53041 - 5797: 8.047816,-49.56581 - 5798: 5.9236617,-50.067284 + 5791: 4.9943438,-52.500916 + 5792: 8.991885,-52.53041 + 5793: 8.047816,-49.56581 + 5794: 5.9236617,-50.067284 - node: cleanable: True color: '#8559007A' id: splatter decals: - 7612: 28.707888,-18.29235 - 7613: 29.301638,-17.714226 + 7608: 28.707888,-18.29235 + 7609: 29.301638,-17.714226 - node: cleanable: True color: '#855900FF' id: splatter decals: - 7614: 29.426638,-16.276726 - 7615: 29.332888,-17.6361 + 7610: 29.426638,-16.276726 + 7611: 29.332888,-17.6361 - node: cleanable: True color: '#951710FF' id: splatter decals: - 5468: -44.48576,-37.892525 - 5469: -40.013565,-36.083096 + 5464: -44.48576,-37.892525 + 5465: -40.013565,-36.083096 - node: cleanable: True color: '#B159004C' id: splatter decals: - 7606: 28.411013,-16.339226 - 7607: 28.598513,-16.526728 - 7608: 28.582886,-16.932978 - 7609: 29.098513,-18.339226 - 7610: 29.379763,-18.16735 - 7611: 29.223513,-18.29235 + 7602: 28.411013,-16.339226 + 7603: 28.598513,-16.526728 + 7604: 28.582886,-16.932978 + 7605: 29.098513,-18.339226 + 7606: 29.379763,-18.16735 + 7607: 29.223513,-18.29235 - node: color: '#FF130FFF' id: splatter decals: - 7567: -26.056488,-81.10591 - 7568: -25.853363,-81.84029 - 7569: -26.197113,-81.76216 - 7570: -25.697115,-80.90279 - 7571: -26.915863,-80.69967 - 7572: -26.322113,-81.13716 - 7573: -26.118988,-80.74654 + 7563: -26.056488,-81.10591 + 7564: -25.853363,-81.84029 + 7565: -26.197113,-81.76216 + 7566: -25.697115,-80.90279 + 7567: -26.915863,-80.69967 + 7568: -26.322113,-81.13716 + 7569: -26.118988,-80.74654 - node: cleanable: True color: '#DDC3A1FF' id: toilet decals: - 5467: -45.00619,-38.08002 + 5463: -45.00619,-38.08002 - node: cleanable: True color: '#FFFFFFFF' @@ -16107,8 +16119,8 @@ entities: localAnchorB: 5,0.49999997 localAnchorA: 90,21.5 referenceAngle: -3.173097E-05 - damping: 467.6 - stiffness: 4197.6 + damping: 467.6596 + stiffness: 4197.703 - type: NavMap - uid: 35771 components: @@ -23186,18 +23198,6 @@ entities: parent: 13307 - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 4143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,21.5 - parent: 13307 - - uid: 4952 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,17.5 - parent: 13307 - uid: 17921 components: - type: Transform @@ -23210,6 +23210,14 @@ entities: rot: 3.141592653589793 rad pos: -11.5,99.5 parent: 13307 +- proto: AirlockExternalGlassShuttleGamma + entities: + - uid: 38466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,18.5 + parent: 13307 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 16426 @@ -27934,24 +27942,12 @@ entities: - type: Transform pos: -61.5,-16.5 parent: 13307 - - uid: 9568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,17.5 - parent: 13307 - uid: 9704 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,84.5 parent: 13307 - - uid: 10966 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,21.5 - parent: 13307 - uid: 11229 components: - type: Transform @@ -28135,6 +28131,11 @@ entities: rot: -1.5707963267948966 rad pos: -81.5,-12.5 parent: 13307 + - uid: 38337 + components: + - type: Transform + pos: 94.5,18.5 + parent: 13307 - uid: 38618 components: - type: Transform @@ -30616,6 +30617,31 @@ entities: - type: Transform pos: -13.5,35.5 parent: 39617 + - uid: 42226 + components: + - type: Transform + pos: 102.5,20.5 + parent: 13307 + - uid: 42227 + components: + - type: Transform + pos: 102.5,19.5 + parent: 13307 + - uid: 42228 + components: + - type: Transform + pos: 102.5,18.5 + parent: 13307 + - uid: 42230 + components: + - type: Transform + pos: 102.5,17.5 + parent: 13307 + - uid: 42231 + components: + - type: Transform + pos: 102.5,16.5 + parent: 13307 - proto: BlastDoorOpen entities: - uid: 1643 @@ -32261,20 +32287,20 @@ entities: - type: Transform pos: 65.5,9.5 parent: 13307 - - uid: 41745 + - uid: 23873 components: - type: Transform - pos: 65.529045,9.5097 + pos: 68.4211,8.708112 parent: 13307 - - uid: 42205 + - uid: 24845 components: - type: Transform - pos: 70.383835,8.663647 + pos: 68.4211,8.708112 parent: 13307 - - uid: 42208 + - uid: 41745 components: - type: Transform - pos: 70.383835,8.663647 + pos: 65.529045,9.5097 parent: 13307 - proto: BoxMesonScanners entities: @@ -95961,6 +95987,12 @@ entities: rot: 3.141592653589793 rad pos: 7.5,47.5 parent: 13307 + - uid: 10285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,16.5 + parent: 13307 - uid: 10346 components: - type: Transform @@ -96023,6 +96055,12 @@ entities: - type: Transform pos: -17.5,38.5 parent: 13307 + - uid: 11116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 91.5,17.5 + parent: 13307 - uid: 11157 components: - type: Transform @@ -97004,24 +97042,6 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,18.5 parent: 13307 - - uid: 38465 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,19.5 - parent: 13307 - - uid: 38466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,18.5 - parent: 13307 - - uid: 38467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,20.5 - parent: 13307 - uid: 38468 components: - type: Transform @@ -104152,13 +104172,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHelmetSwat - entities: - - uid: 24845 - components: - - type: Transform - pos: 68.7,10.2 - parent: 13307 - proto: ClothingHeadHelmetSyndicate entities: - uid: 14634 @@ -104870,13 +104883,6 @@ entities: - type: Transform pos: -25.483652,-81.412 parent: 13307 -- proto: ClothingOuterArmorHeavyRed - entities: - - uid: 33166 - components: - - type: Transform - pos: 68.5,10.5 - parent: 13307 - proto: ClothingOuterArmorReflective entities: - uid: 12888 @@ -108534,6 +108540,13 @@ entities: - 0 - 0 - 0 +- proto: CrateSecurityRiot + entities: + - uid: 38632 + components: + - type: Transform + pos: 68.5,10.5 + parent: 13307 - proto: CrateServiceBureaucracy entities: - uid: 36118 @@ -121637,7 +121650,7 @@ entities: pos: 62.5,-40.5 parent: 13307 - type: Door - secondsUntilStateChange: -22991.73 + secondsUntilStateChange: -23795.828 state: Opening - uid: 43264 components: @@ -124250,7 +124263,7 @@ entities: pos: -30.5,70.5 parent: 13307 - type: Door - secondsUntilStateChange: -19522.93 + secondsUntilStateChange: -20327.027 state: Closing - uid: 17804 components: @@ -124332,7 +124345,7 @@ entities: pos: -19.5,21.5 parent: 13307 - type: Door - secondsUntilStateChange: -36338.43 + secondsUntilStateChange: -37142.53 state: Closing - uid: 19168 components: @@ -183889,6 +183902,12 @@ entities: - type: Transform pos: -64.5,38.5 parent: 13307 + - uid: 28818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,17.5 + parent: 13307 - uid: 28821 components: - type: Transform @@ -187251,6 +187270,12 @@ entities: - type: Transform pos: 90.5,18.5 parent: 13307 + - uid: 38467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,19.5 + parent: 13307 - uid: 38476 components: - type: Transform @@ -187918,6 +187943,101 @@ entities: rot: 3.141592653589793 rad pos: 98.5,12.5 parent: 13307 + - uid: 42233 + components: + - type: Transform + pos: 99.5,10.5 + parent: 13307 + - uid: 42234 + components: + - type: Transform + pos: 100.5,11.5 + parent: 13307 + - uid: 42235 + components: + - type: Transform + pos: 100.5,12.5 + parent: 13307 + - uid: 42236 + components: + - type: Transform + pos: 101.5,13.5 + parent: 13307 + - uid: 42237 + components: + - type: Transform + pos: 103.5,13.5 + parent: 13307 + - uid: 42239 + components: + - type: Transform + pos: 104.5,14.5 + parent: 13307 + - uid: 42240 + components: + - type: Transform + pos: 104.5,15.5 + parent: 13307 + - uid: 42241 + components: + - type: Transform + pos: 104.5,18.5 + parent: 13307 + - uid: 42242 + components: + - type: Transform + pos: 104.5,19.5 + parent: 13307 + - uid: 42243 + components: + - type: Transform + pos: 104.5,20.5 + parent: 13307 + - uid: 42244 + components: + - type: Transform + pos: 104.5,22.5 + parent: 13307 + - uid: 42245 + components: + - type: Transform + pos: 104.5,23.5 + parent: 13307 + - uid: 42246 + components: + - type: Transform + pos: 103.5,23.5 + parent: 13307 + - uid: 42247 + components: + - type: Transform + pos: 101.5,23.5 + parent: 13307 + - uid: 42248 + components: + - type: Transform + pos: 100.5,23.5 + parent: 13307 + - uid: 42249 + components: + - type: Transform + pos: 98.5,23.5 + parent: 13307 + - uid: 42250 + components: + - type: Transform + pos: 97.5,23.5 + parent: 13307 + - uid: 42251 + components: + - type: Transform + pos: 96.5,23.5 + parent: 13307 + - uid: 42252 + components: + - type: Transform + pos: 95.5,23.5 + parent: 13307 - uid: 42261 components: - type: Transform @@ -193215,6 +193335,28 @@ entities: - type: Transform pos: 59.5,9.5 parent: 13307 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 42206 + components: + - type: Transform + pos: 70.38411,8.32258 + parent: 13307 + - uid: 42208 + components: + - type: Transform + pos: 70.38411,8.32258 + parent: 13307 + - uid: 42254 + components: + - type: Transform + pos: 70.38411,8.32258 + parent: 13307 + - uid: 42255 + components: + - type: Transform + pos: 70.38411,8.32258 + parent: 13307 - proto: MagicDiceBag entities: - uid: 9084 @@ -196835,6 +196977,14 @@ entities: - type: Transform pos: -54.62513,-9.336228 parent: 13307 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 42253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 93.5,18.5 + parent: 13307 - proto: PlasticFlapsAirtightClear entities: - uid: 12596 @@ -205113,12 +205263,6 @@ entities: parent: 13307 - proto: PoweredlightRed entities: - - uid: 23873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,8.5 - parent: 13307 - uid: 23947 components: - type: Transform @@ -205160,6 +205304,11 @@ entities: - type: Transform pos: 66.5,9.5 parent: 13307 + - uid: 42204 + components: + - type: Transform + pos: 69.5,10.5 + parent: 13307 - proto: PoweredlightSodium entities: - uid: 189 @@ -208497,12 +208646,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,7.5 parent: 13307 - - uid: 38632 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,10.5 - parent: 13307 - uid: 38635 components: - type: Transform @@ -212836,6 +212979,12 @@ entities: - type: Transform pos: 48.5,14.5 parent: 13307 + - uid: 4952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,17.5 + parent: 13307 - uid: 5036 components: - type: Transform @@ -216791,6 +216940,12 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-3.5 parent: 13307 + - uid: 28605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 94.5,19.5 + parent: 13307 - uid: 28615 components: - type: Transform @@ -222342,6 +222497,11 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,5.5 parent: 13307 + - uid: 42232 + components: + - type: Transform + pos: 94.5,19.5 + parent: 13307 - proto: SignAtmosMinsky entities: - uid: 35305 @@ -238810,6 +238970,8 @@ entities: - type: Transform pos: -1.5,38.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineAtmosDrobe entities: - uid: 25628 @@ -238817,6 +238979,8 @@ entities: - type: Transform pos: -56.5,38.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineBooze entities: - uid: 9183 @@ -238824,16 +238988,22 @@ entities: - type: Transform pos: 5.5,10.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 17058 components: - type: Transform pos: -62.5,-47.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 27714 components: - type: Transform pos: -5.5,39.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCargoDrobe entities: - uid: 23658 @@ -238841,11 +239011,15 @@ entities: - type: Transform pos: 22.5,38.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 24086 components: - type: Transform pos: 22.5,37.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCart entities: - uid: 9381 @@ -238853,6 +239027,8 @@ entities: - type: Transform pos: -8.5,4.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChang entities: - uid: 41117 @@ -238860,6 +239036,8 @@ entities: - type: Transform pos: 2.5,3.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChapel entities: - uid: 16266 @@ -238867,6 +239045,8 @@ entities: - type: Transform pos: -19.5,-81.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefDrobe entities: - uid: 28648 @@ -238874,6 +239054,8 @@ entities: - type: Transform pos: -28.5,27.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefvend entities: - uid: 29091 @@ -238881,6 +239063,8 @@ entities: - type: Transform pos: -28.5,28.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemDrobe entities: - uid: 26401 @@ -238888,6 +239072,8 @@ entities: - type: Transform pos: 7.5,-35.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemicals entities: - uid: 35604 @@ -238895,6 +239081,8 @@ entities: - type: Transform pos: 6.5,-35.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCigs entities: - uid: 1876 @@ -238902,6 +239090,8 @@ entities: - type: Transform pos: 61.5,27.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5403 components: - type: MetaData @@ -238909,6 +239099,8 @@ entities: - type: Transform pos: -20.5,24.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9182 components: - type: MetaData @@ -238916,6 +239108,8 @@ entities: - type: Transform pos: 5.5,9.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9227 components: - type: MetaData @@ -238923,6 +239117,8 @@ entities: - type: Transform pos: -6.5,9.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16199 components: - type: MetaData @@ -238930,6 +239126,8 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 17653 components: - type: MetaData @@ -238937,6 +239135,8 @@ entities: - type: Transform pos: -21.5,60.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 23438 components: - type: MetaData @@ -238944,6 +239144,8 @@ entities: - type: Transform pos: 12.5,-9.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 24389 components: - type: MetaData @@ -238951,6 +239153,8 @@ entities: - type: Transform pos: 10.5,16.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26487 components: - type: MetaData @@ -238958,6 +239162,8 @@ entities: - type: Transform pos: -65.5,13.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 30349 components: - type: MetaData @@ -238965,6 +239171,8 @@ entities: - type: Transform pos: 43.5,-55.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 30697 components: - type: MetaData @@ -238972,16 +239180,22 @@ entities: - type: Transform pos: 55.5,-30.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 33836 components: - type: Transform pos: 36.5,-27.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 35238 components: - type: Transform pos: 3.5,-1.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineClothing entities: - uid: 17620 @@ -238989,21 +239203,29 @@ entities: - type: Transform pos: -21.5,61.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18038 components: - type: Transform pos: -9.5,34.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 25248 components: - type: Transform pos: 33.5,-16.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 41118 components: - type: Transform pos: -2.5,-4.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCoffee entities: - uid: 7786 @@ -239011,6 +239233,8 @@ entities: - type: Transform pos: 14.5,46.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9228 components: - type: MetaData @@ -239018,6 +239242,8 @@ entities: - type: Transform pos: -6.5,10.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 11161 components: - type: MetaData @@ -239025,26 +239251,36 @@ entities: - type: Transform pos: 38.5,-28.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14787 components: - type: Transform pos: 9.5,16.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 22792 components: - type: Transform pos: 67.5,27.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29250 components: - type: Transform pos: -25.5,-38.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 40307 components: - type: Transform pos: -57.5,-35.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCola entities: - uid: 33611 @@ -239052,11 +239288,15 @@ entities: - type: Transform pos: 18.5,72.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 41119 components: - type: Transform pos: 4.5,-1.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineColaBlack entities: - uid: 41120 @@ -239064,6 +239304,8 @@ entities: - type: Transform pos: 1.5,3.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCondiments entities: - uid: 36270 @@ -239071,6 +239313,8 @@ entities: - type: Transform pos: -28.5,38.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCuraDrobe entities: - uid: 286 @@ -239078,6 +239322,8 @@ entities: - type: Transform pos: -25.5,-10.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDetDrobe entities: - uid: 32517 @@ -239085,6 +239331,8 @@ entities: - type: Transform pos: 28.5,12.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDinnerware entities: - uid: 34592 @@ -239092,6 +239340,8 @@ entities: - type: Transform pos: -29.5,31.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDiscount entities: - uid: 40308 @@ -239099,6 +239349,8 @@ entities: - type: Transform pos: -57.5,-36.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngiDrobe entities: - uid: 26348 @@ -239106,6 +239358,8 @@ entities: - type: Transform pos: -50.5,-3.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngivend entities: - uid: 20073 @@ -239113,6 +239367,8 @@ entities: - type: Transform pos: -48.5,-0.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGames entities: - uid: 1118 @@ -239120,21 +239376,29 @@ entities: - type: Transform pos: 55.5,-12.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 1121 components: - type: Transform pos: -28.5,-15.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 8987 components: - type: Transform pos: -66.5,-33.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 35725 components: - type: Transform pos: -2.5,-1.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGeneDrobe entities: - uid: 17777 @@ -239142,6 +239406,8 @@ entities: - type: Transform pos: 7.5,-46.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHappyHonk entities: - uid: 34684 @@ -239149,6 +239415,8 @@ entities: - type: Transform pos: -22.5,28.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHydrobe entities: - uid: 41692 @@ -239156,6 +239424,8 @@ entities: - type: Transform pos: -28.5,48.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineJaniDrobe entities: - uid: 12010 @@ -239163,6 +239433,8 @@ entities: - type: Transform pos: -10.5,52.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineLawDrobe entities: - uid: 30635 @@ -239170,6 +239442,8 @@ entities: - type: Transform pos: 37.5,2.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMedical entities: - uid: 9828 @@ -239177,26 +239451,36 @@ entities: - type: Transform pos: 28.5,-21.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12961 components: - type: Transform pos: 68.5,13.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18954 components: - type: Transform pos: 18.5,-46.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 22901 components: - type: Transform pos: 38.5,-40.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 35737 components: - type: Transform pos: 63.5,-2.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMediDrobe entities: - uid: 26413 @@ -239204,6 +239488,8 @@ entities: - type: Transform pos: 31.5,-21.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineNutri entities: - uid: 32435 @@ -239211,11 +239497,15 @@ entities: - type: Transform pos: 2.5,54.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 41693 components: - type: Transform pos: -30.5,48.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRestockSecTech entities: - uid: 21134 @@ -239232,6 +239522,8 @@ entities: - type: Transform pos: -3.5,-38.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRobotics entities: - uid: 35150 @@ -239239,6 +239531,8 @@ entities: - type: Transform pos: -3.5,-43.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSalvage entities: - uid: 5030 @@ -239246,11 +239540,15 @@ entities: - type: Transform pos: 13.5,46.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12649 components: - type: Transform pos: 33.5,28.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSciDrobe entities: - uid: 7501 @@ -239258,6 +239556,8 @@ entities: - type: Transform pos: -24.5,-23.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSec entities: - uid: 2227 @@ -239265,21 +239565,29 @@ entities: - type: Transform pos: 59.5,6.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 3340 components: - type: Transform pos: 57.5,13.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 37422 components: - type: Transform pos: 63.5,3.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 41122 components: - type: Transform pos: 9.5,-3.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSecDrobe entities: - uid: 7796 @@ -239287,16 +239595,22 @@ entities: - type: Transform pos: 54.5,13.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9694 components: - type: Transform pos: 4.5,33.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 15719 components: - type: Transform pos: 1.5,65.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeeds entities: - uid: 41694 @@ -239304,6 +239618,8 @@ entities: - type: Transform pos: -29.5,48.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeedsUnlocked entities: - uid: 10963 @@ -239311,11 +239627,15 @@ entities: - type: Transform pos: 3.5,54.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 24232 components: - type: Transform pos: 94.5,10.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineShamblersJuice entities: - uid: 9370 @@ -239323,6 +239643,8 @@ entities: - type: Transform pos: -45.5,-44.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSnack entities: - uid: 16931 @@ -239330,11 +239652,15 @@ entities: - type: Transform pos: 17.5,72.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 41123 components: - type: Transform pos: 5.5,-1.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSovietSoda entities: - uid: 13896 @@ -239342,11 +239668,15 @@ entities: - type: Transform pos: 70.5,22.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 42009 components: - type: Transform pos: -50.5,-19.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSustenance entities: - uid: 41124 @@ -239354,6 +239684,8 @@ entities: - type: Transform pos: -10.5,6.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSyndieDrobe entities: - uid: 2529 @@ -239361,6 +239693,8 @@ entities: - type: Transform pos: -39.5,-78.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEngineering entities: - uid: 18347 @@ -239368,16 +239702,22 @@ entities: - type: Transform pos: -48.5,-9.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 28021 components: - type: Transform pos: -45.5,-14.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 36047 components: - type: Transform pos: -71.5,-9.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEVA entities: - uid: 3116 @@ -239385,46 +239725,64 @@ entities: - type: Transform pos: 63.5,11.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19857 components: - type: Transform pos: 36.5,34.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 22679 components: - type: Transform pos: 34.5,42.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 24495 components: - type: Transform pos: 22.5,26.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 30508 components: - type: Transform pos: 77.5,8.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 32205 components: - type: Transform pos: -7.5,-16.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 32631 components: - type: Transform pos: -7.5,-15.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 39719 components: - type: Transform pos: -14.5,34.5 parent: 39617 + - type: VendingMachine + startingPlayerCount: 1 - uid: 41153 components: - type: Transform pos: 10.5,-13.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTheater entities: - uid: 16212 @@ -239432,21 +239790,29 @@ entities: - type: Transform pos: 40.5,-49.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16387 components: - type: Transform pos: -8.5,34.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26309 components: - type: Transform pos: 12.5,70.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 30353 components: - type: Transform pos: 34.5,-16.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineVendomat entities: - uid: 388 @@ -239454,21 +239820,29 @@ entities: - type: Transform pos: -12.5,-55.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 829 components: - type: Transform pos: -27.5,79.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5466 components: - type: Transform pos: -9.5,-27.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 25512 components: - type: Transform pos: -28.5,12.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineViroDrobe entities: - uid: 16442 @@ -239476,6 +239850,8 @@ entities: - type: Transform pos: 45.5,-63.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWallMedical entities: - uid: 3462 @@ -239484,45 +239860,61 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,-3.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5427 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,14.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 14489 components: - type: Transform pos: 20.5,-49.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 25422 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,-64.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29778 components: - type: Transform pos: 38.5,-32.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 33193 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-33.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 43255 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-13.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 43256 components: - type: Transform pos: 32.5,-32.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWinter entities: - uid: 39238 @@ -239530,6 +239922,8 @@ entities: - type: Transform pos: 35.5,-16.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineYouTool entities: - uid: 2601 @@ -239537,21 +239931,29 @@ entities: - type: Transform pos: 13.5,-3.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 13974 components: - type: Transform pos: -56.5,20.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 24065 components: - type: Transform pos: -28.5,11.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29513 components: - type: Transform pos: -48.5,-1.5 parent: 13307 + - type: VendingMachine + startingPlayerCount: 1 - proto: VibraphoneInstrument entities: - uid: 28751 @@ -241539,6 +241941,11 @@ entities: rot: 3.141592653589793 rad pos: -13.5,70.5 parent: 13307 + - uid: 4143 + components: + - type: Transform + pos: 94.5,22.5 + parent: 13307 - uid: 4202 components: - type: Transform @@ -243080,6 +243487,11 @@ entities: - type: Transform pos: 75.5,-4.5 parent: 13307 + - uid: 9568 + components: + - type: Transform + pos: 94.5,21.5 + parent: 13307 - uid: 9579 components: - type: Transform @@ -243389,8 +243801,7 @@ entities: - uid: 9771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,23.5 + pos: 94.5,20.5 parent: 13307 - uid: 9778 components: @@ -243638,12 +244049,6 @@ entities: - type: Transform pos: 71.5,-52.5 parent: 13307 - - uid: 10285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,23.5 - parent: 13307 - uid: 10300 components: - type: Transform @@ -243808,6 +244213,12 @@ entities: - type: Transform pos: 19.5,-53.5 parent: 13307 + - uid: 10966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,21.5 + parent: 13307 - uid: 10986 components: - type: Transform @@ -243879,12 +244290,6 @@ entities: - type: Transform pos: -60.5,52.5 parent: 13307 - - uid: 11116 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,23.5 - parent: 13307 - uid: 11117 components: - type: Transform @@ -244130,7 +244535,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,19.5 + pos: 98.5,21.5 parent: 13307 - uid: 11514 components: @@ -248619,7 +249024,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,18.5 + pos: 95.5,21.5 parent: 13307 - uid: 21600 components: @@ -248657,7 +249062,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,19.5 + pos: 96.5,21.5 parent: 13307 - uid: 21677 components: @@ -251319,13 +251724,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,19.5 - parent: 13307 - - uid: 28605 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,19.5 + pos: 101.5,21.5 parent: 13307 - uid: 28635 components: @@ -251456,12 +251855,6 @@ entities: - type: Transform pos: 28.5,-20.5 parent: 13307 - - uid: 28818 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,23.5 - parent: 13307 - uid: 28819 components: - type: Transform @@ -255488,22 +255881,20 @@ entities: - uid: 38334 components: - type: Transform - pos: 94.5,22.5 + rot: 1.5707963267948966 rad + pos: 102.5,21.5 parent: 13307 - uid: 38335 components: - type: Transform - pos: 94.5,20.5 + rot: 1.5707963267948966 rad + pos: 102.5,15.5 parent: 13307 - uid: 38336 components: - type: Transform - pos: 94.5,19.5 - parent: 13307 - - uid: 38337 - components: - - type: Transform - pos: 94.5,16.5 + rot: 1.5707963267948966 rad + pos: 97.5,21.5 parent: 13307 - uid: 38342 components: @@ -255540,6 +255931,11 @@ entities: - type: Transform pos: 90.5,25.5 parent: 13307 + - uid: 38465 + components: + - type: Transform + pos: 94.5,16.5 + parent: 13307 - uid: 38592 components: - type: Transform @@ -256036,6 +256432,30 @@ entities: rot: 3.141592653589793 rad pos: 97.5,10.5 parent: 13307 + - uid: 42209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,21.5 + parent: 13307 + - uid: 42210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,15.5 + parent: 13307 + - uid: 42216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,15.5 + parent: 13307 + - uid: 42218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,15.5 + parent: 13307 - uid: 42282 components: - type: Transform @@ -271152,18 +271572,6 @@ entities: - type: Transform pos: -27.5,-50.5 parent: 13307 -- proto: WeaponAMS-42 - entities: - - uid: 42204 - components: - - type: Transform - pos: 70.5,8.6 - parent: 13307 - - uid: 42206 - components: - - type: Transform - pos: 70.5,8.4 - parent: 13307 - proto: WeaponCapacitorRecharger entities: - uid: 63 @@ -271518,18 +271926,6 @@ entities: rot: 3.141592653589793 rad pos: 58.59685,15.98753 parent: 13307 -- proto: WeaponGunLaserCarbineAutomatic - entities: - - uid: 38609 - components: - - type: Transform - pos: 68.5,8.32 - parent: 13307 - - uid: 38612 - components: - - type: Transform - pos: 68.5,8.69 - parent: 13307 - proto: WeaponLaserCannon entities: - uid: 42207 @@ -271707,6 +272103,18 @@ entities: - type: Transform pos: 65.497795,9.494064 parent: 13307 +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 33166 + components: + - type: Transform + pos: 68.60455,8.377657 + parent: 13307 + - uid: 38609 + components: + - type: Transform + pos: 68.56786,8.59796 + parent: 13307 - proto: WeaponShotgunDoubleBarreled entities: - uid: 35999 @@ -271775,6 +272183,11 @@ entities: parent: 13307 - proto: WeaponSubMachineGunWt550 entities: + - uid: 38612 + components: + - type: Transform + pos: 70.530876,8.579602 + parent: 13307 - uid: 38615 components: - type: Transform @@ -271785,6 +272198,11 @@ entities: - type: Transform pos: 67.46212,7.55103 parent: 13307 + - uid: 42205 + components: + - type: Transform + pos: 70.530876,8.579602 + parent: 13307 - proto: WeaponTurretHostile entities: - uid: 35010 @@ -272917,7 +273335,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -8700.591 + secondsUntilStateChange: -9504.689 state: Opening - uid: 38432 components: diff --git a/Resources/Maps/_Sunrise/Station/fland.yml b/Resources/Maps/_Sunrise/Station/fland.yml index 00964a6f052..6ef1cb3fc37 100644 --- a/Resources/Maps/_Sunrise/Station/fland.yml +++ b/Resources/Maps/_Sunrise/Station/fland.yml @@ -184,11 +184,11 @@ entities: version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAA version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,4: ind: -1,4 @@ -18973,6 +18973,14 @@ entities: - type: Transform pos: -33.5,-30.5 parent: 13329 +- proto: AirlockExternalGlassShuttleGamma + entities: + - uid: 4616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,49.5 + parent: 13329 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 3743 @@ -29478,6 +29486,11 @@ entities: - type: Transform pos: -46.5,-10.5 parent: 13329 + - uid: 3907 + components: + - type: Transform + pos: -46.5,51.5 + parent: 13329 - uid: 8641 components: - type: Transform @@ -29558,6 +29571,26 @@ entities: - type: Transform pos: 129.5,-3.5 parent: 13329 + - uid: 35095 + components: + - type: Transform + pos: -46.5,49.5 + parent: 13329 + - uid: 35096 + components: + - type: Transform + pos: -46.5,48.5 + parent: 13329 + - uid: 35097 + components: + - type: Transform + pos: -46.5,47.5 + parent: 13329 + - uid: 35478 + components: + - type: Transform + pos: -46.5,50.5 + parent: 13329 - proto: BlastDoorOpen entities: - uid: 1975 @@ -32873,6 +32906,11 @@ entities: - type: Transform pos: -40.5,42.5 parent: 13329 + - uid: 5476 + components: + - type: Transform + pos: -37.5,49.5 + parent: 13329 - uid: 5761 components: - type: Transform @@ -54158,6 +54196,136 @@ entities: - type: Transform pos: 28.5,37.5 parent: 13329 + - uid: 35452 + components: + - type: Transform + pos: -38.5,49.5 + parent: 13329 + - uid: 35453 + components: + - type: Transform + pos: -38.5,48.5 + parent: 13329 + - uid: 35454 + components: + - type: Transform + pos: -38.5,47.5 + parent: 13329 + - uid: 35455 + components: + - type: Transform + pos: -38.5,46.5 + parent: 13329 + - uid: 35456 + components: + - type: Transform + pos: -39.5,46.5 + parent: 13329 + - uid: 35457 + components: + - type: Transform + pos: -40.5,46.5 + parent: 13329 + - uid: 35458 + components: + - type: Transform + pos: -41.5,46.5 + parent: 13329 + - uid: 35459 + components: + - type: Transform + pos: -42.5,46.5 + parent: 13329 + - uid: 35460 + components: + - type: Transform + pos: -43.5,46.5 + parent: 13329 + - uid: 35461 + components: + - type: Transform + pos: -44.5,46.5 + parent: 13329 + - uid: 35462 + components: + - type: Transform + pos: -45.5,46.5 + parent: 13329 + - uid: 35463 + components: + - type: Transform + pos: -46.5,46.5 + parent: 13329 + - uid: 35464 + components: + - type: Transform + pos: -46.5,47.5 + parent: 13329 + - uid: 35465 + components: + - type: Transform + pos: -46.5,48.5 + parent: 13329 + - uid: 35466 + components: + - type: Transform + pos: -46.5,49.5 + parent: 13329 + - uid: 35467 + components: + - type: Transform + pos: -46.5,50.5 + parent: 13329 + - uid: 35468 + components: + - type: Transform + pos: -46.5,51.5 + parent: 13329 + - uid: 35469 + components: + - type: Transform + pos: -46.5,52.5 + parent: 13329 + - uid: 35470 + components: + - type: Transform + pos: -45.5,52.5 + parent: 13329 + - uid: 35471 + components: + - type: Transform + pos: -44.5,52.5 + parent: 13329 + - uid: 35472 + components: + - type: Transform + pos: -43.5,52.5 + parent: 13329 + - uid: 35473 + components: + - type: Transform + pos: -42.5,52.5 + parent: 13329 + - uid: 35474 + components: + - type: Transform + pos: -41.5,52.5 + parent: 13329 + - uid: 35475 + components: + - type: Transform + pos: -40.5,52.5 + parent: 13329 + - uid: 35476 + components: + - type: Transform + pos: -39.5,52.5 + parent: 13329 + - uid: 35477 + components: + - type: Transform + pos: -38.5,52.5 + parent: 13329 - proto: CableApcStack entities: - uid: 12137 @@ -110436,11 +110604,6 @@ entities: - type: Transform pos: -21.5,40.5 parent: 13329 - - uid: 4616 - components: - - type: Transform - pos: -37.5,49.5 - parent: 13329 - uid: 6368 components: - type: Transform @@ -155069,21 +155232,11 @@ entities: - type: Transform pos: -34.5,49.5 parent: 13329 - - uid: 4032 - components: - - type: Transform - pos: -38.5,47.5 - parent: 13329 - uid: 4033 components: - type: Transform pos: -38.5,48.5 parent: 13329 - - uid: 4034 - components: - - type: Transform - pos: -38.5,49.5 - parent: 13329 - uid: 4663 components: - type: Transform @@ -155274,11 +155427,6 @@ entities: - type: Transform pos: -29.5,56.5 parent: 13329 - - uid: 5476 - components: - - type: Transform - pos: -38.5,52.5 - parent: 13329 - uid: 5477 components: - type: Transform @@ -166339,6 +166487,14 @@ entities: rot: 1.5707963267948966 rad pos: 99.5,-15.5 parent: 13329 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 4032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,49.5 + parent: 13329 - proto: PlasticFlapsAirtightClear entities: - uid: 11498 @@ -170860,6 +171016,12 @@ entities: parent: 13329 - type: ApcPowerReceiver powerLoad: 0 + - uid: 35451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,49.5 + parent: 13329 - proto: PoweredlightLED entities: - uid: 13646 @@ -177796,21 +177958,11 @@ entities: - type: Transform pos: -35.5,46.5 parent: 13329 - - uid: 3907 - components: - - type: Transform - pos: -38.5,47.5 - parent: 13329 - uid: 3908 components: - type: Transform pos: -38.5,48.5 parent: 13329 - - uid: 3909 - components: - - type: Transform - pos: -38.5,49.5 - parent: 13329 - uid: 3910 components: - type: Transform @@ -177831,12 +177983,6 @@ entities: - type: Transform pos: -21.5,43.5 parent: 13329 - - uid: 5140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,52.5 - parent: 13329 - uid: 5141 components: - type: Transform @@ -196466,6 +196612,8 @@ entities: - type: Transform pos: -17.5,29.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineAtmosDrobe entities: - uid: 26100 @@ -196473,6 +196621,8 @@ entities: - type: Transform pos: 77.5,-22.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineBooze entities: - uid: 1429 @@ -196480,21 +196630,29 @@ entities: - type: Transform pos: -15.5,27.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 30319 components: - type: Transform pos: 79.5,43.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 32609 components: - type: Transform pos: 103.5,16.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 34331 components: - type: Transform pos: 86.5,-54.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCargoDrobe entities: - uid: 11619 @@ -196502,6 +196660,8 @@ entities: - type: Transform pos: 0.5,-18.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCart entities: - uid: 31554 @@ -196509,6 +196669,8 @@ entities: - type: Transform pos: 65.5,48.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChapel entities: - uid: 6590 @@ -196516,6 +196678,8 @@ entities: - type: Transform pos: -21.5,75.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefDrobe entities: - uid: 31767 @@ -196523,6 +196687,8 @@ entities: - type: Transform pos: -3.5,29.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefvend entities: - uid: 1151 @@ -196530,6 +196696,8 @@ entities: - type: Transform pos: -8.5,17.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemDrobe entities: - uid: 18343 @@ -196537,6 +196705,8 @@ entities: - type: Transform pos: 25.5,41.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemicals entities: - uid: 13392 @@ -196544,6 +196714,8 @@ entities: - type: Transform pos: 25.5,38.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCigs entities: - uid: 1145 @@ -196551,106 +196723,148 @@ entities: - type: Transform pos: -11.5,12.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 1882 components: - type: Transform pos: -1.5,2.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 2557 components: - type: Transform pos: -19.5,-0.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 4146 components: - type: Transform pos: -26.5,33.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 7103 components: - type: Transform pos: 19.5,-0.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10183 components: - type: Transform pos: 20.5,26.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10344 components: - type: Transform pos: 47.5,25.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 13153 components: - type: Transform pos: -34.5,-22.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18876 components: - type: Transform pos: 14.5,68.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20013 components: - type: Transform pos: 32.5,-37.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20821 components: - type: Transform pos: -2.5,53.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26036 components: - type: Transform pos: 40.5,-9.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26517 components: - type: Transform pos: 78.5,-16.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26760 components: - type: Transform pos: 91.5,-19.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29161 components: - type: Transform pos: 89.5,23.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 30079 components: - type: Transform pos: 95.5,41.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 31468 components: - type: Transform pos: 67.5,44.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 31520 components: - type: Transform pos: 64.5,53.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 32521 components: - type: Transform pos: 104.5,16.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 33816 components: - type: Transform pos: 32.5,35.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 34370 components: - type: Transform pos: 68.5,-48.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineClothing entities: - uid: 2555 @@ -196658,21 +196872,29 @@ entities: - type: Transform pos: -19.5,-2.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29158 components: - type: Transform pos: 94.5,21.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29333 components: - type: Transform pos: 70.5,19.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 33868 components: - type: Transform pos: -1.5,71.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCoffee entities: - uid: 2556 @@ -196680,76 +196902,106 @@ entities: - type: Transform pos: -19.5,-1.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 6298 components: - type: Transform pos: -36.5,59.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 6340 components: - type: Transform pos: -17.5,56.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 7104 components: - type: Transform pos: 20.5,-0.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10182 components: - type: Transform pos: 19.5,26.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10345 components: - type: Transform pos: 48.5,25.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18709 components: - type: Transform pos: 11.5,59.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19742 components: - type: Transform pos: 27.5,-46.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20014 components: - type: Transform pos: 31.5,-37.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20820 components: - type: Transform pos: -2.5,52.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26569 components: - type: Transform pos: 79.5,-16.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29456 components: - type: Transform pos: 58.5,30.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 31519 components: - type: Transform pos: 61.5,53.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 33817 components: - type: Transform pos: 33.5,35.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 34371 components: - type: Transform pos: 68.5,-49.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCola entities: - uid: 18877 @@ -196757,11 +197009,15 @@ entities: - type: Transform pos: 13.5,68.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26035 components: - type: Transform pos: 40.5,-8.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCondiments entities: - uid: 14805 @@ -196769,6 +197025,8 @@ entities: - type: Transform pos: -11.5,22.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCuraDrobe entities: - uid: 26355 @@ -196776,6 +197034,8 @@ entities: - type: Transform pos: -24.5,62.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDetDrobe entities: - uid: 4532 @@ -196783,6 +197043,8 @@ entities: - type: Transform pos: -22.5,37.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDinnerware entities: - uid: 1150 @@ -196790,6 +197052,8 @@ entities: - type: Transform pos: -11.5,26.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDonut entities: - uid: 34823 @@ -196797,6 +197061,8 @@ entities: - type: Transform pos: 22.5,-19.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngiDrobe entities: - uid: 26449 @@ -196804,6 +197070,8 @@ entities: - type: Transform pos: 82.5,1.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngivend entities: - uid: 13042 @@ -196811,11 +197079,15 @@ entities: - type: Transform pos: -42.5,-49.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26448 components: - type: Transform pos: 81.5,1.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGames entities: - uid: 6379 @@ -196823,6 +197095,8 @@ entities: - type: Transform pos: -24.5,58.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGeneDrobe entities: - uid: 18640 @@ -196830,6 +197104,8 @@ entities: - type: Transform pos: 2.5,50.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHappyHonk entities: - uid: 1149 @@ -196837,6 +197113,8 @@ entities: - type: Transform pos: -11.5,24.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHydrobe entities: - uid: 1341 @@ -196844,6 +197122,8 @@ entities: - type: Transform pos: -14.5,42.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineJaniDrobe entities: - uid: 1498 @@ -196851,6 +197131,8 @@ entities: - type: Transform pos: 2.5,13.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineLawDrobe entities: - uid: 29517 @@ -196858,6 +197140,8 @@ entities: - type: Transform pos: 72.5,36.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMedical entities: - uid: 10261 @@ -196865,26 +197149,36 @@ entities: - type: Transform pos: -1.5,50.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18560 components: - type: Transform pos: 2.5,45.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18819 components: - type: Transform pos: 8.5,65.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 18867 components: - type: Transform pos: 17.5,66.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19094 components: - type: Transform pos: 36.5,46.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMediDrobe entities: - uid: 18820 @@ -196892,6 +197186,8 @@ entities: - type: Transform pos: 8.5,68.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineNutri entities: - uid: 1351 @@ -196899,6 +197195,8 @@ entities: - type: Transform pos: -3.5,37.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRoboDrobe entities: - uid: 14000 @@ -196906,6 +197204,8 @@ entities: - type: Transform pos: 27.5,-27.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRobotics entities: - uid: 13395 @@ -196913,6 +197213,8 @@ entities: - type: Transform pos: 33.5,-19.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSalvage entities: - uid: 11650 @@ -196920,6 +197222,8 @@ entities: - type: Transform pos: 12.5,-31.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSciDrobe entities: - uid: 15330 @@ -196927,6 +197231,8 @@ entities: - type: Transform pos: 56.5,-24.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSec entities: - uid: 9426 @@ -196934,11 +197240,15 @@ entities: - type: Transform pos: 34.5,12.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19159 components: - type: Transform pos: 33.5,16.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSecDrobe entities: - uid: 2209 @@ -196946,16 +197256,22 @@ entities: - type: Transform pos: -8.5,-8.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9425 components: - type: Transform pos: 33.5,12.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 11818 components: - type: Transform pos: 11.5,-12.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeeds entities: - uid: 1337 @@ -196963,6 +197279,8 @@ entities: - type: Transform pos: -3.5,36.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeedsUnlocked entities: - uid: 10406 @@ -196970,6 +197288,8 @@ entities: - type: Transform pos: 49.5,21.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSnack entities: - uid: 26037 @@ -196977,6 +197297,8 @@ entities: - type: Transform pos: 40.5,-10.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSovietSoda entities: - uid: 31768 @@ -196984,11 +197306,15 @@ entities: - type: Transform pos: -7.5,-27.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 32754 components: - type: Transform pos: 109.5,36.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEngineering entities: - uid: 26010 @@ -196996,6 +197322,8 @@ entities: - type: Transform pos: 62.5,-21.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEVA entities: - uid: 9433 @@ -197003,46 +197331,64 @@ entities: - type: Transform pos: 39.5,14.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 13086 components: - type: Transform pos: -29.5,-44.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 15421 components: - type: Transform pos: 55.5,-37.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 23411 components: - type: Transform pos: 110.5,-15.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26006 components: - type: Transform pos: 77.5,-26.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26009 components: - type: Transform pos: 62.5,-17.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26525 components: - type: Transform pos: 70.5,-4.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 33550 components: - type: Transform pos: 52.5,36.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 34696 components: - type: Transform pos: 88.5,-10.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTheater entities: - uid: 1108 @@ -197050,11 +197396,15 @@ entities: - type: Transform pos: -10.5,10.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 29159 components: - type: Transform pos: 94.5,22.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineVendomat entities: - uid: 6956 @@ -197062,16 +197412,22 @@ entities: - type: Transform pos: 7.5,25.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20076 components: - type: Transform pos: 57.5,-43.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26589 components: - type: Transform pos: 62.5,-0.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineViroDrobe entities: - uid: 19031 @@ -197079,6 +197435,8 @@ entities: - type: Transform pos: 30.5,39.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWallMedical entities: - uid: 18813 @@ -197086,6 +197444,8 @@ entities: - type: Transform pos: 22.5,64.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWinter entities: - uid: 17357 @@ -197093,11 +197453,15 @@ entities: - type: Transform pos: 94.5,23.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 23957 components: - type: Transform pos: 71.5,19.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineYouTool entities: - uid: 6955 @@ -197105,16 +197469,22 @@ entities: - type: Transform pos: 7.5,26.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26444 components: - type: Transform pos: 77.5,-18.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - uid: 26531 components: - type: Transform pos: 80.5,1.5 parent: 13329 + - type: VendingMachine + startingPlayerCount: 1 - proto: WallmountGeneratorAPUElectronics entities: - uid: 13127 @@ -198901,6 +199271,12 @@ entities: - type: Transform pos: -38.5,46.5 parent: 13329 + - uid: 3909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,47.5 + parent: 13329 - uid: 3912 components: - type: Transform @@ -198936,6 +199312,11 @@ entities: - type: Transform pos: -37.5,51.5 parent: 13329 + - uid: 4034 + components: + - type: Transform + pos: -38.5,52.5 + parent: 13329 - uid: 4155 components: - type: Transform @@ -198956,6 +199337,11 @@ entities: - type: Transform pos: -28.5,61.5 parent: 13329 + - uid: 5140 + components: + - type: Transform + pos: -39.5,52.5 + parent: 13329 - uid: 5145 components: - type: Transform @@ -211442,6 +211828,81 @@ entities: rot: 1.5707963267948966 rad pos: 45.5,-49.5 parent: 13329 + - uid: 35098 + components: + - type: Transform + pos: -40.5,52.5 + parent: 13329 + - uid: 35099 + components: + - type: Transform + pos: -41.5,52.5 + parent: 13329 + - uid: 35100 + components: + - type: Transform + pos: -42.5,52.5 + parent: 13329 + - uid: 35101 + components: + - type: Transform + pos: -43.5,52.5 + parent: 13329 + - uid: 35102 + components: + - type: Transform + pos: -44.5,52.5 + parent: 13329 + - uid: 35103 + components: + - type: Transform + pos: -45.5,52.5 + parent: 13329 + - uid: 35104 + components: + - type: Transform + pos: -46.5,52.5 + parent: 13329 + - uid: 35105 + components: + - type: Transform + pos: -46.5,46.5 + parent: 13329 + - uid: 35107 + components: + - type: Transform + pos: -45.5,46.5 + parent: 13329 + - uid: 35279 + components: + - type: Transform + pos: -44.5,46.5 + parent: 13329 + - uid: 35280 + components: + - type: Transform + pos: -43.5,46.5 + parent: 13329 + - uid: 35344 + components: + - type: Transform + pos: -42.5,46.5 + parent: 13329 + - uid: 35428 + components: + - type: Transform + pos: -41.5,46.5 + parent: 13329 + - uid: 35449 + components: + - type: Transform + pos: -40.5,46.5 + parent: 13329 + - uid: 35450 + components: + - type: Transform + pos: -39.5,46.5 + parent: 13329 - proto: WallSolid entities: - uid: 2 diff --git a/Resources/Maps/_Sunrise/Station/marathon.yml b/Resources/Maps/_Sunrise/Station/marathon.yml index e4f47b34b8a..a0d1acff07c 100644 --- a/Resources/Maps/_Sunrise/Station/marathon.yml +++ b/Resources/Maps/_Sunrise/Station/marathon.yml @@ -152,7 +152,7 @@ entities: version: 6 -2,3: ind: -2,3 - tiles: XQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 @@ -5806,7 +5806,8 @@ entities: -10,12: 0: 65535 -10,13: - 0: 65535 + 0: 64511 + 2: 1024 -10,14: 0: 65535 -10,15: @@ -6324,16 +6325,16 @@ entities: 5,-5: 0: 65535 6,-8: - 0: 7967 - 2: 224 - 3: 57344 - 6,-7: 0: 7967 3: 224 4: 57344 + 6,-7: + 0: 7967 + 4: 224 + 5: 57344 6,-6: 0: 65311 - 5: 224 + 6: 224 6,-5: 0: 65535 7,-8: @@ -6382,7 +6383,7 @@ entities: 0: 65535 6,-9: 0: 7967 - 3: 57568 + 4: 57568 7,-9: 0: 13107 -4,-12: @@ -6973,7 +6974,7 @@ entities: 0: 65280 -16,14: 0: 52862 - 2: 128 + 3: 128 -16,15: 0: 3976 -16,13: @@ -7705,6 +7706,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -9870,9 +9886,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-58.5 parent: 30 - - type: DeviceLinkSink - links: - - 22632 - type: DeviceLinkSource linkedPorts: 22632: @@ -9883,9 +9896,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-58.5 parent: 30 - - type: DeviceLinkSink - links: - - 22631 - type: DeviceLinkSource linkedPorts: 22631: @@ -9970,9 +9980,6 @@ entities: - type: Transform pos: 34.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 11800 - type: DeviceLinkSource linkedPorts: 11800: @@ -9982,9 +9989,6 @@ entities: - type: Transform pos: 34.5,-12.5 parent: 30 - - type: DeviceLinkSink - links: - - 11658 - type: DeviceLinkSource linkedPorts: 11658: @@ -10014,9 +10018,6 @@ entities: - type: Transform pos: -17.5,-52.5 parent: 30 - - type: DeviceLinkSink - links: - - 10136 - type: DeviceLinkSource linkedPorts: 10136: @@ -10026,9 +10027,6 @@ entities: - type: Transform pos: -17.5,-49.5 parent: 30 - - type: DeviceLinkSink - links: - - 10135 - type: DeviceLinkSource linkedPorts: 10135: @@ -10038,9 +10036,6 @@ entities: - type: Transform pos: -0.5,60.5 parent: 30 - - type: DeviceLinkSink - links: - - 20060 - type: DeviceLinkSource linkedPorts: 20060: @@ -10050,9 +10045,6 @@ entities: - type: Transform pos: -0.5,62.5 parent: 30 - - type: DeviceLinkSink - links: - - 20059 - type: DeviceLinkSource linkedPorts: 20059: @@ -10069,9 +10061,6 @@ entities: - type: Transform pos: -0.5,39.5 parent: 30 - - type: DeviceLinkSink - links: - - 5390 - type: DeviceLinkSource linkedPorts: 5390: @@ -10175,6 +10164,14 @@ entities: rot: 3.141592653589793 rad pos: 25.5,43.5 parent: 30 +- proto: AirlockExternalGlassShuttleGamma + entities: + - uid: 2159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,54.5 + parent: 30 - proto: AirlockExternalGlassShuttleLocked entities: - uid: 11864 @@ -10196,9 +10193,6 @@ entities: - type: Transform pos: -0.5,41.5 parent: 30 - - type: DeviceLinkSink - links: - - 5391 - type: DeviceLinkSource linkedPorts: 5391: @@ -10862,7 +10856,7 @@ entities: pos: -27.5,18.5 parent: 30 - type: Door - secondsUntilStateChange: -626.3288 + secondsUntilStateChange: -890.72095 state: Opening - type: DeviceLinkSource lastSignals: @@ -11442,9 +11436,6 @@ entities: - type: Transform pos: -50.5,62.5 parent: 30 - - type: DeviceLinkSink - links: - - 840 - type: DeviceLinkSource linkedPorts: 840: @@ -11537,9 +11528,6 @@ entities: - type: Transform pos: -50.5,59.5 parent: 30 - - type: DeviceLinkSink - links: - - 2312 - type: DeviceLinkSource linkedPorts: 2312: @@ -12117,6 +12105,13 @@ entities: - type: Transform pos: -62.5,-44.5 parent: 30 +- proto: AlwaysPoweredLightExterior + entities: + - uid: 16138 + components: + - type: Transform + pos: -23.5,62.5 + parent: 30 - proto: AmeController entities: - uid: 9476 @@ -13294,6 +13289,12 @@ entities: - type: Transform pos: -59.5,-7.5 parent: 30 + - uid: 2131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,54.5 + parent: 30 - uid: 3707 components: - type: Transform @@ -14242,204 +14243,156 @@ entities: - type: Transform pos: 12.5,40.5 parent: 30 - - type: DeviceLinkSink - links: - - 20398 - uid: 7562 components: - type: Transform pos: -42.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7920 - uid: 7563 components: - type: Transform pos: -43.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 7920 - uid: 9068 components: - type: Transform pos: 12.5,-38.5 parent: 30 - - type: DeviceLinkSink - links: - - 8570 - - 9038 - uid: 9404 components: - type: Transform pos: -24.5,-45.5 parent: 30 - - type: DeviceLinkSink - links: - - 8609 - - 8393 - uid: 9405 components: - type: Transform pos: -23.5,-45.5 parent: 30 - - type: DeviceLinkSink - links: - - 8609 - - 8393 - uid: 9825 components: - type: Transform pos: -13.5,-59.5 parent: 30 - - type: DeviceLinkSink - links: - - 8818 - uid: 9826 components: - type: Transform pos: -13.5,-58.5 parent: 30 - - type: DeviceLinkSink - links: - - 8818 - uid: 9827 components: - type: Transform pos: -13.5,-57.5 parent: 30 - - type: DeviceLinkSink - links: - - 8818 - uid: 9828 components: - type: Transform pos: -1.5,-59.5 parent: 30 - - type: DeviceLinkSink - links: - - 8821 - uid: 9829 components: - type: Transform pos: -1.5,-58.5 parent: 30 - - type: DeviceLinkSink - links: - - 8821 - uid: 9830 components: - type: Transform pos: -1.5,-57.5 parent: 30 - - type: DeviceLinkSink - links: - - 8821 - uid: 11659 components: - type: Transform pos: 35.5,-12.5 parent: 30 - - type: DeviceLinkSink - links: - - 11761 - uid: 11682 components: - type: Transform pos: 35.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 11933 - uid: 11923 components: - type: Transform pos: 38.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 8610 - uid: 11995 components: - type: Transform pos: 38.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 8863 - uid: 12059 components: - type: Transform pos: 36.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 8863 - uid: 12099 components: - type: Transform pos: 36.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 8610 - uid: 13347 components: - type: Transform pos: 36.5,14.5 parent: 30 - - type: DeviceLinkSink - links: - - 12915 - uid: 13751 components: - type: Transform pos: 48.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 15985 - uid: 14512 components: - type: Transform pos: 48.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 15986 + - uid: 16133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,63.5 + parent: 30 + - uid: 16134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,63.5 + parent: 30 + - uid: 16135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,63.5 + parent: 30 + - uid: 16136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 30 + - uid: 16137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,63.5 + parent: 30 - uid: 16228 components: - type: Transform pos: 23.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 10289 - uid: 16229 components: - type: Transform pos: 22.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 10289 - uid: 16230 components: - type: Transform pos: 21.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 10289 - uid: 16773 components: - type: Transform pos: 37.5,14.5 parent: 30 - - type: DeviceLinkSink - links: - - 12915 - proto: BlastDoorOpen entities: - uid: 2189 @@ -14447,151 +14400,97 @@ entities: - type: Transform pos: -37.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 2313 components: - type: Transform pos: -26.5,58.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 5078 components: - type: Transform pos: -20.5,52.5 parent: 30 - - type: DeviceLinkSink - links: - - 4731 - uid: 5079 components: - type: Transform pos: -20.5,51.5 parent: 30 - - type: DeviceLinkSink - links: - - 4731 - uid: 5822 components: - type: Transform pos: -20.5,50.5 parent: 30 - - type: DeviceLinkSink - links: - - 4731 - uid: 6299 components: - type: Transform pos: -20.5,49.5 parent: 30 - - type: DeviceLinkSink - links: - - 4731 - uid: 9188 components: - type: Transform pos: 5.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 9184 - uid: 9189 components: - type: Transform pos: 6.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 9184 - uid: 9190 components: - type: Transform pos: 7.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 9184 - uid: 15174 components: - type: Transform pos: -20.5,48.5 parent: 30 - - type: DeviceLinkSink - links: - - 4731 - uid: 17473 components: - type: Transform pos: -26.5,59.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 18838 components: - type: Transform pos: -26.5,60.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 18840 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 20360 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 20389 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 20391 components: - type: Transform rot: 1.5707963267948966 rad pos: -34.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 20401 components: - type: Transform rot: 1.5707963267948966 rad pos: -33.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - uid: 20402 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,61.5 parent: 30 - - type: DeviceLinkSink - links: - - 20432 - proto: BlockGameArcade entities: - uid: 1281 @@ -14632,7 +14531,7 @@ entities: - type: Transform pos: -60.353844,-63.575558 parent: 30 -- proto: BookChefGaming +- proto: BookHowToCookForFortySpaceman entities: - uid: 9948 components: @@ -52495,6 +52394,13 @@ entities: - type: Transform pos: 40.490578,30.452217 parent: 30 +- proto: ClothingOuterCoatDetectiveLoadout + entities: + - uid: 11366 + components: + - type: Transform + pos: 4.503509,-14.329939 + parent: 30 - proto: ClothingOuterCoatGentle entities: - uid: 16947 @@ -52508,13 +52414,6 @@ entities: parent: 19618 - type: Physics canCollide: False -- proto: ClothingOuterCoatInspector - entities: - - uid: 11366 - components: - - type: Transform - pos: 4.503509,-14.329939 - parent: 30 - proto: ClothingOuterCoatJensen entities: - uid: 9233 @@ -53756,242 +53655,158 @@ entities: - type: Transform pos: 35.5,-13.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - uid: 8466 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 11717 - uid: 8500 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 11717 - uid: 8503 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 11717 - uid: 11639 components: - type: Transform pos: 35.5,-11.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - uid: 11691 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-3.5 parent: 30 - - type: DeviceLinkSink - links: - - 11717 - uid: 11702 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 11866 - uid: 11755 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 11866 - uid: 11780 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 12013 - uid: 11865 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 11866 - uid: 11926 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 12013 - uid: 11932 components: - type: Transform pos: 35.5,-16.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - uid: 11978 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 12013 - uid: 11979 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 11866 - uid: 12014 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,-2.5 parent: 30 - - type: DeviceLinkSink - links: - - 11866 - uid: 12031 components: - type: Transform pos: 35.5,-14.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - uid: 12047 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 12013 - uid: 12096 components: - type: Transform pos: 35.5,-12.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - uid: 12231 components: - type: Transform pos: 35.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - uid: 14522 components: - type: Transform pos: 48.5,25.5 parent: 30 - - type: DeviceLinkSink - links: - - 15987 - uid: 14523 components: - type: Transform pos: 48.5,24.5 parent: 30 - - type: DeviceLinkSink - links: - - 15987 - uid: 14524 components: - type: Transform pos: 48.5,23.5 parent: 30 - - type: DeviceLinkSink - links: - - 15987 - uid: 14525 components: - type: Transform pos: 48.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 15987 - uid: 14526 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 15988 - uid: 14527 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 15988 - uid: 14528 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 15988 - uid: 14529 components: - type: Transform rot: -1.5707963267948966 rad pos: 52.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 15988 - uid: 16126 components: - type: Transform pos: 35.5,-15.5 parent: 30 - - type: DeviceLinkSink - links: - - 11677 - proto: CornSeeds entities: - uid: 2348 @@ -90753,11 +90568,6 @@ entities: - type: Transform pos: -27.5,63.5 parent: 30 - - uid: 2094 - components: - - type: Transform - pos: -26.5,63.5 - parent: 30 - uid: 2316 components: - type: Transform @@ -96273,6 +96083,47 @@ entities: - type: Transform pos: -10.5,-19.5 parent: 30 +- proto: GunSafe + entities: + - uid: 15075 + components: + - type: MetaData + name: оружейный сейф энергопушек + - type: Transform + pos: -37.5,54.5 + parent: 30 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15166 + - 15293 + - 15334 + - 15335 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: GunSafeBlueShield entities: - uid: 1089 @@ -96287,13 +96138,6 @@ entities: - type: Transform pos: -41.5,55.5 parent: 30 -- proto: GunSafeLaserCarbine - entities: - - uid: 1942 - components: - - type: Transform - pos: -37.5,54.5 - parent: 30 - proto: GunSafeRifleLecter entities: - uid: 1940 @@ -98402,44 +98246,29 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 30 - - type: DeviceLinkSink - links: - - 3598 - uid: 864 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,-7.5 parent: 30 - - type: DeviceLinkSink - links: - - 3189 - uid: 961 components: - type: Transform rot: -1.5707963267948966 rad pos: 15.5,16.5 parent: 30 - - type: DeviceLinkSink - links: - - 3115 - uid: 1753 components: - type: Transform pos: -33.5,37.5 parent: 30 - - type: DeviceLinkSink - links: - - 5417 - uid: 7609 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 30 - - type: DeviceLinkSink - links: - - 7440 - proto: JetpackBlueFilled entities: - uid: 8311 @@ -98990,6 +98819,13 @@ entities: - 0 - 0 - 0 +- proto: LockerBrigmedicFilled + entities: + - uid: 2094 + components: + - type: Transform + pos: -49.5,53.5 + parent: 30 - proto: LockerCaptainFilledHardsuit entities: - uid: 1440 @@ -99618,29 +99454,6 @@ entities: parent: 30 - proto: LockerMedicalFilled entities: - - uid: 2246 - components: - - type: Transform - pos: -49.5,53.5 - parent: 30 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.4430928 - - 12.952587 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 7606 components: - type: Transform @@ -100135,9 +99948,6 @@ entities: - type: Transform pos: 36.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 15282 - proto: MachineCentrifuge entities: - uid: 19439 @@ -100510,6 +100320,11 @@ entities: - type: Transform pos: -51.477226,53.661713 parent: 30 + - uid: 15073 + components: + - type: Transform + pos: -51.479927,53.396076 + parent: 30 - proto: MedkitCombatFilled entities: - uid: 1069 @@ -100517,6 +100332,11 @@ entities: - type: Transform pos: -39.594727,11.489756 parent: 30 + - uid: 14846 + components: + - type: Transform + pos: -52.604927,53.067722 + parent: 30 - proto: MedkitFilled entities: - uid: 1560 @@ -100529,6 +100349,11 @@ entities: - type: Transform pos: -50.48913,53.64174 parent: 30 + - uid: 2246 + components: + - type: Transform + pos: -50.448677,53.42735 + parent: 30 - uid: 3174 components: - type: Transform @@ -100551,6 +100376,11 @@ entities: - type: Transform pos: -16.716362,-18.374166 parent: 30 + - uid: 1942 + components: + - type: Transform + pos: -50.964302,53.396076 + parent: 30 - uid: 2241 components: - type: Transform @@ -101958,6 +101788,14 @@ entities: - type: Transform pos: -25.5,-48.5 parent: 30 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 15830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,53.5 + parent: 30 - proto: PlasticFlapsAirtightClear entities: - uid: 1952 @@ -106180,9 +106018,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,-22.5 parent: 30 - - type: DeviceLinkSink - links: - - 6992 - uid: 7437 components: - type: Transform @@ -108516,9 +108351,6 @@ entities: rot: 1.5707963267948966 rad pos: 53.5,22.5 parent: 30 - - type: DeviceLinkSink - links: - - 15989 - proto: ReinforcedGirder entities: - uid: 21934 @@ -112751,17 +112583,11 @@ entities: - type: Transform pos: -33.5,8.5 parent: 30 - - type: DeviceLinkSink - links: - - 544 - uid: 543 components: - type: Transform pos: -33.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 544 - uid: 5557 components: - type: Transform @@ -112772,91 +112598,51 @@ entities: - type: Transform pos: 23.5,52.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13729 components: - type: Transform pos: 24.5,52.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13730 components: - type: Transform pos: 25.5,52.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13731 components: - type: Transform pos: 26.5,52.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13732 components: - type: Transform pos: 27.5,52.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13733 components: - type: Transform pos: 27.5,54.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13734 components: - type: Transform pos: 26.5,54.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13735 components: - type: Transform pos: 25.5,54.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13736 components: - type: Transform pos: 24.5,54.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - uid: 13737 components: - type: Transform pos: 23.5,54.5 parent: 30 - - type: DeviceLinkSink - links: - - 13741 - - 13742 - proto: ShuttersNormalOpen entities: - uid: 390 @@ -112865,539 +112651,341 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,11.5 parent: 30 - - type: DeviceLinkSink - links: - - 384 - uid: 391 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,9.5 parent: 30 - - type: DeviceLinkSink - links: - - 384 - uid: 392 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 30 - - type: DeviceLinkSink - links: - - 384 - uid: 393 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 384 - uid: 394 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 30 - - type: DeviceLinkSink - links: - - 384 - uid: 395 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,6.5 parent: 30 - - type: DeviceLinkSink - links: - - 384 - uid: 580 components: - type: Transform pos: -3.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 581 components: - type: Transform pos: -2.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 582 components: - type: Transform pos: -1.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 899 components: - type: Transform pos: 29.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 7673 - uid: 3176 components: - type: Transform pos: -42.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3177 components: - type: Transform pos: -40.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3181 components: - type: Transform pos: -48.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3182 components: - type: Transform pos: -47.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3183 components: - type: Transform pos: -46.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3184 components: - type: Transform pos: -44.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3185 components: - type: Transform pos: -43.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 3405 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,8.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 4361 components: - type: Transform pos: 5.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 4376 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 4378 components: - type: Transform pos: 0.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 4438 components: - type: Transform pos: 27.5,17.5 parent: 30 - - type: DeviceLinkSink - links: - - 7673 - uid: 4915 components: - type: Transform pos: 1.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 5698 components: - type: Transform pos: -39.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 5700 components: - type: Transform pos: -38.5,38.5 parent: 30 - - type: DeviceLinkSink - links: - - 3180 - uid: 5733 components: - type: Transform pos: -5.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 5738 components: - type: Transform pos: -14.5,36.5 parent: 30 - - type: DeviceLinkSink - links: - - 20392 - uid: 5741 components: - type: Transform pos: -15.5,36.5 parent: 30 - - type: DeviceLinkSink - links: - - 20392 - uid: 6785 components: - type: Transform pos: -8.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 3204 - uid: 6797 components: - type: Transform pos: -9.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 3204 - uid: 6871 components: - type: Transform pos: -23.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 6869 - uid: 6882 components: - type: Transform pos: -28.5,0.5 parent: 30 - - type: DeviceLinkSink - links: - - 8607 - uid: 6929 components: - type: Transform pos: 4.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 6945 components: - type: Transform pos: -9.5,5.5 parent: 30 - - type: DeviceLinkSink - links: - - 583 - uid: 7164 components: - type: Transform pos: -27.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6868 - uid: 7829 components: - type: Transform pos: -23.5,-21.5 parent: 30 - - type: DeviceLinkSink - links: - - 6868 - uid: 7876 components: - type: Transform pos: -27.5,-17.5 parent: 30 - - type: DeviceLinkSink - links: - - 6869 - uid: 7971 components: - type: Transform pos: -7.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 3204 - uid: 7972 components: - type: Transform pos: -5.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 3204 - uid: 7991 components: - type: Transform pos: -6.5,-5.5 parent: 30 - - type: DeviceLinkSink - links: - - 3204 - uid: 7992 components: - type: Transform pos: -10.5,-6.5 parent: 30 - - type: DeviceLinkSink - links: - - 3204 - uid: 9238 components: - type: Transform pos: -4.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 9239 components: - type: Transform pos: -3.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 11002 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,32.5 parent: 30 - - type: DeviceLinkSink - links: - - 11008 - uid: 11006 components: - type: Transform pos: -42.5,34.5 parent: 30 - - type: DeviceLinkSink - links: - - 11008 - uid: 11010 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,31.5 parent: 30 - - type: DeviceLinkSink - links: - - 11008 - uid: 11716 components: - type: Transform pos: 26.5,-0.5 parent: 30 - - type: DeviceLinkSink - links: - - 12029 - uid: 11822 components: - type: Transform pos: 24.5,-0.5 parent: 30 - - type: DeviceLinkSink - links: - - 12029 - uid: 11823 components: - type: Transform pos: 25.5,-0.5 parent: 30 - - type: DeviceLinkSink - links: - - 12029 - uid: 12625 components: - type: Transform pos: -5.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 12656 components: - type: Transform pos: 14.5,13.5 parent: 30 - - type: DeviceLinkSink - links: - - 20399 - uid: 12657 components: - type: Transform pos: 13.5,13.5 parent: 30 - - type: DeviceLinkSink - links: - - 20399 - uid: 12810 components: - type: Transform pos: 24.5,15.5 parent: 30 - - type: DeviceLinkSink - links: - - 7673 - uid: 13075 components: - type: Transform pos: 15.5,13.5 parent: 30 - - type: DeviceLinkSink - links: - - 20399 - uid: 14340 components: - type: Transform pos: 27.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 7673 - uid: 14352 components: - type: Transform pos: 28.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 7673 - uid: 14355 components: - type: Transform pos: 26.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 7673 - uid: 20394 components: - type: Transform pos: -3.5,36.5 parent: 30 - - type: DeviceLinkSink - links: - - 20393 - uid: 20395 components: - type: Transform pos: -4.5,36.5 parent: 30 - - type: DeviceLinkSink - links: - - 20393 - uid: 20445 components: - type: Transform pos: -2.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 20447 components: - type: Transform pos: 0.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 20448 components: - type: Transform pos: -0.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 20449 components: - type: Transform pos: -1.5,12.5 parent: 30 - - type: DeviceLinkSink - links: - - 20446 - uid: 21333 components: - type: Transform rot: 1.5707963267948966 rad pos: -40.5,30.5 parent: 30 - - type: DeviceLinkSink - links: - - 11008 - uid: 21722 components: - type: Transform pos: -0.5,28.5 parent: 30 - - type: DeviceLinkSink - links: - - 21721 - uid: 22424 components: - type: Transform pos: 4.5,28.5 parent: 30 - - type: DeviceLinkSink - links: - - 21721 - proto: ShuttersRadiationOpen entities: - uid: 9182 @@ -114054,6 +113642,11 @@ entities: - type: Transform pos: -42.5,50.5 parent: 30 + - uid: 15829 + components: + - type: Transform + pos: -22.5,54.5 + parent: 30 - proto: SignAtmos entities: - uid: 9082 @@ -121594,11 +121187,6 @@ entities: - type: Transform pos: 37.5,38.5 parent: 30 - - uid: 2131 - components: - - type: Transform - pos: -23.5,53.5 - parent: 30 - uid: 2132 components: - type: Transform @@ -122937,6 +122525,8 @@ entities: - type: Transform pos: -11.5,17.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineAtmosDrobe entities: - uid: 20451 @@ -122944,6 +122534,8 @@ entities: - type: Transform pos: 12.5,-22.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineBooze entities: - uid: 518 @@ -122951,21 +122543,29 @@ entities: - type: Transform pos: -0.5,15.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 4957 components: - type: Transform pos: -23.5,35.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10309 components: - type: Transform pos: -11.5,16.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 13438 components: - type: Transform pos: 14.5,62.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCargoDrobe entities: - uid: 8498 @@ -122973,6 +122573,8 @@ entities: - type: Transform pos: 21.5,-11.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCart entities: - uid: 5681 @@ -122980,6 +122582,8 @@ entities: - type: Transform pos: 5.5,34.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChapel entities: - uid: 17623 @@ -122987,6 +122591,8 @@ entities: - type: Transform pos: -80.5,-49.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefDrobe entities: - uid: 1564 @@ -122994,6 +122600,8 @@ entities: - type: Transform pos: -17.5,17.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChefvend entities: - uid: 488 @@ -123001,6 +122609,8 @@ entities: - type: Transform pos: -15.5,5.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineChemicals entities: - uid: 10035 @@ -123008,6 +122618,8 @@ entities: - type: Transform pos: -9.5,-12.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCigs entities: - uid: 77 @@ -123017,6 +122629,8 @@ entities: - type: Transform pos: -42.5,0.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 131 components: - type: MetaData @@ -123024,6 +122638,8 @@ entities: - type: Transform pos: -25.5,33.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 457 components: - type: MetaData @@ -123031,6 +122647,8 @@ entities: - type: Transform pos: -10.5,19.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 1110 components: - type: MetaData @@ -123038,6 +122656,8 @@ entities: - type: Transform pos: -33.5,17.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 1279 components: - type: MetaData @@ -123045,6 +122665,8 @@ entities: - type: Transform pos: -48.5,23.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 2133 components: - type: MetaData @@ -123052,6 +122674,8 @@ entities: - type: Transform pos: -25.5,53.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 2372 components: - type: MetaData @@ -123059,6 +122683,8 @@ entities: - type: Transform pos: -52.5,64.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 4441 components: - type: MetaData @@ -123066,6 +122692,8 @@ entities: - type: Transform pos: 6.5,10.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 4954 components: - type: MetaData @@ -123073,6 +122701,8 @@ entities: - type: Transform pos: -23.5,39.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 6528 components: - type: MetaData @@ -123080,6 +122710,8 @@ entities: - type: Transform pos: 24.5,27.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9195 components: - type: MetaData @@ -123087,6 +122719,8 @@ entities: - type: Transform pos: -0.5,-15.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20491 components: - type: MetaData @@ -123094,6 +122728,8 @@ entities: - type: Transform pos: -34.5,-36.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21045 components: - type: MetaData @@ -123101,6 +122737,8 @@ entities: - type: Transform pos: 17.5,54.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21556 components: - type: MetaData @@ -123108,6 +122746,8 @@ entities: - type: Transform pos: 43.5,32.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineClothing entities: - uid: 6452 @@ -123115,11 +122755,15 @@ entities: - type: Transform pos: 19.5,44.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16119 components: - type: Transform pos: 33.5,39.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCoffee entities: - uid: 1524 @@ -123129,6 +122773,8 @@ entities: - type: Transform pos: -53.5,33.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 2165 components: - type: MetaData @@ -123136,6 +122782,8 @@ entities: - type: Transform pos: -31.5,54.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 5333 components: - type: MetaData @@ -123143,11 +122791,15 @@ entities: - type: Transform pos: -6.5,31.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9290 components: - type: Transform pos: -52.5,65.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 12811 components: - type: MetaData @@ -123155,6 +122807,8 @@ entities: - type: Transform pos: 20.5,14.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21318 components: - type: MetaData @@ -123162,6 +122816,8 @@ entities: - type: Transform pos: -0.5,-6.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCola entities: - uid: 5415 @@ -123169,6 +122825,8 @@ entities: - type: Transform pos: -1.5,29.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineCuraDrobe entities: - uid: 18842 @@ -123176,6 +122834,8 @@ entities: - type: Transform pos: -59.5,-68.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDetDrobe entities: - uid: 1438 @@ -123183,6 +122843,8 @@ entities: - type: Transform pos: -44.5,29.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDinnerware entities: - uid: 474 @@ -123192,6 +122854,8 @@ entities: - type: Transform pos: -17.5,11.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19533 components: - type: MetaData @@ -123199,6 +122863,8 @@ entities: - type: Transform pos: -77.5,-54.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineDiscount entities: - uid: 7202 @@ -123206,6 +122872,8 @@ entities: - type: Transform pos: -38.5,-5.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngiDrobe entities: - uid: 9432 @@ -123213,6 +122881,8 @@ entities: - type: Transform pos: -25.5,-39.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineEngivend entities: - uid: 9291 @@ -123220,6 +122890,8 @@ entities: - type: Transform pos: -3.5,-37.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGames entities: - uid: 16175 @@ -123227,16 +122899,22 @@ entities: - type: Transform pos: 41.5,45.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 16176 components: - type: Transform pos: 23.5,40.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19432 components: - type: Transform pos: -77.5,-58.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineGeneDrobe entities: - uid: 7461 @@ -123244,6 +122922,8 @@ entities: - type: Transform pos: -12.5,-22.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHappyHonk entities: - uid: 6946 @@ -123251,6 +122931,8 @@ entities: - type: Transform pos: -15.5,17.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineHydrobe entities: - uid: 418 @@ -123258,6 +122940,8 @@ entities: - type: Transform pos: -23.5,17.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineJaniDrobe entities: - uid: 540 @@ -123265,6 +122949,8 @@ entities: - type: Transform pos: -30.5,8.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineLawDrobe entities: - uid: 1497 @@ -123272,6 +122958,8 @@ entities: - type: Transform pos: -48.5,33.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMedical entities: - uid: 1345 @@ -123279,16 +122967,22 @@ entities: - type: Transform pos: -12.5,-18.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 7885 components: - type: Transform pos: -17.5,-4.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 7985 components: - type: Transform pos: -31.5,-4.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineMediDrobe entities: - uid: 7464 @@ -123296,6 +122990,8 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineNutri entities: - uid: 414 @@ -123303,6 +122999,8 @@ entities: - type: Transform pos: -25.5,9.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRoboDrobe entities: - uid: 12778 @@ -123310,6 +123008,8 @@ entities: - type: Transform pos: 16.5,20.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineRobotics entities: - uid: 12086 @@ -123317,6 +123017,8 @@ entities: - type: Transform pos: 17.5,20.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSalvage entities: - uid: 4772 @@ -123326,6 +123028,8 @@ entities: - type: Transform pos: 23.5,-9.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSciDrobe entities: - uid: 12842 @@ -123333,6 +123037,8 @@ entities: - type: Transform pos: 17.5,12.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSec entities: - uid: 2077 @@ -123340,6 +123046,8 @@ entities: - type: Transform pos: -29.5,60.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSecDrobe entities: - uid: 2078 @@ -123347,6 +123055,8 @@ entities: - type: Transform pos: -35.5,60.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeeds entities: - uid: 413 @@ -123354,6 +123064,8 @@ entities: - type: Transform pos: -25.5,10.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSeedsUnlocked entities: - uid: 15749 @@ -123361,11 +123073,15 @@ entities: - type: Transform pos: -77.5,-53.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 19534 components: - type: Transform pos: -51.5,68.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSovietSoda entities: - uid: 16926 @@ -123373,16 +123089,22 @@ entities: - type: Transform pos: -57.5,33.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 17106 components: - type: Transform pos: -61.5,45.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 21114 components: - type: Transform pos: -30.5,-42.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineSustenance entities: - uid: 10256 @@ -123390,6 +123112,8 @@ entities: - type: Transform pos: -52.5,63.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEngineering entities: - uid: 16634 @@ -123399,6 +123123,8 @@ entities: - type: Transform pos: 18.5,-19.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTankDispenserEVA entities: - uid: 798 @@ -123408,6 +123134,8 @@ entities: - type: Transform pos: -1.5,21.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 10400 components: - type: MetaData @@ -123415,6 +123143,8 @@ entities: - type: Transform pos: 7.5,-27.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineTheater entities: - uid: 654 @@ -123422,6 +123152,8 @@ entities: - type: Transform pos: 4.5,15.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineVendomat entities: - uid: 1618 @@ -123429,16 +123161,22 @@ entities: - type: Transform pos: -32.5,33.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9315 components: - type: Transform pos: 14.5,-19.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 20973 components: - type: Transform pos: 6.5,23.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineViroDrobe entities: - uid: 7471 @@ -123446,6 +123184,8 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineWinter entities: - uid: 10040 @@ -123453,6 +123193,8 @@ entities: - type: Transform pos: 20.5,44.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: VendingMachineYouTool entities: - uid: 1606 @@ -123460,11 +123202,15 @@ entities: - type: Transform pos: -26.5,33.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - uid: 9278 components: - type: Transform pos: -1.5,-37.5 parent: 30 + - type: VendingMachine + startingPlayerCount: 1 - proto: ViolinInstrument entities: - uid: 17957 @@ -124525,11 +124271,6 @@ entities: - type: Transform pos: -24.5,54.5 parent: 30 - - uid: 1803 - components: - - type: Transform - pos: -23.5,54.5 - parent: 30 - uid: 1804 components: - type: Transform @@ -133950,6 +133691,12 @@ entities: - type: Transform pos: -26.5,40.5 parent: 30 + - uid: 1803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,63.5 + parent: 30 - uid: 1816 components: - type: Transform @@ -136312,6 +136059,12 @@ entities: - type: Transform pos: 14.5,49.5 parent: 30 + - uid: 14845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,56.5 + parent: 30 - uid: 14966 components: - type: Transform @@ -136332,6 +136085,12 @@ entities: - type: Transform pos: 29.5,-8.5 parent: 30 + - uid: 15969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,57.5 + parent: 30 - uid: 16004 components: - type: Transform @@ -136357,6 +136116,48 @@ entities: - type: Transform pos: -28.5,-36.5 parent: 30 + - uid: 16041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,58.5 + parent: 30 + - uid: 16042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,59.5 + parent: 30 + - uid: 16116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,60.5 + parent: 30 + - uid: 16129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,61.5 + parent: 30 + - uid: 16130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,62.5 + parent: 30 + - uid: 16131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,62.5 + parent: 30 + - uid: 16132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,63.5 + parent: 30 - uid: 16739 components: - type: Transform @@ -138596,13 +138397,6 @@ entities: parent: 30 - type: Physics canCollide: False - - uid: 2159 - components: - - type: Transform - pos: -23.5,53.5 - parent: 30 - - type: Physics - canCollide: False - uid: 2193 components: - type: Transform @@ -138631,6 +138425,12 @@ entities: parent: 30 - type: Physics canCollide: False + - uid: 15074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,53.5 + parent: 30 - uid: 20276 components: - type: Transform @@ -138681,6 +138481,36 @@ entities: - type: Transform pos: -38.42729,60.595303 parent: 30 +- proto: WeaponEnergyGun + entities: + - uid: 15166 + components: + - type: Transform + parent: 15075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15293 + components: + - type: Transform + parent: 15075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15334 + components: + - type: Transform + parent: 15075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15335 + components: + - type: Transform + parent: 15075 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponLaserCarbinePractice entities: - uid: 22315 @@ -139179,25 +139009,16 @@ entities: - type: Transform pos: -43.5,41.5 parent: 30 - - type: DeviceLinkSink - links: - - 1982 - uid: 1760 components: - type: Transform pos: -39.5,41.5 parent: 30 - - type: DeviceLinkSink - links: - - 1993 - uid: 1761 components: - type: Transform pos: -47.5,41.5 parent: 30 - - type: DeviceLinkSink - links: - - 1981 - uid: 2230 components: - type: Transform diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index 77f05c389e5..a0555d6de4e 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -29,6 +29,7 @@ - BaseStationTransitHub - BaseStationDontSelling - BaseStationGoal + - BaseStationGammaArmory # Sunrise-End noSpawn: true components: diff --git a/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml b/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml index fac319160d6..aadf0e534fa 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Stations/base.yml @@ -59,3 +59,9 @@ - MiningOutpost - Tesla - VirusZombie + +- type: entity + id: BaseStationGammaArmory + abstract: true + components: + - type: CodeEquipment diff --git a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml index ee7a1f33e3d..88d56c2fd61 100644 --- a/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/_Sunrise/Entities/Structures/Doors/Airlocks/access.yml @@ -24,7 +24,7 @@ - type: ContainerFill containers: board: [ DoorElectronicsBlueShield ] - + #Hatches - type: entity parent: AirlockHatch @@ -34,7 +34,7 @@ components: - type: AccessReader access: [["CentralCommand"]] - + - type: entity parent: AirlockHatchMaintenance id: AirlockHatchMaintenanceLocked @@ -43,7 +43,7 @@ components: - type: AccessReader access: [["Maintenance"]] - + - type: entity parent: AirlockHatch id: AirlockHatchSyndicateLocked @@ -52,7 +52,7 @@ components: - type: AccessReader access: [["SyndicateAgent"]] - + #DoubleAirlocks - type: entity @@ -63,7 +63,7 @@ components: - type: AccessReader access: [["CentralCommand"]] - + - type: entity parent: DoubleGlassAirlock id: DoubleGlassAirlockSyndicateLocked @@ -72,3 +72,11 @@ components: - type: AccessReader access: [["SyndicateAgent"]] + +- type: entity + parent: AirlockGlassShuttle + id: AirlockExternalGlassShuttleGamma + suffix: External, Gamma, Glass, Docking + components: + - type: PriorityDock + tag: DockGamma