diff --git a/.github/mapchecker/whitelist.yml b/.github/mapchecker/whitelist.yml index a039d209cc1..72e0e220fff 100644 --- a/.github/mapchecker/whitelist.yml +++ b/.github/mapchecker/whitelist.yml @@ -32,8 +32,6 @@ Metastable: - SignSec DartX: - HighSecDoor -gourd: - - HoloprojectorSecurity Praeda: - ClothingEyesGlassesSecurity - EncryptionKeyCommand @@ -44,8 +42,6 @@ Pheonix: Spectre: - AirlockSecurity - EncryptionKeyMedicalScience -Bazaar: - - AirlockSecurity Anchor: - AirlockSecurity - IntercomCommand diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index d70a32f8b57..58a7c4c9df1 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -1,4 +1,4 @@ -using Content.Client.NewFrontier.Latejoin; +using Content.Client._NF.Latejoin; using Content.Client.Chat.Managers; using Content.Client.GameTicking.Managers; using Content.Client.LateJoin; diff --git a/Content.Client/NewFrontier/Latejoin/NFLateJoinGui.xaml b/Content.Client/_NF/Latejoin/NFLateJoinGui.xaml similarity index 93% rename from Content.Client/NewFrontier/Latejoin/NFLateJoinGui.xaml rename to Content.Client/_NF/Latejoin/NFLateJoinGui.xaml index 062b1588ac1..23752a03117 100644 --- a/Content.Client/NewFrontier/Latejoin/NFLateJoinGui.xaml +++ b/Content.Client/_NF/Latejoin/NFLateJoinGui.xaml @@ -1,6 +1,6 @@ >? _lastJobState; public VesselListControl() { @@ -34,6 +36,12 @@ public VesselListControl() UpdateUi(_gameTicker.JobsAvailable); Comparison = DefaultComparison; + + FilterLineEdit.OnTextChanged += _ => + { + if (_lastJobState != null) + UpdateUi(_lastJobState); + }; } protected override void Dispose(bool disposing) @@ -44,7 +52,8 @@ protected override void Dispose(bool disposing) private int DefaultComparison(NetEntity x, NetEntity y) { - return (int)(_gameTicker.JobsAvailable[x].Values.Sum(a => a ?? 0) - _gameTicker.JobsAvailable[y].Values.Sum(b => b ?? 0)); + // Negated to enforce descending order + return -(int)(_gameTicker.JobsAvailable[x].Values.Sum(a => a ?? 0) - _gameTicker.JobsAvailable[y].Values.Sum(b => b ?? 0)); } public void Sort() @@ -55,27 +64,18 @@ public void Sort() private void UpdateUi(IReadOnlyDictionary> obj) { - var itemsToRemove = new List(); - foreach (var (key, item) in VesselItemList.Select(x => ((NetEntity)x.Metadata!, x))) - { - if (!_gameTicker.StationNames.ContainsKey(key)) - itemsToRemove.Add(item); - } - - foreach (var item in itemsToRemove) - { - VesselItemList.Remove(item); - } + VesselItemList.Clear(); foreach (var (key, name) in _gameTicker.StationNames) { if (VesselItemList.Any(x => ((NetEntity)x.Metadata!) == key)) continue; + var jobsAvailable = _gameTicker.JobsAvailable[key].Values.Sum(a => a ?? 0).ToString(); var item = new ItemList.Item(VesselItemList) { Metadata = key, - Text = name + Text = name + $" ({jobsAvailable})" }; if (!string.IsNullOrEmpty(FilterLineEdit.Text) && @@ -88,5 +88,7 @@ private void UpdateUi(IReadOnlyDictionary> } Sort(); + + _lastJobState = obj; } } diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs new file mode 100644 index 00000000000..3f023d6cdce --- /dev/null +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/AllowsSleepInsideComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.Item.PseudoItem; + +/// +/// Signifies that pseudo-item creatures can sleep inside the container to which this component was added. +/// +[RegisterComponent] +public sealed partial class AllowsSleepInsideComponent : Component +{ +} diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs index 9d4b3def87a..b08607ddcab 100644 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs @@ -1,6 +1,10 @@ +using Content.Server.Actions; +using Content.Server.Bed.Sleep; using Content.Server.Carrying; using Content.Server.DoAfter; +using Content.Server.Popups; using Content.Server.Storage.EntitySystems; +using Content.Shared.Bed.Sleep; using Content.Shared.DoAfter; using Content.Shared.Hands; using Content.Shared.IdentityManagement; @@ -19,7 +23,9 @@ public sealed class PseudoItemSystem : EntitySystem [Dependency] private readonly ItemSystem _itemSystem = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; [Dependency] private readonly TagSystem _tagSystem = default!; - [Dependency] private readonly CarryingSystem _carrying = default!; + [Dependency] private readonly CarryingSystem _carrying = default!; // Frontier + [Dependency] private readonly ActionsSystem _actions = default!; // Frontier + [Dependency] private readonly PopupSystem _popup = default!; // Frontier [ValidatePrototypeId] private const string PreventTag = "PreventLabel"; @@ -34,6 +40,7 @@ public override void Initialize() SubscribeLocalEvent(OnDropAttempt); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnTrySleeping); // Frontier } private void AddInsertVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) @@ -98,6 +105,10 @@ private void OnEntRemoved(EntityUid uid, PseudoItemComponent component, EntGotRe RemComp(uid); component.Active = false; + + // Frontier + if (component.SleepAction is { Valid: true }) + _actions.RemoveAction(uid, component.SleepAction); } private void OnGettingPickedUpAttempt(EntityUid uid, PseudoItemComponent component, @@ -155,6 +166,10 @@ public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemCompon return false; } + // Frontier + if (HasComp(storageUid)) + _actions.AddAction(toInsert, ref component.SleepAction, SleepingSystem.SleepActionId, toInsert); + component.Active = true; return true; } @@ -184,4 +199,12 @@ private void OnInsertAttempt(EntityUid uid, PseudoItemComponent component, // This hopefully shouldn't trigger, but this is a failsafe just in case so we dont bluespace them cats args.Cancel(); } + + // Frontier - show a popup when a pseudo-item falls asleep inside a bag. + private void OnTrySleeping(EntityUid uid, PseudoItemComponent component, TryingToSleepEvent args) + { + var parent = Transform(uid).ParentUid; + if (!HasComp(uid) && parent is { Valid: true } && HasComp(parent)) + _popup.PopupEntity(Loc.GetString("popup-sleep-in-bag", ("entity", uid)), uid); + } } diff --git a/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs b/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs index 80ac595f6f2..f942e22a26e 100644 --- a/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs +++ b/Content.Server/_NF/PublicTransit/PublicTransitSystem.cs @@ -1,8 +1,10 @@ using Content.Server._NF.PublicTransit.Components; +using Content.Server.Chat.Systems; using Content.Server.GameTicking; using Content.Server.Shuttles.Components; using Content.Server.Shuttles.Events; using Content.Server.Shuttles.Systems; +using Content.Shared.GameTicking; using Content.Shared.NF14.CCVar; using Content.Shared.Shuttles.Components; using Content.Shared.Tiles; @@ -25,6 +27,7 @@ public sealed class PublicTransitSystem : EntitySystem [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly MapLoaderSystem _loader = default!; [Dependency] private readonly ShuttleSystem _shuttles = default!; + [Dependency] private readonly ChatSystem _chat = default!; /// /// If enabled then spawns the bus and sets up the bus line. @@ -42,7 +45,9 @@ public override void Initialize() SubscribeLocalEvent(OnStationShutdown); SubscribeLocalEvent(OnShuttleStartup); SubscribeLocalEvent(OnShuttleUnpaused); + SubscribeLocalEvent(OnShuttleArrival); SubscribeLocalEvent(OnShuttleTag); + SubscribeLocalEvent(OnRoundStart); Enabled = _cfgManager.GetCVar(NF14CVars.PublicTransit); FlyTime = _cfgManager.GetCVar(NF14CVars.PublicTransitFlyTime); @@ -52,6 +57,21 @@ public override void Initialize() _cfgManager.OnValueChanged(NF14CVars.PublicTransitFlyTime, SetFly); } + public void OnRoundStart(RoundStartedEvent args) + { + Counter = 0; + if (Enabled) + SetupPublicTransit(); + } + + public override void Shutdown() + { + base.Shutdown(); + _cfgManager.UnsubValueChanged(NF14CVars.PublicTransitFlyTime, SetFly); + _cfgManager.UnsubValueChanged(NF14CVars.PublicTransit, SetTransit); + } + + /// /// Hardcoded snippit to intercept FTL events. It catches the transit shuttle and ensures its looking for the "DockTransit" priority dock. /// @@ -65,13 +85,6 @@ private void OnShuttleTag(EntityUid uid, TransitShuttleComponent component, ref args.Tag = "DockTransit"; } - public override void Shutdown() - { - base.Shutdown(); - _cfgManager.UnsubValueChanged(NF14CVars.PublicTransitFlyTime, SetFly); - _cfgManager.UnsubValueChanged(NF14CVars.PublicTransit, SetTransit); - } - /// /// Checks to make sure the grid is on the appropriate playfield, i.e., not in mapping space being worked on. /// If so, adds the grid to the list of bus stops, but only if its not already there @@ -82,8 +95,6 @@ private void OnStationStartup(EntityUid uid, StationTransitComponent component, { if (!StationList.Contains(uid)) //if the grid isnt already in StationList.Add(uid); //add it to the list - if (Enabled) //and just in case this has been added dynamically mid-round, lets do a setup check - SetupPublicTransit(); } } @@ -114,6 +125,24 @@ private void OnShuttleUnpaused(EntityUid uid, TransitShuttleComponent component, component.NextTransfer += args.PausedTime; } + private void OnShuttleArrival(EntityUid uid, TransitShuttleComponent comp, ref FTLCompletedEvent args) + { + var consoleQuery = EntityQueryEnumerator(); + + while (consoleQuery.MoveNext(out var consoleUid, out _)) + { + if (Transform(consoleUid).GridUid == uid) + { + var destinationString = MetaData(comp.NextStation).EntityName; + + _chat.TrySendInGameICMessage(consoleUid, Loc.GetString("public-transit-arrival", + ("destination", destinationString), ("waittime", _cfgManager.GetCVar(NF14CVars.PublicTransitWaitTime))), + InGameICChatType.Speak, ChatTransmitRange.HideChat, hideLog: true, checkRadioPrefix: false, + ignoreActionBlocker: true); + } + } + } + /// /// Here is our bus stop list handler. Theres probably a better way... /// First, sets our output to null just in case @@ -158,6 +187,20 @@ public override void Update(float frameTime) if (comp.NextTransfer > curTime) continue; + var consoleQuery = EntityQueryEnumerator(); + + while (consoleQuery.MoveNext(out var consoleUid, out _)) + { + if (Transform(consoleUid).GridUid == uid) + { + var destinationString = MetaData(comp.NextStation).EntityName; + + _chat.TrySendInGameICMessage(consoleUid, Loc.GetString("public-transit-departure", + ("destination", destinationString), ("flytime", FlyTime)), + InGameICChatType.Speak, ChatTransmitRange.HideChat, hideLog: true, checkRadioPrefix: false, + ignoreActionBlocker: true); + } + } _shuttles.FTLTravel(uid, shuttle, comp.NextStation, hyperspaceTime: FlyTime, dock: true); if (TryGetNextStation(out var nextStation) && nextStation is {Valid : true} destination) diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 15dc724ca57..b82dbf4457a 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -50,6 +50,7 @@ public sealed partial class IdCardConsoleComponent : Component "Maintenance", "Medical", "Mercenary", // Frontier + "Pilot", // Frontier "Quartermaster", "Research", "ResearchDirector", diff --git a/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs b/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs index 4505e365fdf..c117944e4f3 100644 --- a/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs +++ b/Content.Shared/Nyanotrasen/Item/Components/PseudoItemComponent.cs @@ -12,4 +12,7 @@ public sealed partial class PseudoItemComponent : Component, ITransferredByCloni public int Size = 120; public bool Active = false; + + [DataField] + public EntityUid? SleepAction; } diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index a132b072810..4b2c0fc1e3b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -2793,3 +2793,80 @@ Entries: message: Anomaly generator now require bananium processed ore. id: 4743 time: '2024-01-12T02:57:26.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: >- + Added a mothership console to the Caduceus, offering small medical + ships. + id: 4744 + time: '2024-01-14T01:16:16.0000000+00:00' +- author: Lokey82 + changes: + - type: Add + message: Added the NT Stellaris, A new theatre ship. + id: 4745 + time: '2024-01-14T16:11:17.0000000+00:00' +- author: VividPups + changes: + - type: Tweak + message: >- + Mayflower - Replaced wall-mounted lockers of the Merc and Prisoner with + regular ones, removed loose .45 cal ammo and speedloaders. + id: 4746 + time: '2024-01-14T16:19:12.0000000+00:00' +- author: ghostprince + changes: + - type: Tweak + message: >- + Added the new AutoTune vender, sitting on frontier and selling all the + instrument you are looking for, might or might not have some hidden + secrets in its inventory. + id: 4747 + time: '2024-01-14T22:00:29.0000000+00:00' +- author: Cheackraze + changes: + - type: Tweak + message: >- + The public transit shuttle will now announce its next destination to + local chat on both arrival and departure + - type: Fix + message: Fixed the public transit shuttle from spawning twice each round + id: 4748 + time: '2024-01-15T00:13:42.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Pilot Job with some job related drip. Check AstroVend for new looks. + id: 4749 + time: '2024-01-15T01:04:57.0000000+00:00' +- author: Mnemotechnician + changes: + - type: Add + message: Scientists have discovered that small creatures can sleep inside bags. + id: 4750 + time: '2024-01-15T01:40:21.0000000+00:00' +- author: Mnemotechnician and GreaseMonk + changes: + - type: Add + message: Added job counters to the late-join menu. + - type: Fix + message: The late-join menu now correctly sorts and filters shuttles. + id: 4751 + time: '2024-01-18T23:15:46.0000000+00:00' +- author: FoxxoTrystan + changes: + - type: Add + message: A ton of new plushies has arrived on the sector! + - type: Add + message: >- + Prize counter are here, get your prizes by winning games and getting + prize tickets! and find prize balls! + id: 4752 + time: '2024-01-18T23:23:38.0000000+00:00' +- author: YumiGumi + changes: + - type: Tweak + message: Altered the SLI ships to bring them into line with mapping standards + id: 4753 + time: '2024-01-18T23:24:51.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/actions/sleep.ftl b/Resources/Locale/en-US/_NF/actions/sleep.ftl new file mode 100644 index 00000000000..73e164f556d --- /dev/null +++ b/Resources/Locale/en-US/_NF/actions/sleep.ftl @@ -0,0 +1 @@ +popup-sleep-in-bag = {THE($entity)} curls up and falls asleep. diff --git a/Resources/Locale/en-US/_NF/adventure/adventure.ftl b/Resources/Locale/en-US/_NF/adventure/adventure.ftl index 8afcd5794bc..bb0af576ca5 100644 --- a/Resources/Locale/en-US/_NF/adventure/adventure.ftl +++ b/Resources/Locale/en-US/_NF/adventure/adventure.ftl @@ -24,4 +24,7 @@ shipyard-rules-default2 = shuttle-ftl-proximity = Nearby objects too massive for FTL! -changelog-tab-title-Upstream = Upstream Changelog \ No newline at end of file +changelog-tab-title-Upstream = Upstream Changelog + +public-transit-departure = Now departing for {$destination}. Estimated travel time: {$flytime} seconds. +public-transit-arrival = Thank you for choosing NT Public Transit. Next transfer to {$destination} departs in {$waittime} seconds. \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/job/job-description.ftl b/Resources/Locale/en-US/_NF/job/job-description.ftl index 0ee7916ad72..8d90993933a 100644 --- a/Resources/Locale/en-US/_NF/job/job-description.ftl +++ b/Resources/Locale/en-US/_NF/job/job-description.ftl @@ -1,2 +1,3 @@ job-description-mercenary = Execute the bidding of anyone- for the right price. Enjoy being unbound from the confines of the law. job-description-stc = Expertly de-conflict the space around the station and help the NFSD issue fines for overdocked ships. +job-description-pilot = Pilot spaceships from point A to B, outmaneuver pirates and dodge asteroids. You are a leaf on the solar wind, let others marvel at how you soar. diff --git a/Resources/Locale/en-US/_NF/job/job-names.ftl b/Resources/Locale/en-US/_NF/job/job-names.ftl index fbfa777dfb0..ef760e87d29 100644 --- a/Resources/Locale/en-US/_NF/job/job-names.ftl +++ b/Resources/Locale/en-US/_NF/job/job-names.ftl @@ -1,6 +1,8 @@ job-name-mercenary = Mercenary job-name-stc = Station Traffic Controller +job-name-pilot = Pilot # Role timers - Make these alphabetical or I cut you JobMercenary = Mercenary JobSTC = Station Traffic Controller +JobPilot = Pilot diff --git a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl index 9fb314d22a7..b31848bd937 100644 --- a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl @@ -1,3 +1,5 @@ id-card-access-level-frontier = Station Traffic Controller id-card-access-level-mercenary = Mercenary + +id-card-access-level-pilot = Pilot diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl index a40f57fb9bc..1e7a4a263b8 100644 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl @@ -18,3 +18,6 @@ ent-CrateVendingMachineRestockCondimentStationFilled = Condiment Station restock ent-CrateVendingMachineRestockLessLethalVendFilled = LessLethalVend restock crate .desc = Contains two restock boxes for the LessLethalVend vending machine. + +ent-CrateVendingMachineRestockAutoTuneVendFilled = AutoTuneVend restock crate + .desc = Contains two restock boxes for the AutoTuneVend vending machine. diff --git a/Resources/Maps/Shuttles/caduceus.yml b/Resources/Maps/Shuttles/caduceus.yml index 6f15cce9d40..48ea6f8bcb4 100644 --- a/Resources/Maps/Shuttles/caduceus.yml +++ b/Resources/Maps/Shuttles/caduceus.yml @@ -4,20 +4,20 @@ meta: tilemap: 0: Space 12: FloorBar - 26: FloorDark - 31: FloorDarkMono - 35: FloorDarkPlastic - 41: FloorFreezer - 47: FloorGrassLight - 55: FloorHydro - 75: FloorShuttleBlue - 83: FloorSteel - 95: FloorTechMaint - 97: FloorTechMaint3 - 99: FloorWhite - 100: FloorWhiteDiagonal - 111: Lattice - 112: Plating + 28: FloorDark + 33: FloorDarkMono + 37: FloorDarkPlastic + 43: FloorFreezer + 49: FloorGrassLight + 57: FloorHydro + 77: FloorShuttleBlue + 85: FloorSteel + 97: FloorTechMaint + 99: FloorTechMaint3 + 101: FloorWhite + 102: FloorWhiteDiagonal + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -26,48 +26,48 @@ entities: - name: grid type: MetaData - pos: -0.49010277,-0.49010563 - parent: invalid + parent: 1116 type: Transform - chunks: 0,-1: ind: 0,-1 - tiles: IwAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAADYQAAAAACYQAAAAADYQAAAAABYQAAAAADYQAAAAAAYQAAAAACYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAAAYQAAAAABZAAAAAABZAAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAAAYwAAAAACYwAAAAABcAAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAADYwAAAAABZAAAAAABcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACcAAAAAAAYQAAAAACYQAAAAADYQAAAAACYQAAAAADYQAAAAACcAAAAAAAZAAAAAADYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAABYQAAAAACYQAAAAAAYwAAAAACZAAAAAABYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAAZAAAAAABcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAZAAAAAADcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAZAAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADZAAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAZAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAABYwAAAAADYwAAAAADYwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADZAAAAAAAYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACZAAAAAACYwAAAAAAYwAAAAACYwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: JQAAAAAAcgAAAAAAcgAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAADZQAAAAADZQAAAAAAZQAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAADYwAAAAAAYwAAAAACZQAAAAACZQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAADZQAAAAADZQAAAAABZQAAAAAAcgAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABZgAAAAABZgAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAAAZQAAAAACZQAAAAABcgAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAADZQAAAAABZgAAAAABcgAAAAAAKwAAAAAAKwAAAAAAcgAAAAAAZQAAAAADZQAAAAACZQAAAAADZQAAAAACcgAAAAAAYwAAAAACYwAAAAADYwAAAAACYwAAAAADYwAAAAACcgAAAAAAZgAAAAADZQAAAAADZQAAAAABZQAAAAACZQAAAAABZQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYwAAAAABYwAAAAACYwAAAAAAZQAAAAACZgAAAAABZQAAAAAAZQAAAAABZQAAAAABZQAAAAACZQAAAAADZQAAAAABcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAMQAAAAAAZgAAAAABcgAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAAAZQAAAAACcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAZgAAAAADcgAAAAAAZQAAAAACZQAAAAACZQAAAAAAZQAAAAADZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAZgAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAAAZQAAAAADZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZgAAAAACZQAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAAAZQAAAAAAZQAAAAAAZQAAAAADZQAAAAAAZQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAABZQAAAAABZQAAAAACZQAAAAACZQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZgAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZgAAAAABZQAAAAADZQAAAAADZQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZgAAAAAAZQAAAAACZQAAAAAAZQAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZgAAAAACZQAAAAAAZQAAAAACZQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: YwAAAAAAZAAAAAAAYwAAAAABYwAAAAACYwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABZAAAAAADYwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADZAAAAAAAYwAAAAABYwAAAAADYwAAAAADcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAZAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABZAAAAAACYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAABIwAAAAAAIwAAAAACIwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAABYwAAAAAAcAAAAAAAIwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABYwAAAAADYwAAAAACYwAAAAACIwAAAAAAIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAACDAAAAAABDAAAAAABDAAAAAABcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAADAAAAAACDAAAAAABDAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZQAAAAAAZgAAAAAAZQAAAAABZQAAAAACZQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZgAAAAADZQAAAAAAZQAAAAABZQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZgAAAAAAZQAAAAABZQAAAAADZQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZgAAAAACZQAAAAAAZQAAAAABZQAAAAAAZQAAAAABZQAAAAABJQAAAAAAJQAAAAACJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZgAAAAADZgAAAAABZgAAAAADZgAAAAAAZgAAAAACZgAAAAABZQAAAAAAcgAAAAAAJQAAAAACcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAABZQAAAAADZQAAAAABZQAAAAADZQAAAAACZQAAAAACJQAAAAAAJQAAAAACJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACDAAAAAABDAAAAAABDAAAAAABcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAADHAAAAAADcgAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAABHAAAAAABHAAAAAADcgAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAADAAAAAACDAAAAAABDAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADYQAAAAAAYQAAAAABYQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAACcgAAAAAAZQAAAAABZQAAAAABZQAAAAABZQAAAAAAZQAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAACZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAIwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAACcAAAAAAAYwAAAAADZAAAAAADZAAAAAABZAAAAAABZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAABIwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAACGgAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAACZQAAAAAAZQAAAAACZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAAAZQAAAAADZQAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAACZQAAAAABZQAAAAACZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAAAJQAAAAADZQAAAAAAZQAAAAAAZQAAAAACZQAAAAAAZQAAAAABZgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAJQAAAAACcgAAAAAAZQAAAAADZgAAAAADZgAAAAABZgAAAAABZgAAAAACZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAABJQAAAAABJQAAAAADZQAAAAABZQAAAAACZQAAAAABZQAAAAACZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHAAAAAACHAAAAAAAHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAHAAAAAADHAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAHAAAAAACHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: YQAAAAAAYQAAAAADYQAAAAACYQAAAAAAYQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABcAAAAAAAIwAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAAAYQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAADYQAAAAACYQAAAAAAYQAAAAAAYQAAAAADYQAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAABZAAAAAACYQAAAAACYQAAAAAAYQAAAAADYQAAAAADYQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADYwAAAAAAYwAAAAAAZAAAAAADYQAAAAADYQAAAAAAYQAAAAACYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAABZAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAADYwAAAAADZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAYwAAAAABYwAAAAADZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAYwAAAAADZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAYwAAAAADZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAAcAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAAcAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAABZAAAAAAD + tiles: YwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAABcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAIQAAAAADIQAAAAAAIQAAAAADIQAAAAACIQAAAAABcgAAAAAAJQAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZQAAAAAAZQAAAAAAZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAADYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZgAAAAADZgAAAAABZgAAAAABZgAAAAACZgAAAAADZgAAAAABZgAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADZQAAAAAAZQAAAAAAZgAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAAAZQAAAAABZgAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAACZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAADZQAAAAADZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAZQAAAAABZQAAAAADZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAZQAAAAADcgAAAAAAcgAAAAAAZQAAAAABZQAAAAABZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZQAAAAADZgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAZQAAAAADZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAAcgAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAATQAAAAAATQAAAAAATQAAAAAAcgAAAAAAZgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZQAAAAABZQAAAAAAZQAAAAAAZgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAADZQAAAAADZQAAAAABZgAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIwAAAAABYQAAAAAAYQAAAAABYQAAAAACYQAAAAADYQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACcAAAAAAAIwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAJQAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABIQAAAAACcgAAAAAAJQAAAAAD version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: YQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAADcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -3714,6 +3714,23 @@ entities: pos: 16.5,-15.5 parent: 1 type: Transform +- proto: CaduceusMothershipComputer + entities: + - uid: 1117 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer - proto: Chair entities: - uid: 739 @@ -3739,16 +3756,6 @@ entities: - pos: 2.5,6.5 parent: 1 type: Transform - - uid: 1116 - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform - - uid: 1117 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - uid: 1143 components: - rot: -1.5707963267948966 rad @@ -3767,6 +3774,11 @@ entities: pos: -1.5,-9.5 parent: 1 type: Transform + - uid: 1464 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform - proto: ChairOfficeDark entities: - uid: 1142 diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml index f6298711d45..7a6f1a763a8 100644 --- a/Resources/Maps/_NF/Outpost/frontier.yml +++ b/Resources/Maps/_NF/Outpost/frontier.yml @@ -54,7 +54,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYAAAAAABcgAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADcgAAAAAAYQAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACYQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACYQAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABYQAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAACHAAAAAADXgAAAAAAVQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAACHAAAAAACXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADLAAAAAAAHAAAAAAAHAAAAAACVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACLAAAAAABHAAAAAABXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAADHAAAAAABXgAAAAAAVQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAALAAAAAADHAAAAAAAVQAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXwAAAAABYQAAAAAAHAAAAAAAHAAAAAADHAAAAAADYQAAAAAAVQAAAAADVQAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYAAAAAABcgAAAAAAVQAAAAADVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAACVQAAAAABVQAAAAADcgAAAAAAYQAAAAAAcgAAAAAAVQAAAAADVQAAAAABVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAADVQAAAAABVQAAAAACVQAAAAACVQAAAAACVQAAAAABVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAACVQAAAAABVQAAAAABVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABYQAAAAAAVQAAAAADVQAAAAACVQAAAAABVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAACYQAAAAAAVQAAAAACVQAAAAABVQAAAAADVQAAAAABVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAABVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAACYQAAAAAAVQAAAAAAVQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAADVQAAAAADVQAAAAACVQAAAAABVQAAAAABYQAAAAAAVQAAAAABVQAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAACHAAAAAADXgAAAAAAVQAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAACHAAAAAACXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADLAAAAAAAHAAAAAAAHAAAAAACVQAAAAABVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACVQAAAAACVQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACLAAAAAABHAAAAAABXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAACHAAAAAADHAAAAAABXgAAAAAAVQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAALAAAAAADHAAAAAAAVQAAAAABcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAXwAAAAABYQAAAAAAHAAAAAAAHAAAAAADHAAAAAADYQAAAAAAVQAAAAADVQAAAAAA version: 6 1,0: ind: 1,0 @@ -6952,7 +6952,7 @@ entities: type: DeviceLinkSink - proto: BlockGameArcade entities: - - uid: 545 + - uid: 2101 components: - rot: -1.5707963267948966 rad pos: 4.5,13.5 @@ -34946,13 +34946,6 @@ entities: - pos: -43.34098,13.453728 parent: 2173 type: Transform -- proto: ShowcaseRobot - entities: - - uid: 2569 - components: - - pos: 37.5,5.5 - parent: 2173 - type: Transform - proto: SignalButton entities: - uid: 2734 @@ -36464,6 +36457,13 @@ entities: - pos: 4.5,51.5 parent: 2173 type: Transform +- proto: VendingMachineAutoTuneVend + entities: + - uid: 545 + components: + - pos: 37.5,5.5 + parent: 2173 + type: Transform - proto: VendingMachineCart entities: - uid: 657 diff --git a/Resources/Maps/_NF/POI/beacon.yml b/Resources/Maps/_NF/POI/beacon.yml index f653df166c3..00e2740def0 100644 --- a/Resources/Maps/_NF/POI/beacon.yml +++ b/Resources/Maps/_NF/POI/beacon.yml @@ -33,49 +33,49 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: UQAAAAAAaQAAAAACbwAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAARQAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAUQAAAAAAaQAAAAABbwAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAAAcQAAAAAARQAAAAABcQAAAAAABwAAAAABBwAAAAABBwAAAAAAAAAAAAAAaQAAAAADBwAAAAAABwAAAAAJbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGAAAAAABRQAAAAACBwAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAABGQAAAAAARQAAAAADRQAAAAAARQAAAAABRQAAAAABRQAAAAADRQAAAAABRQAAAAAARQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAACGQAAAAABRQAAAAADRQAAAAADRQAAAAADRQAAAAACRQAAAAAARQAAAAABRQAAAAADRQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABRQAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAABBwAAAAAABwAAAAAEAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAUQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAaQAAAAAABwAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAAGQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAAGQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: RQAAAAABRQAAAAACRQAAAAACRQAAAAAARQAAAAABRQAAAAAARQAAAAADRQAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAADbwAAAAADaQAAAAADBwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAcQAAAAAABwAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbwAAAAACaQAAAAACAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAADBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABBwAAAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAKBwAAAAACBwAAAAAARQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHcQAAAAAARQAAAAABRQAAAAAARQAAAAAARQAAAAADRQAAAAADRQAAAAACRQAAAAADGQAAAAACRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAARQAAAAACRQAAAAADRQAAAAABRQAAAAABRQAAAAACRQAAAAAARQAAAAACGQAAAAACRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAARQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAcQAAAAAARQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJRQAAAAAC + tiles: RQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAaQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAcQAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAaQAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFRQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAGQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAGQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAHBwAAAAAGcQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAFRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: RQAAAAAARQAAAAAARQAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAADRQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAARQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGAAAAAACRQAAAAADBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGAAAAAACRQAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAACRQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABRQAAAAADRQAAAAAARQAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADRQAAAAAARQAAAAAARQAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAJBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAABRQAAAAAARQAAAAADRQAAAAABRQAAAAADRQAAAAABRQAAAAAARQAAAAAARQAAAAAARQAAAAACcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACRQAAAAADRQAAAAACRQAAAAADRQAAAAABRQAAAAABRQAAAAADRQAAAAACRQAAAAAARQAAAAADRQAAAAACcQAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACGQAAAAACBwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAACVgAAAAABcQAAAAAARQAAAAADcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAABBwAAAAAABwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAADVgAAAAAAcQAAAAAARQAAAAABcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAACbwAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAABcQAAAAAAVgAAAAABcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAADbwAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADcQAAAAAARQAAAAABcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAbwAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAACcQAAAAAARQAAAAABcQAAAAAABwAAAAAMBwAAAAAJBwAAAAAAAAAAAAAA + tiles: RQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAARQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEGAAAAAAARQAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGQAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAFcQAAAAAAcQAAAAAAcQAAAAAARQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGQAAAAAABwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAABwAAAAAABwAAAAAIGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAaQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAABRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAACRQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARQAAAAABGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAABGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAFBwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGRQAAAAACRQAAAAABRQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIcQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAARQAAAAABRQAAAAADRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAACRQAAAAABRQAAAAADRQAAAAADRQAAAAAARQAAAAACRQAAAAAARQAAAAACRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAARQAAAAADRQAAAAABRQAAAAACRQAAAAABRQAAAAAARQAAAAADRQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAGQAAAAABAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAACcQAAAAAAZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAABBwAAAAAAGQAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACRQAAAAAAcQAAAAAAZwAAAAACbgAAAAAAbgAAAAAAbgAAAAABZwAAAAABBwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAADcQAAAAAAZwAAAAABbgAAAAABbgAAAAADbgAAAAADZwAAAAACbwAAAAACaQAAAAACRQAAAAACRQAAAAACRQAAAAACRQAAAAABRQAAAAAARQAAAAADRQAAAAADRQAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbwAAAAABaQAAAAABGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbwAAAAAAUQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAGQAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAHAAAAAAAAAAAAAAAABwAAAAAARQAAAAAAcQAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAABwAAAAAAGQAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAARQAAAAAAcQAAAAAAZwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAGQAAAAAAcQAAAAAAZwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZwAAAAAAbwAAAAAAaQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAaQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAUQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAADRQAAAAABRQAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAADRQAAAAADRQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAADBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAABRQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAADRQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARQAAAAAARQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAARQAAAAADRQAAAAABRQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACcQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAYQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAABZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAADRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAACRwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAJcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: GAAAAAAAGAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAADZQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACZQAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAABZQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACZQAAAAADYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAACZQAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GAAAAAAAGAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAABwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAZQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase - bodyStatus: InAir - angularDamping: 999999 - linearDamping: 999999 + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic type: Physics @@ -813,20 +813,16 @@ entities: entities: - uid: 1358 components: + - name: Engineering Air Alarm + type: MetaData - rot: -1.5707963267948966 rad pos: -19.5,-1.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1188 - - 1189 - type: DeviceNetwork - - devices: - - 1188 - - 1189 - type: DeviceList - uid: 1359 components: + - name: Docking Air Alarm + type: MetaData - rot: -1.5707963267948966 rad pos: 3.5,18.5 parent: 1 @@ -841,65 +837,56 @@ entities: type: DeviceList - uid: 1360 components: + - name: Grounds Air Alarm + type: MetaData - pos: -1.5,-5.5 parent: 1 type: Transform - ShutdownSubscribers: - - 1106 - - 1114 - 1289 - 1297 type: DeviceNetwork - devices: - - 1106 - - 1114 - 1289 - 1297 type: DeviceList - uid: 1362 components: + - name: Rectory Air Alarm + type: MetaData - rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 type: Transform - ShutdownSubscribers: - - 1244 - - 1243 - - 1259 - - 1258 - 1253 type: DeviceNetwork - devices: - - 1258 - - 1259 - - 1243 - - 1244 - 1253 type: DeviceList - uid: 1363 components: + - name: Chapel Air Alarm + type: MetaData - rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 type: Transform - ShutdownSubscribers: - - 344 - - 1339 - 1070 - 1087 type: DeviceNetwork - devices: - - 1339 - - 344 - 1070 - 1087 type: DeviceList -- proto: Airlock +- proto: AirlockEngineering entities: - uid: 1169 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 + - name: Engineering Airlock + type: MetaData + - pos: -19.5,-0.5 parent: 1 type: Transform - proto: AirlockExternalGlass @@ -915,7 +902,6 @@ entities: type: DeviceLinkSink - linkedPorts: 515: - - DoorStatus: Close - DoorStatus: DoorBolt type: DeviceLinkSource - uid: 515 @@ -930,7 +916,6 @@ entities: - linkedPorts: 514: - DoorStatus: DoorBolt - - DoorStatus: Close type: DeviceLinkSource - uid: 516 components: @@ -944,7 +929,6 @@ entities: - linkedPorts: 517: - DoorStatus: DoorBolt - - DoorStatus: Close type: DeviceLinkSource - uid: 517 components: @@ -958,7 +942,6 @@ entities: - linkedPorts: 516: - DoorStatus: DoorBolt - - DoorStatus: Close type: DeviceLinkSource - proto: AirlockGlass entities: @@ -1070,34 +1053,46 @@ entities: entities: - uid: 671 components: + - name: Docking APC + type: MetaData - rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 1 type: Transform - uid: 673 components: + - name: Grounds APC + type: MetaData - rot: -1.5707963267948966 rad pos: 3.5,-13.5 parent: 1 type: Transform - uid: 674 components: + - name: Rectory APC + type: MetaData - pos: -5.5,1.5 parent: 1 type: Transform - uid: 676 components: + - name: Vestibule APC + type: MetaData - rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 type: Transform - uid: 677 components: + - name: Engineering APC + type: MetaData - pos: -22.5,2.5 parent: 1 type: Transform - uid: 767 components: + - name: Chapel APC + type: MetaData - rot: -1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 @@ -1222,15 +1217,15 @@ entities: - uid: 875 components: - rot: 3.141592653589793 rad - pos: 4.5,-0.5 + pos: 4.5,0.5 parent: 1 type: Transform - bodyType: Static type: Physics - - uid: 1129 + - uid: 1368 components: - rot: 3.141592653589793 rad - pos: 4.5,0.5 + pos: 4.5,-0.5 parent: 1 type: Transform - bodyType: Static @@ -1240,49 +1235,49 @@ entities: - uid: 114 components: - rot: 3.141592653589793 rad - pos: 6.5,0.5 + pos: 6.5,-0.5 parent: 1 type: Transform - bodyType: Static type: Physics - - uid: 223 + - uid: 793 components: - rot: 3.141592653589793 rad - pos: 6.5,-0.5 + pos: 5.5,-0.5 parent: 1 type: Transform - bodyType: Static type: Physics - - uid: 1126 + - uid: 1127 components: - rot: 3.141592653589793 rad - pos: 5.5,0.5 + pos: 6.5,0.5 parent: 1 type: Transform - bodyType: Static type: Physics - - uid: 1127 + - uid: 1367 components: - rot: 3.141592653589793 rad - pos: 5.5,-0.5 + pos: 5.5,0.5 parent: 1 type: Transform - bodyType: Static type: Physics - proto: BenchPewRight entities: - - uid: 793 + - uid: 877 components: - rot: 3.141592653589793 rad - pos: 7.5,-0.5 + pos: 7.5,0.5 parent: 1 type: Transform - bodyType: Static type: Physics - - uid: 877 + - uid: 1126 components: - rot: 3.141592653589793 rad - pos: 7.5,0.5 + pos: 7.5,-0.5 parent: 1 type: Transform - bodyType: Static @@ -2198,14 +2193,19 @@ entities: type: Transform - proto: CableHV entities: - - uid: 395 + - uid: 139 components: - - pos: -23.5,2.5 + - pos: -23.5,1.5 parent: 1 type: Transform - - uid: 397 + - uid: 344 components: - - pos: -23.5,1.5 + - pos: -25.5,0.5 + parent: 1 + type: Transform + - uid: 395 + components: + - pos: -23.5,2.5 parent: 1 type: Transform - uid: 398 @@ -2793,6 +2793,11 @@ entities: - pos: -21.5,-2.5 parent: 1 type: Transform + - uid: 840 + components: + - pos: -24.5,0.5 + parent: 1 + type: Transform - proto: CableMV entities: - uid: 59 @@ -3350,16 +3355,6 @@ entities: - pos: -7.5,-2.5 parent: 1 type: Transform - - uid: 839 - components: - - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 840 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - uid: 841 components: - pos: -5.5,1.5 @@ -3535,9 +3530,9 @@ entities: - pos: -6.5,-5.5 parent: 1 type: Transform - - uid: 1008 + - uid: 1129 components: - - pos: -7.5,-5.5 + - pos: -3.5,-9.5 parent: 1 type: Transform - uid: 1277 @@ -3620,6 +3615,136 @@ entities: - pos: 9.5,-0.5 parent: 1 type: Transform + - uid: 1350 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 1351 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 1352 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform + - uid: 1353 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 1354 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 1355 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 1356 + components: + - pos: 2.5,-18.5 + parent: 1 + type: Transform + - uid: 1357 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1369 + components: + - pos: 3.5,-13.5 + parent: 1 + type: Transform + - uid: 1370 + components: + - pos: 3.5,-14.5 + parent: 1 + type: Transform + - uid: 1371 + components: + - pos: 3.5,-15.5 + parent: 1 + type: Transform + - uid: 1372 + components: + - pos: 3.5,-16.5 + parent: 1 + type: Transform + - uid: 1373 + components: + - pos: 3.5,-17.5 + parent: 1 + type: Transform + - uid: 1374 + components: + - pos: 3.5,-18.5 + parent: 1 + type: Transform + - uid: 1375 + components: + - pos: 1.5,-18.5 + parent: 1 + type: Transform + - uid: 1376 + components: + - pos: 0.5,-18.5 + parent: 1 + type: Transform + - uid: 1377 + components: + - pos: -0.5,-18.5 + parent: 1 + type: Transform + - uid: 1378 + components: + - pos: -1.5,-18.5 + parent: 1 + type: Transform + - uid: 1379 + components: + - pos: -2.5,-18.5 + parent: 1 + type: Transform + - uid: 1380 + components: + - pos: -2.5,-17.5 + parent: 1 + type: Transform + - uid: 1381 + components: + - pos: -2.5,-16.5 + parent: 1 + type: Transform + - uid: 1382 + components: + - pos: -2.5,-15.5 + parent: 1 + type: Transform + - uid: 1383 + components: + - pos: -2.5,-14.5 + parent: 1 + type: Transform + - uid: 1384 + components: + - pos: -2.5,-13.5 + parent: 1 + type: Transform + - uid: 1385 + components: + - pos: -2.5,-12.5 + parent: 1 + type: Transform + - uid: 1386 + components: + - pos: -2.5,-11.5 + parent: 1 + type: Transform - proto: CableTerminal entities: - uid: 282 @@ -4100,6 +4225,17 @@ entities: type: Transform - proto: DisposalBend entities: + - uid: 357 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-2.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -24.5,-0.5 + parent: 1 + type: Transform - uid: 1311 components: - rot: -1.5707963267948966 rad @@ -4108,6 +4244,11 @@ entities: type: Transform - proto: DisposalPipe entities: + - uid: 839 + components: + - pos: -24.5,-1.5 + parent: 1 + type: Transform - uid: 1308 components: - rot: -1.5707963267948966 rad @@ -4210,30 +4351,6 @@ entities: pos: -23.5,-2.5 parent: 1 type: Transform - - uid: 1332 - components: - - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 1 - type: Transform - - uid: 1333 - components: - - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 1 - type: Transform - - uid: 1334 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 1 - type: Transform - - uid: 1340 - components: - - rot: -1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 1 - type: Transform - proto: DisposalTrunk entities: - uid: 1310 @@ -4366,12 +4483,13 @@ entities: type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 1195 + - uid: 1193 components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 + - pos: -23.5,5.5 parent: 1 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeBend entities: - uid: 142 @@ -4454,7 +4572,8 @@ entities: type: AtmosPipeColor - uid: 1088 components: - - pos: 4.5,1.5 + - rot: 3.141592653589793 rad + pos: -24.5,0.5 parent: 1 type: Transform - color: '#0055CCFF' @@ -4466,26 +4585,21 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1198 - components: - - pos: -24.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1199 + - uid: 1195 components: - rot: 3.141592653589793 rad - pos: -24.5,-1.5 + pos: -5.5,0.5 parent: 1 type: Transform - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor - uid: 1200 components: - pos: -20.5,-0.5 parent: 1 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 1201 components: - rot: 3.141592653589793 rad @@ -4510,13 +4624,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1242 + - uid: 1259 components: - - rot: 3.141592653589793 rad - pos: -5.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-1.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - proto: GasPipeFourway entities: @@ -4628,14 +4742,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 139 - components: - - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 140 components: - rot: 3.141592653589793 rad @@ -4756,13 +4862,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 357 - components: - - pos: 2.5,5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 371 components: - rot: -1.5707963267948966 rad @@ -4801,6 +4900,20 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor + - uid: 1008 + components: + - pos: 7.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1029 + components: + - pos: -23.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 1097 components: - pos: 4.5,0.5 @@ -4829,20 +4942,6 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 1193 - components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 1197 - components: - - rot: -1.5707963267948966 rad - pos: -26.5,-0.5 - parent: 1 - type: Transform - uid: 1204 components: - rot: -1.5707963267948966 rad @@ -5115,22 +5214,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1241 - components: - - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 1 - type: Transform - - color: '#0055CCFF' - type: AtmosPipeColor - - uid: 1245 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 1247 components: - rot: -1.5707963267948966 rad @@ -5219,14 +5302,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1263 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 1265 components: - rot: -1.5707963267948966 rad @@ -5339,13 +5414,12 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 1335 + - uid: 1333 components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 + - pos: -23.5,2.5 parent: 1 type: Transform - - color: '#0055CCFF' + - color: '#990000FF' type: AtmosPipeColor - uid: 1336 components: @@ -5371,6 +5445,29 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 1340 + components: + - rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1361 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1389 + components: + - pos: -23.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: - uid: 761 @@ -5380,6 +5477,38 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor + - uid: 1188 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1189 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1197 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 1199 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 1202 components: - rot: -1.5707963267948966 rad @@ -5388,6 +5517,21 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor + - uid: 1243 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 1244 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 1246 components: - rot: 3.141592653589793 rad @@ -5396,6 +5540,13 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor + - uid: 1263 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 1190 @@ -5404,12 +5555,16 @@ entities: pos: -20.5,-1.5 parent: 1 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - uid: 1191 components: - rot: 3.141592653589793 rad pos: -21.5,-1.5 parent: 1 type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor - proto: GasVentPump entities: - uid: 1087 @@ -5423,25 +5578,19 @@ entities: type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 1106 + - uid: 1196 components: - - pos: -1.5,5.5 + - pos: 4.5,2.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1360 - type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 1188 + - uid: 1198 components: - - rot: 1.5707963267948966 rad - pos: -24.5,0.5 + - rot: 3.141592653589793 rad + pos: 0.5,0.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1358 - type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - uid: 1222 @@ -5451,26 +5600,12 @@ entities: type: Transform - color: '#0055CCFF' type: AtmosPipeColor - - uid: 1244 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 1362 - type: DeviceNetwork - - color: '#0055CCFF' - type: AtmosPipeColor - uid: 1258 components: - - rot: -1.5707963267948966 rad - pos: -0.5,1.5 + - rot: 1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1362 - type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - uid: 1261 @@ -5494,29 +5629,23 @@ entities: type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor - - uid: 1339 + - uid: 1332 components: - rot: -1.5707963267948966 rad - pos: 4.5,1.5 + pos: -4.5,0.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1363 - type: DeviceNetwork - color: '#0055CCFF' type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 344 + - uid: 1339 components: - - pos: 7.5,1.5 + - pos: -24.5,1.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1363 - type: DeviceNetwork - - color: '#990000FF' + - color: '#0055CCFF' type: AtmosPipeColor +- proto: GasVentScrubber + entities: - uid: 1070 components: - rot: 3.141592653589793 rad @@ -5528,52 +5657,39 @@ entities: type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 1114 + - uid: 1106 components: - - pos: 2.5,5.5 + - rot: 3.141592653589793 rad + pos: -4.5,-3.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1360 - type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 1189 + - uid: 1114 components: - - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 + - pos: 0.5,-1.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1358 - type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 1243 + - uid: 1242 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 + - pos: 7.5,2.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1362 - type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 1253 + - uid: 1245 components: - - pos: -3.5,2.5 + - rot: 3.141592653589793 rad + pos: -24.5,-2.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 1362 - type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor - - uid: 1259 + - uid: 1253 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 + - pos: -3.5,2.5 parent: 1 type: Transform - ShutdownSubscribers: @@ -5602,12 +5718,20 @@ entities: type: DeviceNetwork - color: '#990000FF' type: AtmosPipeColor + - uid: 1335 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasVolumePump entities: - - uid: 1196 + - uid: 1241 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-0.5 + - rot: 3.141592653589793 rad + pos: -23.5,1.5 parent: 1 type: Transform - color: '#990000FF' @@ -6337,6 +6461,13 @@ entities: - pos: -20.5,0.5 parent: 1 type: Transform +- proto: MaterialReclaimer + entities: + - uid: 223 + components: + - pos: -25.5,-0.5 + parent: 1 + type: Transform - proto: Morgue entities: - uid: 1138 @@ -7194,6 +7325,23 @@ entities: pos: 11.5,-5.5 parent: 1 type: Transform +- proto: SignChapel + entities: + - uid: 1387 + components: + - desc: A sign welcoming visitors to the Omnichurch corporation's Beacon outpost, built out of an asteroid. + name: Welcome to the Beacon + type: MetaData + - pos: 1.5,17.5 + parent: 1 + type: Transform + - uid: 1388 + components: + - desc: A sign welcoming visitors to the Omnichurch corporation's Beacon outpost, built out of an asteroid. + type: MetaData + - pos: -0.5,17.5 + parent: 1 + type: Transform - proto: Sink entities: - uid: 872 @@ -8865,7 +9013,7 @@ entities: type: Transform - proto: WarpPoint entities: - - uid: 1029 + - uid: 1334 components: - pos: 0.5,-0.5 parent: 1 diff --git a/Resources/Maps/Shuttles/bazaar.yml b/Resources/Maps/_NF/Shuttles/bazaar.yml similarity index 83% rename from Resources/Maps/Shuttles/bazaar.yml rename to Resources/Maps/_NF/Shuttles/bazaar.yml index 96387bfb1e9..fdbc4db9b16 100644 --- a/Resources/Maps/Shuttles/bazaar.yml +++ b/Resources/Maps/_NF/Shuttles/bazaar.yml @@ -3,17 +3,18 @@ meta: postmapinit: false tilemap: 0: Space - 27: FloorDark - 32: FloorDarkMono - 43: FloorGlass - 62: FloorMetalDiamond - 67: FloorOldConcreteSmooth - 71: FloorRGlass - 93: FloorSteelOffset - 96: FloorTechMaint - 110: FloorWood - 112: Lattice - 113: Plating + 28: FloorDark + 33: FloorDarkMono + 44: FloorGlass + 63: FloorMetalDiamond + 68: FloorOldConcreteSmooth + 72: FloorRGlass + 73: FloorReinforced + 94: FloorSteelOffset + 97: FloorTechMaint + 111: FloorWood + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -27,19 +28,19 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: bgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQwAAAAABQwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAQwAAAAAAQwAAAAACQwAAAAAAQwAAAAABQwAAAAAAQwAAAAAAQwAAAAADIAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQwAAAAADQwAAAAACQwAAAAACIAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQwAAAAAAQwAAAAABQwAAAAACIAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAQwAAAAADQwAAAAACQwAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAQwAAAAABQwAAAAABQwAAAAAAQwAAAAABQwAAAAADQwAAAAACQwAAAAAAcQAAAAAAcQAAAAAAIAAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAAAAAAAAAQwAAAAABQwAAAAAAQwAAAAADQwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAQwAAAAACQwAAAAAAQwAAAAACQwAAAAADcAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAACRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAADRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAARAAAAAABRAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAARAAAAAAARAAAAAACRAAAAAAARAAAAAABRAAAAAAARAAAAAAARAAAAAADIQAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAARAAAAAADRAAAAAACRAAAAAACIQAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAARAAAAAAARAAAAAABRAAAAAACIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAARAAAAAADRAAAAAACRAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAABRAAAAAADRAAAAAACRAAAAAAAcgAAAAAAcgAAAAAAIQAAAAADXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAAAAAAAAARAAAAAABRAAAAAAARAAAAAADRAAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAARAAAAAACRAAAAAAARAAAAAACRAAAAAADcQAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAADIQAAAAACIQAAAAABIQAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACIQAAAAAAIQAAAAABIQAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAAAbwAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAABcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAAAbwAAAAACcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAADSAAAAAACSAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAACSAAAAAADSAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAABSAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQwAAAAACQwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAIAAAAAADQwAAAAACQwAAAAADQwAAAAACQwAAAAACQwAAAAAAQwAAAAACAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAIAAAAAADQwAAAAACQwAAAAAAQwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAIAAAAAADQwAAAAABQwAAAAAAQwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAQwAAAAAAQwAAAAACQwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAIAAAAAABcQAAAAAAcQAAAAAAQwAAAAABQwAAAAADQwAAAAADQwAAAAABQwAAAAABQwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQwAAAAABQwAAAAACQwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAQwAAAAABQwAAAAADQwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADRwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAARAAAAAACRAAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIQAAAAADRAAAAAACRAAAAAADRAAAAAACRAAAAAACRAAAAAAARAAAAAACAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIQAAAAADRAAAAAACRAAAAAAARAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIQAAAAADRAAAAAABRAAAAAAARAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAARAAAAAAARAAAAAACRAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIQAAAAABcgAAAAAAcgAAAAAARAAAAAABRAAAAAADRAAAAAADRAAAAAABRAAAAAABRAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAARAAAAAABRAAAAAACRAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAARAAAAAABRAAAAAADRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAbwAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAADSAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAACKwAAAAACKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAACKwAAAAAAKwAAAAABKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAADcQAAAAAAbgAAAAAAbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAABcQAAAAAAbgAAAAABbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABIAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIQAAAAADcgAAAAAAbwAAAAAAbwAAAAADbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAACIQAAAAABcgAAAAAAbwAAAAABbwAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAABIQAAAAAAcgAAAAAAbwAAAAABbwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAABcgAAAAAAbwAAAAADbwAAAAACbwAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADKwAAAAACKwAAAAAAKwAAAAAAKwAAAAABKwAAAAADKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAADKwAAAAABKwAAAAABKwAAAAABKwAAAAADKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAADKwAAAAADKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAGwAAAAAAIAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAGwAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAGwAAAAACIAAAAAACIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADGwAAAAADIAAAAAACIAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAHAAAAAAAIQAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAAAHAAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAAAHAAAAAACIQAAAAACIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADHAAAAAADIQAAAAACIQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -65,422 +66,454 @@ entities: color: '#FFFFFFFF' id: Box decals: - 49: 13,2 + 35: 13,2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Box decals: - 30: -13,2 + 17: -13,2 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 145: 9,8 + 124: 9,8 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 146: 9.750678,3.7486362 - 147: 11.252993,2.24852 - 148: 8.251255,1.250835 - 149: -11.249821,1.7499099 - 150: -10.247505,4.752153 + 125: 9.750678,3.7486362 + 126: 8.251255,1.250835 + 127: -11.249821,1.7499099 + 128: -10.247505,4.752153 + - node: + color: '#FFA800FF' + id: BrickTileSteelInnerNw + decals: + 141: 10,4 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 15: -10,5 - 16: -8,4 - 35: 13,5 + 2: -10,5 + 3: -8,4 + 22: 13,5 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 14: -13,5 - 32: 10,5 - 33: 8,4 + 1: -13,5 + 19: 10,5 + 20: 8,4 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 13: -8,1 - 31: 13,1 + 0: -8,1 + 18: 13,1 - node: color: '#A46106FF' id: BrickTileWhiteCornerSw decals: - 24: -13,1 - 34: 8,1 + 11: -13,1 + 21: 8,1 - node: color: '#A46106FF' id: BrickTileWhiteInnerNe decals: - 23: -10,4 - - node: - color: '#A46106FF' - id: BrickTileWhiteInnerNw - decals: - 48: 10,4 + 10: -10,4 - node: color: '#A46106FF' id: BrickTileWhiteLineE decals: - 22: -8,3 - 42: 13,2 - 43: 13,3 - 44: 13,4 - 111: -8,2 + 9: -8,3 + 29: 13,2 + 30: 13,3 + 31: 13,4 + 90: -8,2 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 17: -9,4 - 20: -11,5 - 21: -12,5 - 36: 11,5 - 37: 12,5 - 47: 9,4 + 4: -9,4 + 7: -11,5 + 8: -12,5 + 23: 11,5 + 24: 12,5 + 34: 9,4 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 18: -12,1 - 38: 9,1 - 39: 10,1 - 40: 11,1 - 41: 12,1 - 53: -11,1 - 54: -10,1 - 118: -9,1 + 5: -12,1 + 25: 9,1 + 26: 10,1 + 27: 11,1 + 28: 12,1 + 39: -11,1 + 40: -10,1 + 97: -9,1 - node: color: '#A46106FF' id: BrickTileWhiteLineW decals: - 19: -13,4 - 25: -13,2 - 26: -13,3 - 45: 8,2 - 46: 8,3 + 6: -13,4 + 12: -13,2 + 13: -13,3 + 32: 8,2 + 33: 8,3 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 146: -12,-5 + 147: -12,-7 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 150: -1,-9 + 151: 1,-9 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 50: 13,3 - 51: 13,1 - 58: 5,-7 - 59: 5,-6 - 60: 5,-5 + 36: 13,3 + 37: 13,1 + 148: 12,-5 + 149: 12,-7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 27: -13,1 - 28: -13,3 - 55: -5,-7 - 56: -5,-6 - 57: -5,-5 + 14: -13,1 + 15: -13,3 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 158: -1,-5 + 130: -1,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign10 decals: - 163: 0,-7 + 133: 0,-7 - node: color: '#FFFFFFFF' id: SpaceStationSign11 decals: - 197: 1,-7 + 138: 1,-7 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 159: 0,-5 + 131: 0,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 170: -3,-6 + 137: -3,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 169: -2,-6 + 142: -2,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 161: -1,-6 + 143: -1,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 160: 0,-6 + 132: 0,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 164: 1,-6 + 134: 1,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign8 decals: - 165: 2,-6 + 135: 2,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign9 decals: - 166: 3,-6 + 136: 3,-6 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 152: 0,-9 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 52: 13,2 + 38: 13,2 + 145: 12,-6 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 29: -13,2 + 16: -13,2 + 144: -12,-6 - node: color: '#951710FF' id: WarnCornerNE decals: - 121: 11,9 + 100: 11,9 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 117: -5,8 + 96: -5,8 - node: color: '#951710FF' id: WarnCornerNW decals: - 131: 5,8 + 110: 5,8 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 120: -7,9 + 99: -7,9 - node: color: '#951710FF' id: WarnCornerSE decals: - 123: 11,7 + 102: 11,7 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 116: -5,7 + 95: -5,7 - node: color: '#951710FF' id: WarnCornerSW decals: - 124: 5,7 + 103: 5,7 - node: color: '#FED83DFF' id: WarnCornerSmallNE decals: - 110: -4,1 + 89: -4,1 - node: color: '#FED83DFF' id: WarnCornerSmallNW decals: - 109: 4,1 + 88: 4,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 113: -7,7 + 92: -7,7 - node: color: '#951710FF' id: WarnCornerSmallSE decals: - 126: 8,7 + 105: 8,7 - node: color: '#FED83DFF' id: WarnCornerSmallSE decals: - 108: -4,5 + 87: -4,5 - node: color: '#951710FF' id: WarnCornerSmallSW decals: - 125: 8,7 + 104: 8,7 - node: color: '#FED83DFF' id: WarnCornerSmallSW decals: - 107: 4,5 + 86: 4,5 - node: color: '#951710FF' id: WarnEndS decals: - 122: 8,6 + 101: 8,6 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 112: -8,7 + 91: -8,7 - node: color: '#FFFFFFFF' id: WarnFull decals: - 139: 14,3 - 140: 14,2 - 141: 14,1 - 142: -14,3 - 143: -14,2 - 144: -14,1 + 118: 14,3 + 119: 14,2 + 120: 14,1 + 121: -14,3 + 122: -14,2 + 123: -14,1 + - node: + color: '#960000FF' + id: WarnLineE + decals: + 139: 11,8 - node: color: '#FED83DFF' id: WarnLineE decals: - 87: -4,2 - 88: -4,3 - 89: -4,4 + 67: -4,2 + 68: -4,3 + 69: -4,4 - node: color: '#951710FF' id: WarnLineN decals: - 127: 9,7 - 128: 10,7 - 129: 6,7 - 130: 7,7 + 106: 9,7 + 107: 10,7 + 108: 6,7 + 109: 7,7 - node: color: '#FED83DFF' id: WarnLineN decals: - 90: -3,5 - 91: -2,5 - 92: -1,5 - 93: 0,5 - 94: 1,5 - 95: 2,5 - 96: 3,5 + 70: -3,5 + 71: -2,5 + 72: -1,5 + 73: 0,5 + 74: 1,5 + 75: 2,5 + 76: 3,5 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 61: -3,-4 - 62: -2,-4 - 63: -1,-4 - 64: 0,-4 - 65: 1,-4 - 66: 2,-4 - 67: 3,-4 - 114: -7,7 - 115: -6,7 + 41: -3,-4 + 42: -2,-4 + 43: -1,-4 + 44: 0,-4 + 45: 1,-4 + 46: 2,-4 + 47: 3,-4 + 93: -7,7 + 94: -6,7 - node: color: '#FED83DFF' id: WarnLineS decals: - 97: 4,4 - 98: 4,3 - 99: 4,2 + 77: 4,4 + 78: 4,3 + 79: 4,2 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 119: -7,8 + 98: -7,8 - node: color: '#951710FF' id: WarnLineW decals: - 132: 7,9 - 133: 8,9 - 134: 9,9 - 135: 10,9 + 111: 7,9 + 112: 8,9 + 113: 9,9 + 114: 10,9 - node: color: '#FED83DFF' id: WarnLineW decals: - 100: -3,1 - 101: -2,1 - 102: -1,1 - 103: 0,1 - 104: 1,1 - 105: 2,1 - 106: 3,1 + 80: -2,1 + 81: -1,1 + 82: 0,1 + 83: 1,1 + 84: 2,1 + 85: 3,1 + - node: + color: '#FFCD00FF' + id: WarnLineW + decals: + 140: -3,1 - node: color: '#A46106FF' id: WoodTrimThinCornerNe decals: - 68: 3,-1 + 48: 3,-1 - node: color: '#A46106FF' id: WoodTrimThinCornerNw decals: - 70: -3,-1 + 50: -3,-1 - node: color: '#A46106FF' id: WoodTrimThinCornerSe decals: - 80: 3,-3 + 60: 3,-3 - node: color: '#A46106FF' id: WoodTrimThinCornerSw decals: - 81: -3,-3 + 61: -3,-3 - node: color: '#A05212FF' id: WoodTrimThinLineE decals: - 137: -1,-1 + 116: -1,-1 - node: color: '#A46106FF' id: WoodTrimThinLineE decals: - 69: 3,-2 + 49: 3,-2 - node: color: '#A46106FF' id: WoodTrimThinLineN decals: - 72: -2,-1 - 73: 1,-1 - 74: 2,-1 + 52: -2,-1 + 53: 1,-1 + 54: 2,-1 - node: color: '#A05212FF' id: WoodTrimThinLineS decals: - 136: -1,-1 + 115: -1,-1 - node: color: '#A46106FF' id: WoodTrimThinLineS decals: - 75: -2,-3 - 76: -1,-3 - 77: 0,-3 - 78: 1,-3 - 79: 2,-3 - 82: -3,-1 - 83: -2,-1 - 84: 1,-1 - 85: 2,-1 - 86: 3,-1 + 55: -2,-3 + 56: -1,-3 + 57: 0,-3 + 58: 1,-3 + 59: 2,-3 + 62: -3,-1 + 63: -2,-1 + 64: 1,-1 + 65: 2,-1 + 66: 3,-1 - node: color: '#A05212FF' id: WoodTrimThinLineW decals: - 138: 1,-1 + 117: 1,-1 - node: color: '#A46106FF' id: WoodTrimThinLineW decals: - 71: -3,-2 + 51: -3,-2 - node: angle: 0.7853981633974483 rad color: '#FFFFFFFF' id: body decals: - 151: -0.03648758,9.691378 + 129: -0.03648758,9.691378 + - node: + color: '#86FF5BFF' + id: shop + decals: + 153: -4,-5 + 154: 4,-5 type: DecalGrid - type: RadiationGridResistance - version: 2 @@ -623,60 +656,63 @@ entities: type: BecomesStation - proto: AirlockCargo entities: - - uid: 3 + - uid: 2 components: - rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 type: Transform + - secondsUntilStateChange: -516.57 + state: Opening + type: Door - links: - - 223 + - 593 type: DeviceLinkSink - - uid: 44 + - uid: 3 components: - pos: 7.5,3.5 parent: 1 type: Transform - - uid: 175 + - uid: 4 components: - rot: -1.5707963267948966 rad pos: -4.5,-0.5 parent: 1 type: Transform - links: - - 68 + - 590 type: DeviceLinkSink - - uid: 284 + - uid: 5 components: - rot: 1.5707963267948966 rad pos: -6.5,3.5 parent: 1 type: Transform - - uid: 315 + - uid: 6 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 1 type: Transform - links: - - 223 + - 593 type: DeviceLinkSink - - uid: 323 + - uid: 7 components: - rot: -1.5707963267948966 rad pos: -4.5,-3.5 parent: 1 type: Transform - links: - - 68 + - 590 type: DeviceLinkSink - - uid: 344 + - uid: 8 components: - rot: 1.5707963267948966 rad pos: -6.5,2.5 parent: 1 type: Transform - - uid: 347 + - uid: 9 components: - rot: 1.5707963267948966 rad pos: 7.5,2.5 @@ -684,13 +720,13 @@ entities: type: Transform - proto: AirlockCommand entities: - - uid: 343 + - uid: 10 components: - rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 1 type: Transform - - uid: 404 + - uid: 11 components: - rot: 1.5707963267948966 rad pos: -1.5,8.5 @@ -698,115 +734,176 @@ entities: type: Transform - proto: AirlockEngineering entities: - - uid: 699 + - uid: 12 components: - rot: 1.5707963267948966 rad pos: -5.5,6.5 parent: 1 type: Transform -- proto: AirlockGlassShuttle +- proto: AirlockExternal entities: + - uid: 13 + components: + - pos: -5.5,-5.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform - uid: 17 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 20 + components: + - pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: 6.5,-6.5 + parent: 1 + type: Transform +- proto: AirlockGlassShuttle + entities: + - uid: 22 components: - rot: 1.5707963267948966 rad pos: 14.5,2.5 parent: 1 type: Transform - links: - - 209 + - 592 type: DeviceLinkSink - - uid: 67 + - uid: 23 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + - pos: 0.5,-9.5 parent: 1 type: Transform - - uid: 161 + - uid: 24 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 + - pos: 1.5,-9.5 parent: 1 type: Transform - - uid: 191 + - uid: 25 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + type: Transform + - uid: 26 components: - rot: 1.5707963267948966 rad pos: 14.5,3.5 parent: 1 type: Transform - links: - - 209 + - 592 type: DeviceLinkSink - - uid: 226 + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 28 + components: + - pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 29 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 1 + type: Transform + - uid: 31 components: - rot: 1.5707963267948966 rad pos: 14.5,1.5 parent: 1 type: Transform - links: - - 209 + - 592 type: DeviceLinkSink - - uid: 245 + - uid: 32 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + type: Transform + - uid: 33 components: - rot: -1.5707963267948966 rad pos: -13.5,3.5 parent: 1 type: Transform - links: - - 224 + - 594 type: DeviceLinkSink - - uid: 246 + - uid: 34 components: - rot: -1.5707963267948966 rad pos: -13.5,2.5 parent: 1 type: Transform - links: - - 224 + - 594 type: DeviceLinkSink - - uid: 247 + - uid: 35 components: - rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 1 type: Transform - links: - - 224 + - 594 type: DeviceLinkSink - - uid: 302 + - uid: 36 components: - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 1 - type: Transform - - uid: 335 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 357 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 358 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 + pos: 13.5,-4.5 parent: 1 type: Transform -- proto: AirlockSecurity +- proto: AirlockMercenaryGlass entities: - - uid: 18 + - uid: 37 components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 + - pos: 6.5,6.5 parent: 1 type: Transform - proto: AmeController entities: - - uid: 305 + - uid: 38 components: - pos: -7.5,9.5 parent: 1 @@ -817,51 +914,51 @@ entities: AmeFuel: !type:ContainerSlot showEnts: False occludes: True - ent: 306 + ent: 39 type: ContainerContainer - proto: AmeJar entities: - - uid: 306 + - uid: 39 components: - flags: InContainer type: MetaData - - parent: 305 + - parent: 38 type: Transform - canCollide: False type: Physics - proto: AmeShielding entities: - - uid: 5 + - uid: 40 components: - pos: -10.5,8.5 parent: 1 type: Transform - - uid: 19 + - uid: 41 components: - pos: -9.5,7.5 parent: 1 type: Transform - - uid: 33 + - uid: 42 components: - pos: -10.5,7.5 parent: 1 type: Transform - - uid: 213 + - uid: 43 components: - pos: -9.5,9.5 parent: 1 type: Transform - - uid: 214 + - uid: 44 components: - pos: -8.5,7.5 parent: 1 type: Transform - - uid: 244 + - uid: 45 components: - pos: -8.5,9.5 parent: 1 type: Transform - - uid: 307 + - uid: 46 components: - pos: -9.5,8.5 parent: 1 @@ -869,1591 +966,1815 @@ entities: - radius: 2 enabled: True type: PointLight - - uid: 360 + - uid: 47 components: - pos: -8.5,8.5 parent: 1 type: Transform - - uid: 366 + - uid: 48 components: - pos: -10.5,9.5 parent: 1 type: Transform - proto: APCBasic entities: - - uid: 304 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 453 + - uid: 49 components: - pos: -8.5,5.5 parent: 1 type: Transform - - uid: 454 + - uid: 50 components: - pos: 8.5,5.5 parent: 1 type: Transform - - uid: 533 + - uid: 51 components: - rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 1 type: Transform - - uid: 606 + - uid: 52 components: - pos: -1.5,11.5 parent: 1 type: Transform - - uid: 623 + - uid: 53 components: - pos: 2.5,8.5 parent: 1 type: Transform - - uid: 753 + - uid: 54 components: - rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 1 type: Transform + - uid: 805 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 806 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 65 + - uid: 55 components: - rot: 1.5707963267948966 rad pos: 14.5,4.5 parent: 1 type: Transform - - uid: 221 + - uid: 56 components: - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 + pos: 13.5,-4.5 parent: 1 type: Transform - - uid: 222 + - uid: 57 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 + - pos: 1.5,-9.5 parent: 1 type: Transform - - uid: 237 + - uid: 58 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + - pos: 0.5,-9.5 parent: 1 type: Transform - - uid: 298 + - uid: 59 components: - - rot: 1.5707963267948966 rad - pos: -13.5,4.5 + - pos: -0.5,-9.5 parent: 1 type: Transform - - uid: 326 + - uid: 60 components: - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -12.5,-5.5 parent: 1 type: Transform - - uid: 327 + - uid: 61 components: - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: -13.5,4.5 parent: 1 type: Transform - - uid: 328 + - uid: 62 components: - rot: 1.5707963267948966 rad - pos: -10.5,0.5 + pos: -12.5,-4.5 parent: 1 type: Transform - - uid: 329 + - uid: 63 components: - rot: 1.5707963267948966 rad - pos: 11.5,0.5 + pos: 13.5,-6.5 parent: 1 type: Transform - - uid: 331 + - uid: 64 components: - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 + pos: 13.5,-5.5 parent: 1 type: Transform - - uid: 332 + - uid: 65 components: - rot: 1.5707963267948966 rad - pos: 14.5,1.5 + pos: 10.5,0.5 parent: 1 type: Transform - - uid: 359 + - uid: 66 components: - rot: 1.5707963267948966 rad - pos: -9.5,0.5 + pos: -10.5,0.5 parent: 1 type: Transform - - uid: 391 + - uid: 67 components: - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 + pos: 11.5,0.5 parent: 1 type: Transform - - uid: 849 + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 1 + type: Transform + - uid: 71 components: - pos: 14.5,3.5 parent: 1 type: Transform - - uid: 850 + - uid: 72 components: - pos: 14.5,2.5 parent: 1 type: Transform - - uid: 852 + - uid: 73 components: - pos: -13.5,3.5 parent: 1 type: Transform - - uid: 853 + - uid: 74 components: - pos: -13.5,2.5 parent: 1 type: Transform - - uid: 854 + - uid: 75 components: - pos: -13.5,1.5 parent: 1 type: Transform - proto: Autolathe entities: - - uid: 394 + - uid: 76 components: - pos: -0.5,1.5 parent: 1 type: Transform - proto: BannerCargo entities: - - uid: 802 + - uid: 77 components: - pos: -3.5,1.5 parent: 1 type: Transform - - uid: 803 + - uid: 78 components: - pos: 4.5,1.5 parent: 1 type: Transform - proto: BlastDoorExterior1 entities: - - uid: 292 + - uid: 79 components: - pos: 10.5,0.5 parent: 1 type: Transform - - uid: 294 + - uid: 80 components: - pos: 11.5,0.5 parent: 1 type: Transform - proto: BlastDoorExterior3 entities: - - uid: 157 + - uid: 81 components: - pos: -9.5,0.5 parent: 1 type: Transform - - uid: 182 + - uid: 82 components: - pos: -10.5,0.5 parent: 1 type: Transform - proto: BoxZiptie entities: - - uid: 798 + - uid: 83 components: - pos: 9.498885,9.6877575 parent: 1 type: Transform - proto: CableApcExtension entities: - - uid: 70 + - uid: 84 components: - pos: 12.5,-0.5 parent: 1 type: Transform - - uid: 83 + - uid: 85 components: - pos: -9.5,1.5 parent: 1 type: Transform - - uid: 93 + - uid: 86 components: - pos: 9.5,-0.5 parent: 1 type: Transform - - uid: 94 + - uid: 87 components: - pos: 11.5,-0.5 parent: 1 type: Transform - - uid: 95 + - uid: 88 components: - pos: -11.5,1.5 parent: 1 type: Transform - - uid: 99 + - uid: 89 components: - pos: -9.5,0.5 parent: 1 type: Transform - - uid: 100 + - uid: 90 components: - pos: -10.5,-0.5 parent: 1 type: Transform - - uid: 104 + - uid: 91 components: - pos: -9.5,-0.5 parent: 1 type: Transform - - uid: 106 + - uid: 92 components: - - pos: 4.5,-7.5 + - pos: 10.5,0.5 parent: 1 type: Transform - - uid: 108 + - uid: 93 components: - - pos: 4.5,-6.5 + - pos: 10.5,-0.5 parent: 1 type: Transform - - uid: 111 + - uid: 94 components: - - pos: 5.5,-6.5 + - pos: 12.5,1.5 parent: 1 type: Transform - - uid: 123 + - uid: 95 components: - - pos: 5.5,-5.5 + - pos: 11.5,1.5 parent: 1 type: Transform - - uid: 124 + - uid: 96 components: - - pos: 5.5,-4.5 + - pos: -10.5,1.5 parent: 1 type: Transform - - uid: 134 + - uid: 97 components: - - pos: 1.5,-6.5 + - pos: -8.5,1.5 parent: 1 type: Transform - - uid: 135 + - uid: 98 components: - - pos: 2.5,-6.5 + - pos: -11.5,-0.5 parent: 1 type: Transform - - uid: 136 + - uid: 99 components: - - pos: 3.5,-6.5 + - pos: -8.5,-0.5 parent: 1 type: Transform - - uid: 137 + - uid: 100 components: - - pos: 2.5,-8.5 + - pos: 10.5,1.5 parent: 1 type: Transform - - uid: 138 + - uid: 101 components: - - pos: 4.5,-8.5 + - pos: 9.5,1.5 parent: 1 type: Transform - - uid: 140 + - uid: 102 components: - - pos: 10.5,0.5 + - pos: 11.5,7.5 parent: 1 type: Transform - - uid: 141 + - uid: 103 components: - - pos: 10.5,-0.5 + - pos: -3.5,-1.5 parent: 1 type: Transform - - uid: 142 + - uid: 104 components: - - pos: -3.5,-6.5 + - pos: -2.5,-1.5 parent: 1 type: Transform - - uid: 143 + - uid: 105 components: - - pos: -2.5,-6.5 + - pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 144 + - uid: 106 components: - - pos: -1.5,-6.5 + - pos: -1.5,-0.5 parent: 1 type: Transform - - uid: 145 + - uid: 107 components: - - pos: -0.5,-6.5 + - pos: -0.5,-0.5 parent: 1 type: Transform - - uid: 146 + - uid: 108 components: - - pos: 0.5,-6.5 + - pos: 0.5,-0.5 parent: 1 type: Transform - - uid: 147 + - uid: 109 components: - - pos: 4.5,-4.5 + - pos: 1.5,-0.5 parent: 1 type: Transform - - uid: 148 + - uid: 110 components: - - pos: 3.5,-4.5 + - pos: 2.5,-0.5 parent: 1 type: Transform - - uid: 149 + - uid: 111 components: - - pos: 1.5,-4.5 + - pos: -2.5,-2.5 parent: 1 type: Transform - - uid: 150 + - uid: 112 components: - - pos: 0.5,-4.5 + - pos: 2.5,-2.5 parent: 1 type: Transform - - uid: 151 + - uid: 113 components: - - pos: -4.5,-4.5 + - pos: 1.5,-2.5 parent: 1 type: Transform - - uid: 152 + - uid: 114 components: - - pos: -2.5,-4.5 + - pos: 0.5,-2.5 parent: 1 type: Transform - - uid: 153 + - uid: 115 components: - - pos: -3.5,-4.5 + - pos: -0.5,-2.5 parent: 1 type: Transform - - uid: 210 + - uid: 116 components: - - pos: 12.5,1.5 + - pos: -1.5,-2.5 parent: 1 type: Transform - - uid: 211 + - uid: 117 components: - - pos: 11.5,1.5 + - pos: 3.5,-0.5 parent: 1 type: Transform - - uid: 215 + - uid: 118 components: - - pos: -10.5,1.5 + - pos: 3.5,-1.5 parent: 1 type: Transform - - uid: 216 + - uid: 119 components: - - pos: -8.5,1.5 + - pos: 3.5,-2.5 parent: 1 type: Transform - - uid: 230 + - uid: 120 components: - - pos: -11.5,-0.5 + - pos: 8.5,5.5 parent: 1 type: Transform - - uid: 232 + - uid: 121 components: - - pos: -8.5,-0.5 + - pos: 8.5,4.5 parent: 1 type: Transform - - uid: 234 + - uid: 122 components: - - pos: 10.5,1.5 + - pos: 8.5,3.5 parent: 1 type: Transform - - uid: 235 + - uid: 123 components: - - pos: 9.5,1.5 + - pos: 8.5,2.5 parent: 1 type: Transform - - uid: 236 + - uid: 124 components: - - pos: 2.5,-4.5 + - pos: 8.5,1.5 parent: 1 type: Transform - - uid: 287 + - uid: 125 components: - - pos: 3.5,-8.5 + - pos: 13.5,1.5 parent: 1 type: Transform - - uid: 308 + - uid: 126 components: - - pos: -0.5,-4.5 + - pos: 13.5,2.5 parent: 1 type: Transform - - uid: 311 + - uid: 127 components: - - pos: -1.5,-4.5 + - pos: 13.5,3.5 parent: 1 type: Transform - - uid: 313 + - uid: 128 components: - - pos: -4.5,-6.5 + - pos: 13.5,4.5 parent: 1 type: Transform - - uid: 314 + - uid: 129 components: - - pos: -4.5,-5.5 + - pos: 13.5,5.5 parent: 1 type: Transform - - uid: 317 + - uid: 130 components: - - pos: -3.5,-8.5 + - pos: 12.5,5.5 parent: 1 type: Transform - - uid: 466 + - uid: 131 components: - - pos: -1.5,-7.5 + - pos: 11.5,5.5 parent: 1 type: Transform - - uid: 471 + - uid: 132 components: - - pos: 0.5,-7.5 + - pos: 10.5,5.5 parent: 1 type: Transform - - uid: 472 + - uid: 133 components: - - pos: -1.5,-8.5 + - pos: 10.5,4.5 parent: 1 type: Transform - - uid: 473 + - uid: 134 components: - - pos: -0.5,-8.5 + - pos: 9.5,4.5 parent: 1 type: Transform - - uid: 474 + - uid: 135 components: - - pos: 0.5,-8.5 + - pos: -9.5,5.5 parent: 1 type: Transform - - uid: 475 + - uid: 136 components: - - pos: 1.5,-8.5 + - pos: -10.5,5.5 parent: 1 type: Transform - - uid: 476 + - uid: 137 components: - - pos: 2.5,-7.5 + - pos: -11.5,5.5 parent: 1 type: Transform - - uid: 477 + - uid: 138 components: - - pos: 3.5,-8.5 + - pos: -12.5,5.5 parent: 1 type: Transform - - uid: 478 + - uid: 139 components: - - pos: -2.5,-8.5 + - pos: -12.5,4.5 parent: 1 type: Transform - - uid: 534 + - uid: 140 components: - - pos: -3.5,-1.5 + - pos: -12.5,3.5 parent: 1 type: Transform - - uid: 535 + - uid: 141 components: - - pos: -2.5,-1.5 + - pos: -12.5,2.5 parent: 1 type: Transform - - uid: 536 + - uid: 142 components: - - pos: -2.5,-0.5 + - pos: -12.5,1.5 parent: 1 type: Transform - - uid: 537 + - uid: 143 components: - - pos: -1.5,-0.5 + - pos: -7.5,1.5 parent: 1 type: Transform - - uid: 538 + - uid: 144 components: - - pos: -0.5,-0.5 + - pos: -7.5,2.5 parent: 1 type: Transform - - uid: 539 + - uid: 145 components: - - pos: 0.5,-0.5 + - pos: -7.5,3.5 parent: 1 type: Transform - - uid: 540 + - uid: 146 components: - - pos: 1.5,-0.5 + - pos: -7.5,4.5 parent: 1 type: Transform - - uid: 541 + - uid: 147 components: - - pos: 2.5,-0.5 + - pos: -8.5,4.5 parent: 1 type: Transform - - uid: 542 + - uid: 148 components: - - pos: -2.5,-2.5 + - pos: -8.5,5.5 parent: 1 type: Transform - - uid: 543 + - uid: 149 components: - - pos: 2.5,-2.5 + - pos: -1.5,11.5 parent: 1 type: Transform - - uid: 544 + - uid: 150 components: - - pos: 1.5,-2.5 + - pos: -1.5,10.5 parent: 1 type: Transform - - uid: 545 + - uid: 151 components: - - pos: 0.5,-2.5 + - pos: -0.5,10.5 parent: 1 type: Transform - - uid: 546 + - uid: 152 components: - - pos: -0.5,-2.5 + - pos: 0.5,10.5 parent: 1 type: Transform - - uid: 547 + - uid: 153 components: - - pos: -1.5,-2.5 + - pos: 0.5,11.5 parent: 1 type: Transform - - uid: 548 + - uid: 154 components: - - pos: 3.5,-0.5 + - pos: 0.5,12.5 parent: 1 type: Transform - - uid: 549 + - uid: 155 components: - - pos: 3.5,-1.5 + - pos: 1.5,10.5 parent: 1 type: Transform - - uid: 550 + - uid: 156 components: - - pos: 3.5,-2.5 + - pos: 2.5,10.5 parent: 1 type: Transform - - uid: 551 + - uid: 157 components: - - pos: 8.5,5.5 + - pos: 3.5,6.5 parent: 1 type: Transform - - uid: 552 + - uid: 158 components: - - pos: 8.5,4.5 + - pos: 0.5,9.5 parent: 1 type: Transform - - uid: 553 + - uid: 159 components: - - pos: 8.5,3.5 + - pos: 2.5,8.5 parent: 1 type: Transform - - uid: 554 + - uid: 160 components: - - pos: 8.5,2.5 + - pos: 2.5,7.5 parent: 1 type: Transform - - uid: 555 + - uid: 161 components: - - pos: 8.5,1.5 + - pos: 2.5,6.5 parent: 1 type: Transform - - uid: 564 + - uid: 162 components: - - pos: 13.5,1.5 + - pos: 1.5,6.5 parent: 1 type: Transform - - uid: 565 + - uid: 163 components: - - pos: 13.5,2.5 + - pos: 0.5,6.5 parent: 1 type: Transform - - uid: 566 + - uid: 164 components: - - pos: 13.5,3.5 + - pos: -0.5,6.5 parent: 1 type: Transform - - uid: 567 + - uid: 165 components: - - pos: 13.5,4.5 + - pos: -1.5,6.5 parent: 1 type: Transform - - uid: 568 + - uid: 166 components: - - pos: 13.5,5.5 + - pos: -2.5,6.5 parent: 1 type: Transform - - uid: 569 + - uid: 167 components: - - pos: 12.5,5.5 + - pos: -2.5,5.5 parent: 1 type: Transform - - uid: 570 + - uid: 168 components: - - pos: 11.5,5.5 + - pos: -3.5,5.5 parent: 1 type: Transform - - uid: 571 + - uid: 169 components: - - pos: 10.5,5.5 + - pos: -4.5,5.5 parent: 1 type: Transform - - uid: 572 + - uid: 170 components: - - pos: 10.5,4.5 + - pos: -4.5,4.5 parent: 1 type: Transform - - uid: 573 + - uid: 171 components: - - pos: 9.5,4.5 + - pos: -4.5,3.5 parent: 1 type: Transform - - uid: 574 + - uid: 172 components: - - pos: -9.5,5.5 + - pos: -4.5,2.5 parent: 1 type: Transform - - uid: 575 + - uid: 173 components: - - pos: -10.5,5.5 + - pos: -4.5,1.5 parent: 1 type: Transform - - uid: 576 + - uid: 174 components: - - pos: -11.5,5.5 + - pos: -3.5,1.5 parent: 1 type: Transform - - uid: 577 + - uid: 175 components: - - pos: -12.5,5.5 + - pos: -2.5,1.5 parent: 1 type: Transform - - uid: 578 + - uid: 176 components: - - pos: -12.5,4.5 + - pos: -1.5,1.5 parent: 1 type: Transform - - uid: 579 + - uid: 177 components: - - pos: -12.5,3.5 + - pos: -0.5,1.5 parent: 1 type: Transform - - uid: 580 + - uid: 178 components: - - pos: -12.5,2.5 + - pos: 0.5,1.5 parent: 1 type: Transform - - uid: 581 + - uid: 179 components: - - pos: -12.5,1.5 + - pos: 1.5,1.5 + parent: 1 + type: Transform + - uid: 180 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 181 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 182 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 183 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 185 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 186 + components: + - pos: 5.5,4.5 + parent: 1 + type: Transform + - uid: 187 + components: + - pos: 5.5,5.5 + parent: 1 + type: Transform + - uid: 188 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 189 + components: + - pos: 4.5,6.5 + parent: 1 + type: Transform + - uid: 190 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 191 + components: + - pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 192 + components: + - pos: 5.5,-1.5 + parent: 1 + type: Transform + - uid: 193 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 197 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 198 + components: + - pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 199 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 200 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 201 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: -4.5,9.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 205 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 206 + components: + - pos: 5.5,9.5 + parent: 1 + type: Transform + - uid: 207 + components: + - pos: 4.5,9.5 + parent: 1 + type: Transform + - uid: 208 + components: + - pos: 4.5,8.5 parent: 1 type: Transform - - uid: 590 + - uid: 209 components: - - pos: -7.5,1.5 + - pos: 5.5,8.5 parent: 1 type: Transform - - uid: 591 + - uid: 210 components: - - pos: -7.5,2.5 + - pos: 6.5,8.5 parent: 1 type: Transform - - uid: 592 + - uid: 211 components: - - pos: -7.5,3.5 + - pos: 7.5,8.5 parent: 1 type: Transform - - uid: 593 + - uid: 212 components: - - pos: -7.5,4.5 + - pos: 7.5,9.5 parent: 1 type: Transform - - uid: 594 + - uid: 213 components: - - pos: -8.5,4.5 + - pos: 8.5,9.5 parent: 1 type: Transform - - uid: 595 + - uid: 214 components: - - pos: -8.5,5.5 + - pos: 9.5,9.5 parent: 1 type: Transform - - uid: 607 + - uid: 215 components: - - pos: -1.5,11.5 + - pos: 10.5,9.5 parent: 1 type: Transform - - uid: 608 + - uid: 216 components: - - pos: -1.5,10.5 + - pos: 11.5,9.5 parent: 1 type: Transform - - uid: 609 + - uid: 217 components: - - pos: -0.5,10.5 + - pos: 11.5,8.5 parent: 1 type: Transform - - uid: 610 + - uid: 218 components: - - pos: 0.5,10.5 + - pos: 10.5,7.5 parent: 1 type: Transform - - uid: 611 + - uid: 219 components: - - pos: 0.5,11.5 + - pos: 9.5,7.5 parent: 1 type: Transform - - uid: 612 + - uid: 220 components: - - pos: 0.5,12.5 + - pos: 8.5,7.5 parent: 1 type: Transform - - uid: 613 + - uid: 221 components: - - pos: 1.5,10.5 + - pos: 7.5,7.5 parent: 1 type: Transform - - uid: 614 + - uid: 222 components: - - pos: 2.5,10.5 + - pos: -5.5,5.5 parent: 1 type: Transform - - uid: 615 + - uid: 223 components: - - pos: 3.5,6.5 + - pos: -5.5,6.5 parent: 1 type: Transform - - uid: 616 + - uid: 224 components: - - pos: 0.5,9.5 + - pos: -5.5,7.5 parent: 1 type: Transform - - uid: 624 + - uid: 225 components: - - pos: 2.5,8.5 + - pos: -6.5,7.5 parent: 1 type: Transform - - uid: 625 + - uid: 226 components: - - pos: 2.5,7.5 + - pos: -6.5,8.5 parent: 1 type: Transform - - uid: 626 + - uid: 227 components: - - pos: 2.5,6.5 + - pos: -7.5,8.5 parent: 1 type: Transform - - uid: 627 + - uid: 826 components: - - pos: 1.5,6.5 + - pos: -6.5,-3.5 parent: 1 type: Transform - - uid: 628 + - uid: 827 components: - - pos: 0.5,6.5 + - pos: 7.5,-3.5 parent: 1 type: Transform - - uid: 629 + - uid: 828 components: - - pos: -0.5,6.5 + - pos: 7.5,-4.5 parent: 1 type: Transform - - uid: 630 + - uid: 829 components: - - pos: -1.5,6.5 + - pos: 8.5,-4.5 parent: 1 type: Transform - - uid: 631 + - uid: 830 components: - - pos: -2.5,6.5 + - pos: 9.5,-4.5 parent: 1 type: Transform - - uid: 632 + - uid: 831 components: - - pos: -2.5,5.5 + - pos: 10.5,-4.5 parent: 1 type: Transform - - uid: 633 + - uid: 832 components: - - pos: -3.5,5.5 + - pos: 11.5,-4.5 parent: 1 type: Transform - - uid: 634 + - uid: 833 components: - - pos: -4.5,5.5 + - pos: 12.5,-4.5 parent: 1 type: Transform - - uid: 635 + - uid: 834 components: - - pos: -4.5,4.5 + - pos: 12.5,-5.5 parent: 1 type: Transform - - uid: 636 + - uid: 835 components: - - pos: -4.5,3.5 + - pos: 12.5,-6.5 parent: 1 type: Transform - - uid: 637 + - uid: 836 components: - - pos: -4.5,2.5 + - pos: 11.5,-6.5 parent: 1 type: Transform - - uid: 638 + - uid: 837 components: - - pos: -4.5,1.5 + - pos: 10.5,-6.5 parent: 1 type: Transform - - uid: 639 + - uid: 838 components: - - pos: -3.5,1.5 + - pos: 9.5,-6.5 parent: 1 type: Transform - - uid: 640 + - uid: 839 components: - - pos: -2.5,1.5 + - pos: 8.5,-6.5 parent: 1 type: Transform - - uid: 641 + - uid: 840 components: - - pos: -1.5,1.5 + - pos: 7.5,-6.5 parent: 1 type: Transform - - uid: 642 + - uid: 841 components: - - pos: -0.5,1.5 + - pos: 6.5,-6.5 parent: 1 type: Transform - - uid: 643 + - uid: 842 components: - - pos: 0.5,1.5 + - pos: 5.5,-6.5 parent: 1 type: Transform - - uid: 644 + - uid: 843 components: - - pos: 1.5,1.5 + - pos: 4.5,-6.5 parent: 1 type: Transform - - uid: 645 + - uid: 844 components: - - pos: 2.5,1.5 + - pos: 3.5,-6.5 parent: 1 type: Transform - - uid: 646 + - uid: 845 components: - - pos: 3.5,1.5 + - pos: 2.5,-6.5 parent: 1 type: Transform - - uid: 647 + - uid: 846 components: - - pos: 4.5,1.5 + - pos: 1.5,-6.5 parent: 1 type: Transform - - uid: 648 + - uid: 847 components: - - pos: 5.5,1.5 + - pos: 0.5,-6.5 parent: 1 type: Transform - - uid: 649 + - uid: 848 components: - - pos: 5.5,2.5 + - pos: -0.5,-6.5 parent: 1 type: Transform - - uid: 650 + - uid: 849 components: - - pos: 5.5,3.5 + - pos: -1.5,-6.5 parent: 1 type: Transform - - uid: 651 + - uid: 850 components: - - pos: 5.5,4.5 + - pos: -2.5,-6.5 parent: 1 type: Transform - - uid: 652 + - uid: 851 components: - - pos: 5.5,5.5 + - pos: -3.5,-6.5 parent: 1 type: Transform - - uid: 653 + - uid: 852 components: - - pos: 4.5,5.5 + - pos: -4.5,-6.5 parent: 1 type: Transform - - uid: 654 + - uid: 853 components: - - pos: 4.5,6.5 + - pos: -5.5,-6.5 parent: 1 type: Transform - - uid: 655 + - uid: 854 components: - - pos: 5.5,0.5 + - pos: -6.5,-6.5 parent: 1 type: Transform - - uid: 656 + - uid: 855 components: - - pos: 5.5,-0.5 + - pos: -7.5,-6.5 parent: 1 type: Transform - - uid: 657 + - uid: 856 components: - - pos: 5.5,-1.5 + - pos: -8.5,-6.5 parent: 1 type: Transform - - uid: 658 + - uid: 857 components: - - pos: 5.5,-2.5 + - pos: -9.5,-6.5 parent: 1 type: Transform - - uid: 659 + - uid: 858 components: - - pos: 6.5,-2.5 + - pos: -10.5,-6.5 parent: 1 type: Transform - - uid: 687 + - uid: 859 components: - - pos: -5.5,-2.5 + - pos: -11.5,-6.5 parent: 1 type: Transform - - uid: 688 + - uid: 860 components: - - pos: -5.5,-1.5 + - pos: -11.5,-5.5 parent: 1 type: Transform - - uid: 689 + - uid: 861 components: - - pos: -5.5,-0.5 + - pos: -11.5,-4.5 parent: 1 type: Transform - - uid: 690 + - uid: 862 components: - - pos: -5.5,0.5 + - pos: -10.5,-4.5 parent: 1 type: Transform - - uid: 691 + - uid: 863 components: - - pos: -5.5,1.5 + - pos: -9.5,-4.5 parent: 1 type: Transform - - uid: 737 + - uid: 864 components: - - pos: -1.5,9.5 + - pos: -8.5,-4.5 parent: 1 type: Transform - - uid: 738 + - uid: 865 components: - - pos: -2.5,9.5 + - pos: -7.5,-4.5 parent: 1 type: Transform - - uid: 739 + - uid: 866 components: - - pos: -3.5,9.5 + - pos: -6.5,-4.5 parent: 1 type: Transform - - uid: 740 + - uid: 867 components: - - pos: -4.5,9.5 + - pos: -5.5,-4.5 parent: 1 type: Transform - - uid: 741 + - uid: 868 components: - - pos: 2.5,9.5 + - pos: -4.5,-4.5 parent: 1 type: Transform - - uid: 742 + - uid: 869 components: - - pos: 3.5,9.5 + - pos: -3.5,-4.5 parent: 1 type: Transform - - uid: 743 + - uid: 870 components: - - pos: 5.5,9.5 + - pos: -2.5,-4.5 parent: 1 type: Transform - - uid: 744 + - uid: 871 components: - - pos: 4.5,9.5 + - pos: -1.5,-4.5 parent: 1 type: Transform - - uid: 754 + - uid: 872 components: - - pos: 4.5,8.5 + - pos: -0.5,-4.5 parent: 1 type: Transform - - uid: 755 + - uid: 873 components: - - pos: 5.5,8.5 + - pos: 0.5,-4.5 parent: 1 type: Transform - - uid: 756 + - uid: 874 components: - - pos: 6.5,8.5 + - pos: 1.5,-4.5 parent: 1 type: Transform - - uid: 757 + - uid: 875 components: - - pos: 7.5,8.5 + - pos: 2.5,-4.5 parent: 1 type: Transform - - uid: 758 + - uid: 876 components: - - pos: 7.5,9.5 + - pos: 3.5,-4.5 parent: 1 type: Transform - - uid: 759 + - uid: 877 components: - - pos: 8.5,9.5 + - pos: 4.5,-4.5 parent: 1 type: Transform - - uid: 760 + - uid: 878 components: - - pos: 9.5,9.5 + - pos: 5.5,-4.5 parent: 1 type: Transform - - uid: 761 + - uid: 879 components: - - pos: 10.5,9.5 + - pos: 6.5,-4.5 parent: 1 type: Transform - - uid: 762 + - uid: 880 components: - - pos: 11.5,9.5 + - pos: -0.5,-7.5 parent: 1 type: Transform - - uid: 763 + - uid: 881 components: - - pos: 11.5,8.5 + - pos: -0.5,-8.5 parent: 1 type: Transform - - uid: 764 + - uid: 882 components: - - pos: 11.5,7.5 + - pos: 0.5,-8.5 parent: 1 type: Transform - - uid: 765 + - uid: 883 components: - - pos: 10.5,7.5 + - pos: 1.5,-8.5 parent: 1 type: Transform - - uid: 766 + - uid: 884 components: - - pos: 9.5,7.5 + - pos: 1.5,-7.5 parent: 1 type: Transform - - uid: 767 + - uid: 889 components: - - pos: 8.5,7.5 + - pos: -2.5,-8.5 parent: 1 type: Transform - - uid: 768 + - uid: 890 components: - - pos: 7.5,7.5 + - pos: -1.5,-8.5 parent: 1 type: Transform - - uid: 801 + - uid: 891 components: - - pos: -5.5,5.5 + - pos: 2.5,-8.5 parent: 1 type: Transform - - uid: 811 + - uid: 892 components: - - pos: -5.5,6.5 + - pos: 3.5,-8.5 parent: 1 type: Transform - - uid: 812 + - uid: 893 components: - - pos: -5.5,7.5 + - pos: -9.5,-7.5 parent: 1 type: Transform - - uid: 816 + - uid: 894 components: - - pos: -6.5,7.5 + - pos: -8.5,-7.5 parent: 1 type: Transform - - uid: 817 + - uid: 895 components: - - pos: -6.5,8.5 + - pos: 9.5,-7.5 parent: 1 type: Transform - - uid: 818 + - uid: 896 components: - - pos: -7.5,8.5 + - pos: 10.5,-7.5 parent: 1 type: Transform - proto: CableHV entities: - - uid: 58 + - uid: 228 components: - pos: -6.5,5.5 parent: 1 type: Transform - - uid: 77 + - uid: 229 components: - pos: -4.5,6.5 parent: 1 type: Transform - - uid: 310 + - uid: 230 components: - pos: -6.5,8.5 parent: 1 type: Transform - - uid: 349 + - uid: 231 components: - pos: -7.5,5.5 parent: 1 type: Transform - - uid: 361 + - uid: 232 components: - pos: -9.5,8.5 parent: 1 type: Transform - - uid: 362 + - uid: 233 components: - pos: -9.5,9.5 parent: 1 type: Transform - - uid: 363 + - uid: 234 components: - pos: -8.5,9.5 parent: 1 type: Transform - - uid: 364 + - uid: 235 components: - pos: -7.5,9.5 parent: 1 type: Transform - - uid: 367 + - uid: 236 components: - pos: -5.5,7.5 parent: 1 type: Transform - - uid: 368 + - uid: 237 components: - pos: -6.5,9.5 parent: 1 type: Transform - - uid: 370 + - uid: 238 components: - pos: -4.5,5.5 parent: 1 type: Transform - - uid: 371 + - uid: 239 components: - pos: -5.5,5.5 parent: 1 type: Transform - - uid: 429 + - uid: 240 components: - pos: -7.5,6.5 parent: 1 type: Transform - - uid: 693 + - uid: 241 components: - pos: -5.5,8.5 parent: 1 type: Transform - - uid: 695 + - uid: 242 components: - pos: -4.5,8.5 parent: 1 type: Transform - - uid: 696 + - uid: 243 components: - pos: -4.5,7.5 parent: 1 type: Transform - proto: CableMV entities: - - uid: 184 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 185 - components: - - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 189 - components: - - pos: 1.5,-6.5 - parent: 1 - type: Transform - - uid: 192 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 193 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 212 - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 375 + - uid: 244 components: - pos: -7.5,6.5 parent: 1 type: Transform - - uid: 376 + - uid: 245 components: - pos: -7.5,7.5 parent: 1 type: Transform - - uid: 377 + - uid: 246 components: - pos: -6.5,7.5 parent: 1 type: Transform - - uid: 378 + - uid: 247 components: - pos: -5.5,7.5 parent: 1 type: Transform - - uid: 379 + - uid: 248 components: - pos: -5.5,6.5 parent: 1 type: Transform - - uid: 380 + - uid: 249 components: - pos: -5.5,5.5 parent: 1 type: Transform - - uid: 407 + - uid: 250 components: - pos: -5.5,4.5 parent: 1 type: Transform - - uid: 408 + - uid: 251 components: - pos: -5.5,3.5 parent: 1 type: Transform - - uid: 409 + - uid: 252 components: - pos: -5.5,2.5 parent: 1 type: Transform - - uid: 410 + - uid: 253 components: - pos: -5.5,1.5 parent: 1 type: Transform - - uid: 411 + - uid: 254 components: - pos: -4.5,1.5 parent: 1 type: Transform - - uid: 412 + - uid: 255 components: - pos: -3.5,1.5 parent: 1 type: Transform - - uid: 413 + - uid: 256 components: - pos: -2.5,1.5 parent: 1 type: Transform - - uid: 414 + - uid: 257 components: - pos: -1.5,1.5 parent: 1 type: Transform - - uid: 415 + - uid: 258 components: - pos: -0.5,1.5 parent: 1 type: Transform - - uid: 416 + - uid: 259 components: - pos: 0.5,1.5 parent: 1 type: Transform - - uid: 417 + - uid: 260 components: - pos: 0.5,0.5 parent: 1 type: Transform - - uid: 418 + - uid: 261 components: - pos: 0.5,-0.5 parent: 1 type: Transform - - uid: 419 + - uid: 262 components: - pos: 0.5,-1.5 parent: 1 type: Transform - - uid: 420 + - uid: 263 components: - pos: 0.5,-2.5 parent: 1 type: Transform - - uid: 421 + - uid: 264 components: - pos: -6.5,2.5 parent: 1 type: Transform - - uid: 422 + - uid: 265 components: - pos: -7.5,2.5 parent: 1 type: Transform - - uid: 423 + - uid: 266 components: - pos: -7.5,3.5 parent: 1 type: Transform - - uid: 424 + - uid: 267 components: - pos: -7.5,4.5 parent: 1 type: Transform - - uid: 425 + - uid: 268 components: - pos: -8.5,4.5 parent: 1 type: Transform - - uid: 426 + - uid: 269 components: - pos: -8.5,5.5 parent: 1 type: Transform - - uid: 427 + - uid: 270 components: - pos: 0.5,-3.5 parent: 1 type: Transform - - uid: 441 + - uid: 271 components: - pos: 1.5,1.5 parent: 1 type: Transform - - uid: 442 + - uid: 272 components: - pos: 2.5,1.5 parent: 1 type: Transform - - uid: 443 + - uid: 273 components: - pos: 3.5,1.5 parent: 1 type: Transform - - uid: 444 + - uid: 274 components: - pos: 4.5,1.5 parent: 1 type: Transform - - uid: 445 + - uid: 275 components: - pos: 5.5,1.5 parent: 1 type: Transform - - uid: 446 + - uid: 276 components: - pos: 6.5,1.5 parent: 1 type: Transform - - uid: 447 + - uid: 277 components: - pos: 6.5,2.5 parent: 1 type: Transform - - uid: 448 + - uid: 278 components: - pos: 7.5,2.5 parent: 1 type: Transform - - uid: 449 + - uid: 279 components: - pos: 8.5,2.5 parent: 1 type: Transform - - uid: 450 + - uid: 280 components: - pos: 8.5,3.5 parent: 1 type: Transform - - uid: 451 + - uid: 281 components: - pos: 8.5,4.5 parent: 1 type: Transform - - uid: 452 + - uid: 282 components: - pos: 8.5,5.5 parent: 1 type: Transform - - uid: 529 + - uid: 283 components: - pos: -0.5,-1.5 parent: 1 type: Transform - - uid: 530 + - uid: 284 components: - pos: -1.5,-1.5 parent: 1 type: Transform - - uid: 531 + - uid: 285 components: - pos: -2.5,-1.5 parent: 1 type: Transform - - uid: 532 + - uid: 286 components: - pos: -3.5,-1.5 parent: 1 type: Transform - - uid: 596 + - uid: 287 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: -1.5,6.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 295 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -1.5,11.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 307 components: - - pos: -4.5,5.5 + - pos: 6.5,7.5 parent: 1 type: Transform - - uid: 597 + - uid: 308 components: - - pos: -3.5,5.5 + - pos: 6.5,8.5 parent: 1 type: Transform - - uid: 598 + - uid: 309 components: - - pos: -2.5,5.5 + - pos: 5.5,8.5 parent: 1 type: Transform - - uid: 599 + - uid: 310 components: - - pos: -1.5,5.5 + - pos: 4.5,8.5 parent: 1 type: Transform - - uid: 600 + - uid: 804 components: - - pos: -1.5,6.5 + - pos: 0.5,-4.5 parent: 1 type: Transform - - uid: 601 + - uid: 807 components: - - pos: -1.5,7.5 + - pos: 0.5,-5.5 parent: 1 type: Transform - - uid: 602 + - uid: 808 components: - - pos: -1.5,9.5 + - pos: -0.5,-5.5 parent: 1 type: Transform - - uid: 603 + - uid: 809 components: - - pos: -1.5,8.5 + - pos: -4.5,-5.5 parent: 1 type: Transform - - uid: 604 + - uid: 810 components: - - pos: -1.5,10.5 + - pos: -6.5,-5.5 parent: 1 type: Transform - - uid: 605 + - uid: 811 components: - - pos: -1.5,11.5 + - pos: -5.5,-5.5 parent: 1 type: Transform - - uid: 617 + - uid: 812 components: - - pos: -0.5,6.5 + - pos: -3.5,-5.5 parent: 1 type: Transform - - uid: 618 + - uid: 813 components: - - pos: 0.5,6.5 + - pos: -6.5,-3.5 parent: 1 type: Transform - - uid: 619 + - uid: 814 components: - - pos: 1.5,6.5 + - pos: -6.5,-4.5 parent: 1 type: Transform - - uid: 620 + - uid: 815 components: - - pos: 2.5,6.5 + - pos: 1.5,-5.5 parent: 1 type: Transform - - uid: 621 + - uid: 816 components: - - pos: 2.5,7.5 + - pos: 3.5,-5.5 parent: 1 type: Transform - - uid: 622 + - uid: 817 components: - - pos: 2.5,8.5 + - pos: -1.5,-5.5 parent: 1 type: Transform - - uid: 745 + - uid: 818 components: - - pos: 6.5,3.5 + - pos: 2.5,-5.5 parent: 1 type: Transform - - uid: 746 + - uid: 819 components: - - pos: 6.5,4.5 + - pos: 4.5,-5.5 parent: 1 type: Transform - - uid: 747 + - uid: 820 components: - - pos: 6.5,5.5 + - pos: -2.5,-5.5 parent: 1 type: Transform - - uid: 748 + - uid: 821 components: - - pos: 6.5,6.5 + - pos: 6.5,-5.5 parent: 1 type: Transform - - uid: 749 + - uid: 822 components: - - pos: 6.5,7.5 + - pos: 5.5,-5.5 parent: 1 type: Transform - - uid: 750 + - uid: 823 components: - - pos: 6.5,8.5 + - pos: 7.5,-5.5 parent: 1 type: Transform - - uid: 751 + - uid: 824 components: - - pos: 5.5,8.5 + - pos: 7.5,-4.5 parent: 1 type: Transform - - uid: 752 + - uid: 825 components: - - pos: 4.5,8.5 + - pos: 7.5,-3.5 parent: 1 type: Transform - proto: CableTerminal entities: - - uid: 395 + - uid: 311 components: - rot: 1.5707963267948966 rad pos: -5.5,7.5 parent: 1 type: Transform - - uid: 694 + - uid: 312 components: - rot: 1.5707963267948966 rad pos: -5.5,8.5 @@ -2461,37 +2782,37 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 440 + - uid: 313 components: - rot: -1.5707963267948966 rad pos: -0.5,9.5 parent: 1 type: Transform - - uid: 455 + - uid: 314 components: - rot: -1.5707963267948966 rad pos: -0.5,10.5 parent: 1 type: Transform - - uid: 456 + - uid: 315 components: - rot: -1.5707963267948966 rad pos: 0.5,9.5 parent: 1 type: Transform - - uid: 457 + - uid: 316 components: - rot: -1.5707963267948966 rad pos: 0.5,10.5 parent: 1 type: Transform - - uid: 458 + - uid: 317 components: - rot: -1.5707963267948966 rad pos: 1.5,9.5 parent: 1 type: Transform - - uid: 459 + - uid: 318 components: - rot: -1.5707963267948966 rad pos: 1.5,10.5 @@ -2499,114 +2820,114 @@ entities: type: Transform - proto: Catwalk entities: - - uid: 71 + - uid: 319 components: - pos: 0.5,4.5 parent: 1 type: Transform - - uid: 72 + - uid: 320 components: - pos: 0.5,2.5 parent: 1 type: Transform - - uid: 75 + - uid: 321 components: - pos: 3.5,3.5 parent: 1 type: Transform - - uid: 76 + - uid: 322 components: - pos: -2.5,3.5 parent: 1 type: Transform - - uid: 78 + - uid: 323 components: - pos: 2.5,3.5 parent: 1 type: Transform - - uid: 79 + - uid: 324 components: - pos: 2.5,2.5 parent: 1 type: Transform - - uid: 80 + - uid: 325 components: - pos: -0.5,4.5 parent: 1 type: Transform - - uid: 81 + - uid: 326 components: - pos: 1.5,3.5 parent: 1 type: Transform - - uid: 82 + - uid: 327 components: - pos: -1.5,4.5 parent: 1 type: Transform - - uid: 84 + - uid: 328 components: - pos: 0.5,3.5 parent: 1 type: Transform - - uid: 86 + - uid: 329 components: - pos: 1.5,4.5 parent: 1 type: Transform - - uid: 87 + - uid: 330 components: - pos: 2.5,4.5 parent: 1 type: Transform - - uid: 88 + - uid: 331 components: - pos: -0.5,2.5 parent: 1 type: Transform - - uid: 89 + - uid: 332 components: - pos: 3.5,2.5 parent: 1 type: Transform - - uid: 90 + - uid: 333 components: - pos: -1.5,3.5 parent: 1 type: Transform - - uid: 91 + - uid: 334 components: - pos: -1.5,2.5 parent: 1 type: Transform - - uid: 92 + - uid: 335 components: - pos: 3.5,4.5 parent: 1 type: Transform - - uid: 98 + - uid: 336 components: - pos: -2.5,2.5 parent: 1 type: Transform - - uid: 101 + - uid: 337 components: - pos: -0.5,3.5 parent: 1 type: Transform - - uid: 102 + - uid: 338 components: - pos: 1.5,2.5 parent: 1 type: Transform - - uid: 103 + - uid: 339 components: - pos: -2.5,4.5 parent: 1 type: Transform - proto: ChairOfficeDark entities: - - uid: 799 + - uid: 340 components: - rot: 3.141592653589793 rad pos: 8.5,8.5 @@ -2614,92 +2935,15 @@ entities: type: Transform - proto: ChairPilotSeat entities: - - uid: 800 + - uid: 341 components: - rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 type: Transform -- proto: ClothingBackpackMerc - entities: - - uid: 773 - components: - - pos: 11.367278,9.83124 - parent: 1 - type: Transform -- proto: ClothingBeltMercWebbing - entities: - - uid: 777 - components: - - pos: 11.718841,8.835146 - parent: 1 - type: Transform -- proto: ClothingHandsMercGlovesCombat - entities: - - uid: 778 - components: - - pos: 11.742278,9.303896 - parent: 1 - type: Transform -- proto: ClothingHeadBandMerc - entities: - - uid: 781 - components: - - pos: 11.308684,7.7921767 - parent: 1 - type: Transform -- proto: ClothingHeadHatBeretMerc - entities: - - uid: 775 - components: - - pos: 11.777434,9.702333 - parent: 1 - type: Transform -- proto: ClothingHeadHelmetMerc - entities: - - uid: 774 - components: - - pos: 11.332122,8.741396 - parent: 1 - type: Transform -- proto: ClothingMaskGasMerc - entities: - - uid: 780 - components: - - pos: 11.777434,8.307802 - parent: 1 - type: Transform -- proto: ClothingOuterArmorBasic - entities: - - uid: 784 - components: - - pos: 11.753997,7.253114 - parent: 1 - type: Transform -- proto: ClothingOuterVestWebMerc - entities: - - uid: 783 - components: - - pos: 11.296966,7.264833 - parent: 1 - type: Transform -- proto: ClothingShoesBootsMerc - entities: - - uid: 776 - components: - - pos: 11.238372,9.350771 - parent: 1 - type: Transform -- proto: ClothingUniformJumpsuitMercenary - entities: - - uid: 779 - components: - - pos: 11.203216,8.354677 - parent: 1 - type: Transform - proto: ComfyChair entities: - - uid: 460 + - uid: 342 components: - rot: 1.5707963267948966 rad pos: 1.5,9.5 @@ -2707,7 +2951,7 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 821 + - uid: 343 components: - rot: 1.5707963267948966 rad pos: -0.5,12.5 @@ -2715,14 +2959,14 @@ entities: type: Transform - proto: ComputerShuttle entities: - - uid: 797 + - uid: 344 components: - pos: 0.5,13.5 parent: 1 type: Transform - proto: ComputerStationRecords entities: - - uid: 822 + - uid: 345 components: - rot: -1.5707963267948966 rad pos: 1.5,12.5 @@ -2730,7 +2974,7 @@ entities: type: Transform - proto: ComputerWallmountWithdrawBankATM entities: - - uid: 241 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: 4.5,-3.5 @@ -2742,7 +2986,7 @@ entities: bank-ATM-cashSlot: !type:ContainerSlot {} type: ContainerContainer - type: ItemSlots - - uid: 242 + - uid: 347 components: - rot: -1.5707963267948966 rad pos: -3.5,-3.5 @@ -2756,93 +3000,93 @@ entities: - type: ItemSlots - proto: ConveyorBelt entities: - - uid: 268 + - uid: 348 components: - rot: -1.5707963267948966 rad pos: 14.5,4.5 parent: 1 type: Transform - links: - - 431 + - 650 type: DeviceLinkSink - - uid: 270 + - uid: 349 components: - rot: -1.5707963267948966 rad pos: 12.5,4.5 parent: 1 type: Transform - links: - - 431 + - 650 type: DeviceLinkSink - - uid: 271 + - uid: 350 components: - rot: -1.5707963267948966 rad pos: 13.5,4.5 parent: 1 type: Transform - links: - - 431 + - 650 type: DeviceLinkSink - - uid: 272 + - uid: 351 components: - rot: 1.5707963267948966 rad pos: -12.5,4.5 parent: 1 type: Transform - links: - - 396 + - 649 type: DeviceLinkSink - - uid: 273 + - uid: 352 components: - rot: 1.5707963267948966 rad pos: -11.5,4.5 parent: 1 type: Transform - links: - - 396 + - 649 type: DeviceLinkSink - - uid: 274 + - uid: 353 components: - rot: 1.5707963267948966 rad pos: -13.5,4.5 parent: 1 type: Transform - links: - - 396 + - 649 type: DeviceLinkSink - proto: ConveyorBeltAssembly entities: - - uid: 433 + - uid: 354 components: - rot: -1.5707963267948966 rad pos: -12.366159,5.625069 parent: 1 type: Transform - - uid: 434 + - uid: 355 components: - rot: -1.5707963267948966 rad pos: -11.897409,5.636788 parent: 1 type: Transform - - uid: 435 + - uid: 356 components: - rot: -1.5707963267948966 rad pos: -12.131784,5.636788 parent: 1 type: Transform - - uid: 436 + - uid: 357 components: - rot: -1.5707963267948966 rad pos: 13.488132,5.5664754 parent: 1 type: Transform - - uid: 437 + - uid: 358 components: - rot: -1.5707963267948966 rad pos: 13.054539,5.5664754 parent: 1 type: Transform - - uid: 438 + - uid: 359 components: - rot: -1.5707963267948966 rad pos: 13.32407,5.5664754 @@ -2850,228 +3094,275 @@ entities: type: Transform - proto: CrateEmptySpawner entities: - - uid: 807 + - uid: 360 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 363 components: - pos: 10.5,1.5 parent: 1 type: Transform - - uid: 808 + - uid: 364 components: - pos: -10.5,3.5 parent: 1 type: Transform - proto: FaxMachineShip entities: - - uid: 820 + - uid: 365 components: - pos: 2.5,10.5 parent: 1 type: Transform - proto: Firelock entities: - - uid: 225 + - uid: 366 components: - pos: 7.5,3.5 parent: 1 type: Transform - - uid: 312 + - uid: 367 components: - rot: 3.141592653589793 rad pos: 7.5,2.5 parent: 1 type: Transform - - uid: 318 + - uid: 368 components: - rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 1 type: Transform - - uid: 319 + - uid: 369 components: - rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 1 type: Transform - - uid: 480 + - uid: 370 components: - rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 1 type: Transform - - uid: 481 + - uid: 371 components: - rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 1 type: Transform - - uid: 482 + - uid: 372 components: - rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 1 type: Transform - - uid: 483 + - uid: 373 components: - rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 type: Transform - - uid: 484 + - uid: 374 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 1 type: Transform - - uid: 485 + - uid: 375 components: - rot: 3.141592653589793 rad pos: 6.5,6.5 parent: 1 type: Transform - - uid: 486 + - uid: 376 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 1 type: Transform - - uid: 487 + - uid: 377 components: - rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 1 type: Transform -- proto: GasPassiveVent +- proto: FirelockGlass entities: - - uid: 732 + - uid: 901 components: - rot: 3.141592653589793 rad - pos: 8.5,-0.5 + pos: -5.5,-4.5 parent: 1 type: Transform - - color: '#C70039FF' - type: AtmosPipeColor -- proto: GasPipeBend - entities: - - uid: 498 + - uid: 902 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 parent: 1 type: Transform - - color: '#98FF98FF' - type: AtmosPipeColor - - uid: 499 + - uid: 903 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 + - rot: 3.141592653589793 rad + pos: -5.5,-6.5 parent: 1 type: Transform - - color: '#98FF98FF' - type: AtmosPipeColor - - uid: 500 + - uid: 904 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 + - rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 1 type: Transform - - color: '#C70039FF' - type: AtmosPipeColor - - uid: 505 + - uid: 905 components: - - rot: -1.5707963267948966 rad + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 906 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 907 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 908 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 909 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 378 + components: + - rot: 3.141592653589793 rad pos: 5.5,-4.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 512 + - uid: 379 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 380 components: - rot: 3.141592653589793 rad pos: 4.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 513 + - uid: 381 components: - rot: -1.5707963267948966 rad pos: 6.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 515 + - uid: 382 components: - rot: 1.5707963267948966 rad pos: 4.5,3.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 528 + - uid: 383 components: - rot: 1.5707963267948966 rad pos: -8.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 557 + - uid: 384 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 558 + - uid: 385 components: - rot: -1.5707963267948966 rad pos: -8.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 559 + - uid: 386 components: - rot: 3.141592653589793 rad pos: 10.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 560 + - uid: 387 components: - pos: 10.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 584 + - uid: 388 components: - rot: 1.5707963267948966 rad pos: -2.5,5.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 585 + - uid: 389 components: - rot: -1.5707963267948966 rad pos: -1.5,5.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 589 + - uid: 390 components: - rot: 1.5707963267948966 rad pos: -1.5,9.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 673 + - uid: 391 components: - rot: 1.5707963267948966 rad pos: 8.5,4.5 @@ -3079,7 +3370,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 674 + - uid: 392 components: - rot: -1.5707963267948966 rad pos: 8.5,3.5 @@ -3087,7 +3378,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 675 + - uid: 393 components: - rot: 3.141592653589793 rad pos: 6.5,3.5 @@ -3095,14 +3386,14 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 677 + - uid: 394 components: - pos: 6.5,4.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 678 + - uid: 395 components: - rot: -1.5707963267948966 rad pos: 1.5,3.5 @@ -3110,7 +3401,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 679 + - uid: 396 components: - rot: 1.5707963267948966 rad pos: 1.5,4.5 @@ -3118,14 +3409,14 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 715 + - uid: 397 components: - pos: -3.5,4.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 717 + - uid: 398 components: - rot: 1.5707963267948966 rad pos: -5.5,4.5 @@ -3133,7 +3424,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 718 + - uid: 399 components: - rot: -1.5707963267948966 rad pos: -5.5,3.5 @@ -3141,14 +3432,14 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 719 + - uid: 400 components: - pos: -9.5,4.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 720 + - uid: 401 components: - rot: 3.141592653589793 rad pos: -9.5,3.5 @@ -3156,14 +3447,14 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 724 + - uid: 402 components: - pos: -4.5,5.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 725 + - uid: 403 components: - rot: 3.141592653589793 rad pos: -5.5,5.5 @@ -3171,7 +3462,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 727 + - uid: 404 components: - pos: -5.5,7.5 parent: 1 @@ -3180,7 +3471,7 @@ entities: type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 501 + - uid: 405 components: - pos: 0.5,3.5 parent: 1 @@ -3189,275 +3480,251 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 502 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - color: '#98FF98FF' - type: AtmosPipeColor - - uid: 503 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - color: '#98FF98FF' - type: AtmosPipeColor - - uid: 504 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - color: '#98FF98FF' - type: AtmosPipeColor - - uid: 506 + - uid: 406 components: - rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 507 + - uid: 407 components: - rot: 3.141592653589793 rad pos: 5.5,-1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 508 + - uid: 408 components: - rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 509 + - uid: 409 components: - rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 510 + - uid: 410 components: - rot: 3.141592653589793 rad pos: 5.5,0.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 517 + - uid: 411 components: - rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 518 + - uid: 412 components: - rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 519 + - uid: 413 components: - rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 520 + - uid: 414 components: - rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 521 + - uid: 415 components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 522 + - uid: 416 components: - rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 523 + - uid: 417 components: - rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 524 + - uid: 418 components: - rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 525 + - uid: 419 components: - rot: 1.5707963267948966 rad pos: -5.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 526 + - uid: 420 components: - rot: 1.5707963267948966 rad pos: -6.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 527 + - uid: 421 components: - rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 556 + - uid: 422 components: - rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 561 + - uid: 423 components: - rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 563 + - uid: 424 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 582 + - uid: 425 components: - rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 583 + - uid: 426 components: - rot: 3.141592653589793 rad pos: -2.5,4.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 586 + - uid: 427 components: - rot: 3.141592653589793 rad pos: -1.5,6.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 587 + - uid: 428 components: - rot: 3.141592653589793 rad pos: -1.5,7.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 588 + - uid: 429 components: - rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 660 + - uid: 430 components: - rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 661 + - uid: 431 components: - rot: 1.5707963267948966 rad pos: 0.5,9.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 662 + - uid: 432 components: - rot: 1.5707963267948966 rad pos: 1.5,9.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 663 + - uid: 433 components: - pos: 0.5,7.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 664 + - uid: 434 components: - pos: 0.5,6.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 665 + - uid: 435 components: - pos: 0.5,5.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 666 + - uid: 436 components: - pos: 0.5,4.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 668 + - uid: 437 components: - rot: -1.5707963267948966 rad pos: -2.5,3.5 @@ -3465,7 +3732,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 669 + - uid: 438 components: - rot: -1.5707963267948966 rad pos: -1.5,3.5 @@ -3473,7 +3740,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 670 + - uid: 439 components: - rot: -1.5707963267948966 rad pos: -0.5,3.5 @@ -3481,7 +3748,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 671 + - uid: 440 components: - rot: -1.5707963267948966 rad pos: 10.5,4.5 @@ -3489,7 +3756,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 672 + - uid: 441 components: - rot: -1.5707963267948966 rad pos: 9.5,4.5 @@ -3497,7 +3764,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 676 + - uid: 442 components: - rot: -1.5707963267948966 rad pos: 7.5,3.5 @@ -3505,7 +3772,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 680 + - uid: 443 components: - rot: 1.5707963267948966 rad pos: 2.5,4.5 @@ -3513,7 +3780,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 681 + - uid: 444 components: - rot: 1.5707963267948966 rad pos: 3.5,4.5 @@ -3521,7 +3788,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 682 + - uid: 445 components: - rot: 1.5707963267948966 rad pos: 4.5,4.5 @@ -3529,7 +3796,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 683 + - uid: 446 components: - rot: 1.5707963267948966 rad pos: 5.5,4.5 @@ -3537,56 +3804,56 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 684 + - uid: 447 components: - pos: 0.5,2.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 685 + - uid: 448 components: - pos: 0.5,1.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 686 + - uid: 449 components: - pos: 0.5,0.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 692 + - uid: 450 components: - pos: 0.5,-0.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 700 + - uid: 451 components: - pos: 0.5,-1.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 713 + - uid: 452 components: - pos: 0.5,-2.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 714 + - uid: 453 components: - pos: 0.5,-3.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 721 + - uid: 454 components: - rot: 1.5707963267948966 rad pos: -8.5,3.5 @@ -3594,7 +3861,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 722 + - uid: 455 components: - rot: 1.5707963267948966 rad pos: -7.5,3.5 @@ -3602,7 +3869,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 723 + - uid: 456 components: - rot: 1.5707963267948966 rad pos: -6.5,3.5 @@ -3610,7 +3877,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 726 + - uid: 457 components: - rot: 3.141592653589793 rad pos: -5.5,6.5 @@ -3618,7 +3885,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 728 + - uid: 458 components: - rot: -1.5707963267948966 rad pos: -6.5,7.5 @@ -3626,21 +3893,21 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 730 + - uid: 459 components: - pos: 8.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 731 + - uid: 460 components: - pos: 8.5,0.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 733 + - uid: 461 components: - rot: 3.141592653589793 rad pos: 0.5,8.5 @@ -3650,37 +3917,37 @@ entities: type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 511 + - uid: 462 components: - pos: 5.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 514 + - uid: 463 components: - rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 516 + - uid: 464 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 562 + - uid: 465 components: - pos: 8.5,2.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 667 + - uid: 466 components: - rot: 3.141592653589793 rad pos: -3.5,3.5 @@ -3688,7 +3955,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 716 + - uid: 467 components: - rot: 3.141592653589793 rad pos: -4.5,4.5 @@ -3698,7 +3965,7 @@ entities: type: AtmosPipeColor - proto: GasPort entities: - - uid: 729 + - uid: 468 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -3708,15 +3975,15 @@ entities: type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 488 + - uid: 469 components: - rot: 3.141592653589793 rad - pos: -3.5,-5.5 + pos: 0.5,-4.5 parent: 1 type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 490 + - uid: 470 components: - rot: 1.5707963267948966 rad pos: -4.5,3.5 @@ -3724,7 +3991,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 491 + - uid: 471 components: - rot: -1.5707963267948966 rad pos: 11.5,4.5 @@ -3732,7 +3999,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 492 + - uid: 472 components: - rot: 1.5707963267948966 rad pos: -10.5,4.5 @@ -3740,7 +4007,7 @@ entities: type: Transform - color: '#98FF98FF' type: AtmosPipeColor - - uid: 493 + - uid: 473 components: - pos: 0.5,9.5 parent: 1 @@ -3749,322 +4016,267 @@ entities: type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 489 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 1 - type: Transform - - color: '#C70039FF' - type: AtmosPipeColor - - uid: 494 + - uid: 474 components: - rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 495 + - uid: 475 components: - rot: -1.5707963267948966 rad pos: 11.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 496 + - uid: 476 components: - rot: 1.5707963267948966 rad pos: -10.5,1.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - - uid: 497 + - uid: 477 components: - rot: -1.5707963267948966 rad pos: 2.5,9.5 parent: 1 type: Transform - - color: '#C70039FF' + - color: '#990000FF' type: AtmosPipeColor - proto: GravityGeneratorMini entities: - - uid: 397 + - uid: 478 components: - pos: 5.5,8.5 parent: 1 type: Transform - proto: Grille entities: - - uid: 6 + - uid: 479 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 type: Transform - - uid: 15 + - uid: 480 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 481 components: - pos: -2.5,0.5 parent: 1 type: Transform - - uid: 23 + - uid: 482 components: - pos: 3.5,0.5 parent: 1 type: Transform - - uid: 31 + - uid: 483 components: - rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 1 type: Transform - - uid: 34 + - uid: 484 components: - pos: 2.5,0.5 parent: 1 type: Transform - - uid: 40 + - uid: 485 components: - rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 type: Transform - - uid: 43 + - uid: 486 components: - pos: -1.5,0.5 parent: 1 type: Transform - - uid: 195 + - uid: 487 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 + - pos: -4.5,-7.5 parent: 1 type: Transform - - uid: 219 + - uid: 488 components: - - pos: -0.5,-7.5 + - pos: 5.5,-7.5 parent: 1 type: Transform - - uid: 239 + - uid: 489 components: - - rot: 3.141592653589793 rad - pos: 0.5,14.5 + - pos: -3.5,-7.5 parent: 1 type: Transform - - uid: 240 + - uid: 490 components: - - rot: 3.141592653589793 rad - pos: -1.5,13.5 + - pos: -8.5,-7.5 parent: 1 type: Transform - - uid: 243 + - uid: 491 components: - - rot: 3.141592653589793 rad - pos: 1.5,14.5 + - pos: -10.5,-7.5 parent: 1 type: Transform - - uid: 248 + - uid: 492 components: - - pos: 0.5,-7.5 + - pos: -7.5,-7.5 parent: 1 type: Transform - - uid: 253 + - uid: 493 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + - pos: 11.5,-7.5 parent: 1 type: Transform - - uid: 280 + - uid: 494 components: - - pos: 1.5,-7.5 + - pos: 8.5,-7.5 parent: 1 type: Transform - - uid: 325 + - uid: 495 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 + - pos: -9.5,-7.5 parent: 1 type: Transform - - uid: 336 + - uid: 496 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 497 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 498 components: - rot: 3.141592653589793 rad - pos: 1.5,13.5 + pos: 0.5,14.5 parent: 1 type: Transform - - uid: 337 + - uid: 499 components: - rot: 3.141592653589793 rad - pos: 2.5,13.5 + pos: -1.5,13.5 parent: 1 type: Transform - - uid: 338 + - uid: 500 components: - rot: 3.141592653589793 rad - pos: 2.5,12.5 + pos: 1.5,14.5 parent: 1 type: Transform - - uid: 356 + - uid: 501 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 + - pos: 3.5,-7.5 parent: 1 type: Transform -- proto: Gyroscope - entities: - - uid: 373 + - uid: 502 components: - - rot: -1.5707963267948966 rad - pos: -7.5,8.5 + - rot: 3.141592653589793 rad + pos: 1.5,13.5 parent: 1 type: Transform - - uid: 833 + - uid: 503 components: - - pos: 5.5,7.5 + - rot: 3.141592653589793 rad + pos: 2.5,13.5 parent: 1 type: Transform -- proto: LockerCaptainFilled - entities: - - uid: 823 + - uid: 504 components: - - pos: -0.5,10.5 + - rot: 3.141592653589793 rad + pos: 2.5,12.5 parent: 1 type: Transform -- proto: LockerQuarterMasterFilled - entities: - - uid: 252 + - uid: 505 components: - - pos: 3.5,7.5 + - pos: 4.5,-7.5 parent: 1 type: Transform -- proto: LockerSyndicatePersonal +- proto: GunSafeShuttleT1Spawner entities: - - uid: 701 + - uid: 506 components: - pos: 8.5,6.5 parent: 1 type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 707 - - 706 - - 705 - - 704 - - 703 - - 702 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: MagazineBoxPistolRubber +- proto: Gyroscope entities: - - uid: 702 + - uid: 507 components: - - flags: InContainer - type: MetaData - - parent: 701 + - rot: -1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 705 + - uid: 508 components: - - flags: InContainer - type: MetaData - - parent: 701 + - pos: 5.5,7.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazinePistolHighCapacity +- proto: LockerCaptainFilled entities: - - uid: 706 + - uid: 509 components: - - flags: InContainer - type: MetaData - - parent: 701 + - pos: -0.5,10.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MagazinePistolHighCapacityRubber +- proto: LockerMercenaryFilled entities: - - uid: 703 + - uid: 510 components: - - flags: InContainer - type: MetaData - - parent: 701 + - pos: 11.5,9.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: MercenaryPDA +- proto: LockerQuarterMasterFilled entities: - - uid: 782 + - uid: 511 components: - - pos: 11.765716,7.7453017 + - pos: 3.5,7.5 parent: 1 type: Transform - proto: Multitool entities: - - uid: 432 + - uid: 512 components: - pos: 3.280076,1.401608 parent: 1 type: Transform - proto: PaperBin10 entities: - - uid: 734 + - uid: 513 components: - pos: 2.5,9.5 parent: 1 type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 735 + - uid: 514 components: - pos: 2.7378893,9.95162 parent: 1 type: Transform - - uid: 736 + - uid: 515 components: - pos: 2.5035143,9.95162 parent: 1 type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 296 + - uid: 516 components: - rot: 1.5707963267948966 rad pos: -13.5,4.5 parent: 1 type: Transform - - uid: 352 + - uid: 517 components: - rot: 1.5707963267948966 rad pos: 14.5,4.5 @@ -4072,7 +4284,7 @@ entities: type: Transform - proto: PosterContrabandBreadLies entities: - - uid: 203 + - uid: 518 components: - rot: 3.141592653589793 rad pos: -0.5,11.5 @@ -4080,7 +4292,7 @@ entities: type: Transform - proto: PosterContrabandHaveaPuff entities: - - uid: 206 + - uid: 519 components: - rot: 3.141592653589793 rad pos: 8.5,10.5 @@ -4088,7 +4300,7 @@ entities: type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 461 + - uid: 520 components: - rot: 1.5707963267948966 rad pos: 7.5,5.5 @@ -4096,7 +4308,7 @@ entities: type: Transform - proto: PosterLegitBuild entities: - - uid: 233 + - uid: 521 components: - rot: 1.5707963267948966 rad pos: -6.5,5.5 @@ -4104,7 +4316,7 @@ entities: type: Transform - proto: PosterLegitCarpMount entities: - - uid: 129 + - uid: 522 components: - rot: 3.141592653589793 rad pos: 1.5,8.5 @@ -4112,7 +4324,7 @@ entities: type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 207 + - uid: 523 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -4120,7 +4332,7 @@ entities: type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 208 + - uid: 524 components: - rot: 3.141592653589793 rad pos: 4.5,6.5 @@ -4128,7 +4340,7 @@ entities: type: Transform - proto: PosterLegitNoTouching entities: - - uid: 125 + - uid: 525 components: - rot: 3.141592653589793 rad pos: -6.5,10.5 @@ -4136,7 +4348,7 @@ entities: type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 127 + - uid: 526 components: - rot: 3.141592653589793 rad pos: -3.5,6.5 @@ -4144,7 +4356,7 @@ entities: type: Transform - proto: PosterLegitSecWatch entities: - - uid: 128 + - uid: 527 components: - rot: 3.141592653589793 rad pos: 10.5,6.5 @@ -4152,7 +4364,7 @@ entities: type: Transform - proto: PosterLegitSMHardhats entities: - - uid: 126 + - uid: 528 components: - rot: 3.141592653589793 rad pos: -4.5,9.5 @@ -4160,465 +4372,482 @@ entities: type: Transform - proto: Poweredlight entities: - - uid: 74 + - uid: 529 components: - pos: 2.5,10.5 parent: 1 type: Transform - - uid: 97 + - uid: 530 components: - pos: 0.5,7.5 parent: 1 type: Transform - - uid: 231 + - uid: 531 components: - rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 1 type: Transform - - uid: 383 + - uid: 532 components: - rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 type: Transform - - uid: 384 + - uid: 533 components: - pos: -6.5,9.5 parent: 1 type: Transform - - uid: 385 + - uid: 534 + components: + - pos: -10.5,5.5 + parent: 1 + type: Transform + - uid: 535 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 536 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 537 components: - - pos: -10.5,5.5 + - pos: 11.5,5.5 parent: 1 type: Transform - - uid: 390 + - uid: 538 components: - - pos: -0.5,-0.5 + - pos: 7.5,9.5 parent: 1 type: Transform - - uid: 393 + - uid: 797 components: - - rot: -1.5707963267948966 rad - pos: 6.5,1.5 + - rot: 3.141592653589793 rad + pos: -1.5,-6.5 parent: 1 type: Transform - - uid: 398 + - uid: 798 components: - rot: 3.141592653589793 rad - pos: -4.5,-6.5 + pos: 7.5,-6.5 parent: 1 type: Transform - - uid: 399 + - uid: 799 components: - rot: 3.141592653589793 rad - pos: 5.5,-6.5 + pos: -6.5,-6.5 parent: 1 type: Transform - - uid: 400 + - uid: 800 components: - - pos: 11.5,5.5 + - pos: -10.5,-4.5 parent: 1 type: Transform - - uid: 402 + - uid: 801 components: - - pos: 7.5,9.5 + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 802 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-6.5 parent: 1 type: Transform - proto: PoweredSmallLight entities: - - uid: 401 + - uid: 539 components: - rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 1 type: Transform - - uid: 428 + - uid: 540 components: - rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 1 type: Transform - - uid: 462 + - uid: 541 components: - rot: 3.141592653589793 rad pos: 9.5,1.5 parent: 1 type: Transform - - uid: 463 + - uid: 542 components: - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 1 type: Transform + - uid: 803 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform - proto: Rack entities: - - uid: 2 + - uid: 543 components: - pos: 13.5,5.5 parent: 1 type: Transform - - uid: 167 + - uid: 544 components: - pos: -0.5,3.5 parent: 1 type: Transform - - uid: 168 + - uid: 545 components: - pos: 0.5,3.5 parent: 1 type: Transform - - uid: 172 + - uid: 546 components: - pos: 3.5,1.5 parent: 1 type: Transform - - uid: 173 + - uid: 547 components: - pos: 2.5,1.5 parent: 1 type: Transform - - uid: 196 + - uid: 548 components: - pos: 1.5,3.5 parent: 1 type: Transform - - uid: 197 + - uid: 549 components: - pos: -3.5,5.5 parent: 1 type: Transform - - uid: 198 + - uid: 550 components: - pos: -12.5,5.5 parent: 1 type: Transform - - uid: 199 + - uid: 551 components: - pos: -11.5,5.5 parent: 1 type: Transform - - uid: 200 + - uid: 552 components: - pos: -1.5,1.5 parent: 1 type: Transform - - uid: 202 + - uid: 553 components: - pos: -2.5,1.5 parent: 1 type: Transform - - uid: 386 + - uid: 554 components: - pos: 12.5,5.5 parent: 1 type: Transform - - uid: 770 +- proto: ReinforcedWindow + entities: + - uid: 555 components: - - pos: 11.5,9.5 + - pos: -4.5,-7.5 parent: 1 type: Transform - - uid: 771 + - uid: 556 components: - - pos: 11.5,8.5 + - pos: 4.5,-7.5 parent: 1 type: Transform - - uid: 772 + - uid: 557 components: - - pos: 11.5,7.5 + - pos: -8.5,-7.5 parent: 1 type: Transform -- proto: RandomCargoSpawner - entities: - - uid: 804 + - uid: 558 components: - - pos: -1.5,3.5 + - pos: -10.5,-7.5 parent: 1 type: Transform - - uid: 805 + - uid: 559 components: - - pos: 1.5,4.5 + - pos: 8.5,-7.5 parent: 1 type: Transform - - uid: 806 + - uid: 560 components: - - pos: 2.5,2.5 + - pos: -2.5,-7.5 parent: 1 type: Transform -- proto: SalvageCanisterSpawner - entities: - - uid: 824 + - uid: 561 components: - - pos: -0.5,7.5 + - pos: 5.5,-7.5 parent: 1 type: Transform - - uid: 825 + - uid: 562 components: - - pos: 0.5,7.5 + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 563 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform + - uid: 564 + components: + - pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 565 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 566 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 567 + components: + - pos: 9.5,-7.5 + parent: 1 + type: Transform + - uid: 568 + components: + - pos: 11.5,-7.5 parent: 1 type: Transform - proto: SalvageShuttleMarker entities: - - uid: 809 + - uid: 569 components: - pos: 0.5,-1.5 parent: 1 type: Transform - proto: ShuttersNormal entities: - - uid: 164 + - uid: 570 components: - pos: -0.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - - uid: 165 + - uid: 571 components: - pos: 0.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - - uid: 166 + - uid: 572 components: - pos: 1.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - - uid: 194 + - uid: 573 components: - pos: 3.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - - uid: 201 + - uid: 574 components: - pos: -1.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - - uid: 300 + - uid: 575 components: - pos: -2.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - - uid: 301 + - uid: 576 components: - pos: 2.5,-3.5 parent: 1 type: Transform - links: - - 169 + - 591 type: DeviceLinkSink - proto: ShuttleWindow entities: - - uid: 13 + - uid: 577 components: - rot: 3.141592653589793 rad pos: 1.5,14.5 parent: 1 type: Transform - - uid: 22 + - uid: 578 components: - rot: 3.141592653589793 rad pos: 1.5,13.5 parent: 1 type: Transform - - uid: 26 + - uid: 579 components: - rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 1 type: Transform - - uid: 28 + - uid: 580 components: - rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 1 type: Transform - - uid: 30 + - uid: 581 components: - rot: 3.141592653589793 rad pos: -0.5,14.5 parent: 1 type: Transform - - uid: 32 + - uid: 582 components: - rot: 3.141592653589793 rad pos: 2.5,13.5 parent: 1 type: Transform - - uid: 38 + - uid: 583 components: - rot: 3.141592653589793 rad pos: 0.5,14.5 parent: 1 type: Transform - - uid: 41 + - uid: 584 components: - rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 1 type: Transform - - uid: 42 + - uid: 585 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 parent: 1 type: Transform - - uid: 49 + - uid: 586 components: - rot: 3.141592653589793 rad pos: -1.5,0.5 parent: 1 type: Transform - - uid: 50 + - uid: 587 components: - rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 1 type: Transform - - uid: 51 + - uid: 588 components: - rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 1 type: Transform - - uid: 52 + - uid: 589 components: - rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 type: Transform - - uid: 64 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 139 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 217 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 220 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 238 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - uid: 333 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 392 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - proto: SignalButton entities: - - uid: 68 + - uid: 590 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 1 type: Transform - linkedPorts: - 175: + 4: - Pressed: DoorBolt - 323: + 7: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 169 + - uid: 591 components: - pos: 1.5,0.5 parent: 1 type: Transform - linkedPorts: - 300: + 575: - Pressed: Toggle - 201: + 574: - Pressed: Toggle - 164: + 570: - Pressed: Toggle - 165: + 571: - Pressed: Toggle - 166: + 572: - Pressed: Toggle - 301: + 576: - Pressed: Toggle - 194: + 573: - Pressed: Toggle type: DeviceLinkSource - - uid: 209 + - uid: 592 components: - rot: -1.5707963267948966 rad pos: 7.5,4.5 parent: 1 type: Transform - linkedPorts: - 191: + 26: - Pressed: DoorBolt - 17: + 22: - Pressed: DoorBolt - 226: + 31: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 223 + - uid: 593 components: - rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 1 type: Transform - linkedPorts: - 315: + 6: - Pressed: DoorBolt - 3: + 2: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 224 + - uid: 594 components: - rot: 1.5707963267948966 rad pos: -6.5,4.5 parent: 1 type: Transform - linkedPorts: - 245: + 33: - Pressed: DoorBolt - 246: + 34: - Pressed: DoorBolt - 247: + 35: - Pressed: DoorBolt type: DeviceLinkSource - proto: SignalButtonExt1 entities: - - uid: 227 + - uid: 595 components: - rot: 3.141592653589793 rad pos: 12.5,0.5 @@ -4626,7 +4855,7 @@ entities: type: Transform - proto: SignalButtonExt3 entities: - - uid: 11 + - uid: 596 components: - rot: 3.141592653589793 rad pos: -11.5,0.5 @@ -4634,7 +4863,7 @@ entities: type: Transform - proto: SignArmory entities: - - uid: 708 + - uid: 597 components: - rot: 1.5707963267948966 rad pos: 5.5,6.5 @@ -4642,64 +4871,52 @@ entities: type: Transform - proto: SignBridge entities: - - uid: 835 + - uid: 598 components: - pos: 1.5,11.5 parent: 1 type: Transform - proto: SignCanisters entities: - - uid: 827 + - uid: 599 components: - pos: 0.5,8.5 parent: 1 type: Transform - proto: SignCargoDock entities: - - uid: 20 + - uid: 600 components: - rot: 1.5707963267948966 rad pos: 14.5,0.5 parent: 1 type: Transform - - uid: 285 + - uid: 601 components: - pos: -13.5,5.5 parent: 1 type: Transform - - uid: 293 + - uid: 602 components: - pos: 14.5,5.5 parent: 1 type: Transform - proto: SignElectrical entities: - - uid: 836 + - uid: 603 components: - pos: -4.5,6.5 parent: 1 type: Transform - proto: SignShipDock entities: - - uid: 8 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 61 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 160 + - uid: 604 components: - rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 1 type: Transform - - uid: 162 + - uid: 605 components: - rot: 3.141592653589793 rad pos: 6.5,-3.5 @@ -4707,187 +4924,173 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 188 + - uid: 606 components: - pos: -4.5,8.5 parent: 1 type: Transform - - uid: 372 + - uid: 607 components: - pos: -4.5,7.5 parent: 1 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 813 + - uid: 608 components: - pos: -3.5,3.5 parent: 1 type: Transform - - uid: 814 + - uid: 609 components: - pos: 4.5,3.5 parent: 1 type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 132 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 133 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 1 - type: Transform - proto: SpawnPointMercenary entities: - - uid: 769 + - uid: 610 components: - pos: 8.5,8.5 parent: 1 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 405 + - uid: 611 components: - pos: 0.5,5.5 parent: 1 type: Transform - proto: SpawnPointServiceWorker entities: - - uid: 815 + - uid: 612 components: - pos: 0.5,-2.5 parent: 1 type: Transform - proto: StorageCanister entities: - - uid: 430 - components: - - pos: -7.5,4.5 - parent: 1 - type: Transform - - uid: 828 + - uid: 613 components: - - pos: 1.2257242,2.9318476 + - pos: 0.5,7.5 parent: 1 type: Transform - - uid: 829 + - uid: 614 components: - - pos: -0.5,4.5 + - pos: 1.5,7.5 parent: 1 type: Transform -- proto: Stunbaton - entities: - - uid: 796 + - uid: 615 components: - - pos: 7.48326,9.558851 + - pos: -7.5,4.5 parent: 1 type: Transform - proto: SubstationBasic entities: - - uid: 374 + - uid: 616 components: - pos: -7.5,6.5 parent: 1 type: Transform - proto: SuitStorageBasic entities: - - uid: 163 + - uid: 617 components: - pos: -2.5,7.5 parent: 1 type: Transform +- proto: SuitStorageMercenary + entities: + - uid: 618 + components: + - pos: 10.5,9.5 + parent: 1 + type: Transform - proto: Table entities: - - uid: 787 + - uid: 619 components: - pos: 1.5,-0.5 parent: 1 type: Transform - - uid: 788 + - uid: 620 components: - pos: 2.5,-0.5 parent: 1 type: Transform - - uid: 789 + - uid: 621 components: - pos: 3.5,-0.5 parent: 1 type: Transform - - uid: 790 + - uid: 622 components: - pos: -0.5,-0.5 parent: 1 type: Transform - - uid: 791 + - uid: 623 components: - pos: -1.5,-0.5 parent: 1 type: Transform - - uid: 792 + - uid: 624 components: - pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 793 + - uid: 625 components: - pos: 7.5,9.5 parent: 1 type: Transform - - uid: 794 + - uid: 626 components: - pos: 8.5,9.5 parent: 1 type: Transform - - uid: 795 + - uid: 627 components: - pos: 9.5,9.5 parent: 1 type: Transform - proto: TableCounterMetal entities: - - uid: 14 + - uid: 628 components: - rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 1 type: Transform - - uid: 112 + - uid: 629 components: - rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 type: Transform - - uid: 113 + - uid: 630 components: - rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 1 type: Transform - - uid: 114 + - uid: 631 components: - rot: 3.141592653589793 rad pos: -1.5,-3.5 parent: 1 type: Transform - - uid: 115 + - uid: 632 components: - rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 1 type: Transform - - uid: 116 + - uid: 633 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 1 type: Transform - - uid: 118 + - uid: 634 components: - rot: 3.141592653589793 rad pos: -2.5,-3.5 @@ -4895,772 +5098,870 @@ entities: type: Transform - proto: TableReinforcedGlass entities: - - uid: 785 + - uid: 635 components: - pos: 2.5,10.5 parent: 1 type: Transform - - uid: 786 + - uid: 636 components: - pos: 2.5,9.5 parent: 1 type: Transform - proto: Thruster entities: - - uid: 66 + - uid: 637 components: - rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 1 type: Transform - - uid: 276 + - uid: 638 components: - rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 1 type: Transform - - uid: 279 + - uid: 639 components: - rot: -1.5707963267948966 rad pos: -8.5,-0.5 parent: 1 type: Transform - - uid: 286 + - uid: 640 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 1 type: Transform - - uid: 288 + - uid: 641 components: - rot: 1.5707963267948966 rad pos: -11.5,-0.5 parent: 1 type: Transform - - uid: 330 + - uid: 642 components: - rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 1 type: Transform - - uid: 346 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - uid: 348 + - uid: 643 components: - rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 1 type: Transform - - uid: 354 + - uid: 644 components: - rot: 3.141592653589793 rad pos: 11.5,-0.5 parent: 1 type: Transform - - uid: 355 + - uid: 645 components: - - rot: 3.141592653589793 rad - pos: 3.5,-8.5 + - pos: -4.5,10.5 parent: 1 type: Transform - - uid: 464 + - uid: 646 components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 + - pos: -3.5,10.5 parent: 1 type: Transform - - uid: 465 + - uid: 647 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 + - pos: 5.5,10.5 parent: 1 type: Transform - - uid: 467 + - uid: 648 components: - - rot: 3.141592653589793 rad - pos: -1.5,-8.5 + - pos: 4.5,10.5 parent: 1 type: Transform - - uid: 468 + - uid: 885 components: - rot: 3.141592653589793 rad - pos: -0.5,-8.5 + pos: -2.5,-9.5 parent: 1 type: Transform - - uid: 469 + - uid: 886 components: - rot: 3.141592653589793 rad - pos: 1.5,-8.5 + pos: -3.5,-8.5 parent: 1 type: Transform - - uid: 470 + - uid: 887 components: - rot: 3.141592653589793 rad - pos: 2.5,-8.5 + pos: 3.5,-9.5 parent: 1 type: Transform - - uid: 479 + - uid: 888 components: - rot: 3.141592653589793 rad - pos: -2.5,-8.5 + pos: 4.5,-8.5 parent: 1 type: Transform - - uid: 709 + - uid: 897 components: - - pos: -4.5,10.5 + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 parent: 1 type: Transform - - uid: 710 + - uid: 898 components: - - pos: -3.5,10.5 + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 parent: 1 type: Transform - - uid: 711 + - uid: 899 components: - - pos: 5.5,10.5 + - rot: 3.141592653589793 rad + pos: -9.5,-8.5 parent: 1 type: Transform - - uid: 712 + - uid: 900 components: - - pos: 4.5,10.5 + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 parent: 1 type: Transform - proto: TwoWayLever entities: - - uid: 396 + - uid: 649 components: - pos: -9.5,5.5 parent: 1 type: Transform - linkedPorts: - 273: + 352: - Left: Reverse - Right: Forward - Middle: Off - 272: + 351: - Left: Reverse - Right: Forward - Middle: Off - 274: + 353: - Left: Reverse - Right: Forward - Middle: Off type: DeviceLinkSource - - uid: 431 + - uid: 650 components: - pos: 10.5,5.5 parent: 1 type: Transform - linkedPorts: - 270: + 349: - Left: Forward - Right: Reverse - Middle: Off - 271: + 350: - Left: Forward - Right: Reverse - Middle: Off - 268: + 348: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - proto: WallShuttle entities: - - uid: 4 + - uid: 651 components: - rot: 1.5707963267948966 rad pos: 2.5,8.5 parent: 1 type: Transform - - uid: 7 + - uid: 652 components: - rot: 1.5707963267948966 rad pos: -13.5,5.5 parent: 1 type: Transform - - uid: 9 + - uid: 653 components: - - rot: 3.141592653589793 rad - pos: 6.5,-7.5 + - pos: -1.5,-7.5 parent: 1 type: Transform - - uid: 10 + - uid: 654 components: - rot: 1.5707963267948966 rad pos: -12.5,6.5 parent: 1 type: Transform - - uid: 16 + - uid: 655 components: - rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 1 type: Transform - - uid: 21 + - uid: 656 + components: + - pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 657 components: - rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 1 type: Transform - - uid: 24 + - uid: 658 components: - rot: 1.5707963267948966 rad pos: 11.5,6.5 parent: 1 type: Transform - - uid: 25 + - uid: 659 components: - rot: 1.5707963267948966 rad pos: 5.5,6.5 parent: 1 type: Transform - - uid: 27 + - uid: 660 components: - rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 type: Transform - - uid: 29 + - uid: 661 components: - pos: 8.5,5.5 parent: 1 type: Transform - - uid: 35 + - uid: 662 components: - rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 type: Transform - - uid: 36 + - uid: 663 components: - rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 1 type: Transform - - uid: 37 + - uid: 664 components: - rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 type: Transform - - uid: 45 + - uid: 665 components: - rot: -1.5707963267948966 rad pos: -3.5,-1.5 parent: 1 type: Transform - - uid: 46 + - uid: 666 components: - rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 1 type: Transform - - uid: 47 + - uid: 667 components: - rot: -1.5707963267948966 rad pos: -8.5,6.5 parent: 1 type: Transform - - uid: 48 + - uid: 668 components: - pos: 4.5,0.5 parent: 1 type: Transform - - uid: 53 + - uid: 669 components: - rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 type: Transform - - uid: 54 + - uid: 670 components: - pos: -3.5,7.5 parent: 1 type: Transform - - uid: 56 + - uid: 671 components: - pos: -3.5,0.5 parent: 1 type: Transform - - uid: 57 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 59 + - uid: 672 components: - rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 type: Transform - - uid: 60 + - uid: 673 components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 1 type: Transform - - uid: 62 + - uid: 674 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 type: Transform - - uid: 63 + - uid: 675 components: - pos: 9.5,5.5 parent: 1 type: Transform - - uid: 69 + - uid: 676 components: - rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 type: Transform - - uid: 73 + - uid: 677 components: - rot: 1.5707963267948966 rad pos: 10.5,6.5 parent: 1 type: Transform - - uid: 85 + - uid: 678 components: - rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 1 type: Transform - - uid: 96 + - uid: 679 components: - rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 type: Transform - - uid: 105 + - uid: 680 components: - rot: 1.5707963267948966 rad pos: -10.5,6.5 parent: 1 type: Transform - - uid: 109 + - uid: 681 + components: + - pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 682 components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 1 type: Transform - - uid: 110 + - uid: 683 components: - pos: 13.5,6.5 parent: 1 type: Transform - - uid: 117 + - uid: 684 components: - rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 1 type: Transform - - uid: 119 + - uid: 685 components: - rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 1 type: Transform - - uid: 120 + - uid: 686 components: - rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 type: Transform - - uid: 121 + - uid: 687 components: - rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 type: Transform - - uid: 122 + - uid: 688 components: - rot: 3.141592653589793 rad pos: -3.5,-2.5 parent: 1 type: Transform - - uid: 130 + - uid: 689 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 690 + components: + - pos: -1.5,-8.5 + parent: 1 + type: Transform + - uid: 691 + components: + - pos: 13.5,-7.5 + parent: 1 + type: Transform + - uid: 692 + components: + - pos: 12.5,-3.5 + parent: 1 + type: Transform + - uid: 693 + components: + - pos: -11.5,-3.5 + parent: 1 + type: Transform + - uid: 694 + components: + - pos: 9.5,-3.5 + parent: 1 + type: Transform + - uid: 695 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 696 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 697 + components: + - pos: -12.5,-7.5 + parent: 1 + type: Transform + - uid: 698 components: - - rot: 3.141592653589793 rad - pos: 4.5,-0.5 + - pos: -11.5,-7.5 parent: 1 type: Transform - - uid: 154 + - uid: 699 components: - pos: 8.5,0.5 parent: 1 type: Transform - - uid: 156 + - uid: 700 components: - pos: 9.5,0.5 parent: 1 type: Transform - - uid: 158 + - uid: 701 components: - pos: 13.5,0.5 parent: 1 type: Transform - - uid: 159 + - uid: 702 components: - pos: 14.5,0.5 parent: 1 type: Transform - - uid: 170 + - uid: 703 components: - rot: -1.5707963267948966 rad pos: 12.5,9.5 parent: 1 type: Transform - - uid: 171 + - uid: 704 components: - rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 1 type: Transform - - uid: 174 + - uid: 705 components: - rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 type: Transform - - uid: 176 + - uid: 706 components: - pos: 7.5,0.5 parent: 1 type: Transform - - uid: 177 + - uid: 707 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 type: Transform - - uid: 178 + - uid: 708 components: - pos: 9.5,10.5 parent: 1 type: Transform - - uid: 179 + - uid: 709 components: - pos: 14.5,5.5 parent: 1 type: Transform - - uid: 183 + - uid: 710 components: - pos: 12.5,0.5 parent: 1 type: Transform - - uid: 186 + - uid: 711 components: - rot: 1.5707963267948966 rad pos: -11.5,9.5 parent: 1 type: Transform - - uid: 187 + - uid: 712 components: - rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 1 type: Transform - - uid: 190 + - uid: 713 components: - pos: 8.5,10.5 parent: 1 type: Transform - - uid: 204 + - uid: 714 + components: + - pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 715 components: - rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 1 type: Transform - - uid: 205 + - uid: 716 components: - pos: -11.5,7.5 parent: 1 type: Transform - - uid: 218 + - uid: 717 components: - rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 1 type: Transform - - uid: 228 + - uid: 718 components: - rot: 3.141592653589793 rad pos: -5.5,-2.5 parent: 1 type: Transform - - uid: 229 + - uid: 719 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-7.5 + - pos: 12.5,-7.5 parent: 1 type: Transform - - uid: 249 + - uid: 720 + components: + - pos: 10.5,-3.5 + parent: 1 + type: Transform + - uid: 721 + components: + - pos: 11.5,-3.5 + parent: 1 + type: Transform + - uid: 722 components: - rot: 1.5707963267948966 rad pos: 12.5,6.5 parent: 1 type: Transform - - uid: 250 + - uid: 723 components: - rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 type: Transform - - uid: 251 + - uid: 724 components: - pos: -13.5,0.5 parent: 1 type: Transform - - uid: 254 + - uid: 725 + components: + - pos: 13.5,-3.5 + parent: 1 + type: Transform + - uid: 726 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 type: Transform - - uid: 255 + - uid: 727 components: - pos: -7.5,10.5 parent: 1 type: Transform - - uid: 257 + - uid: 728 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 1 type: Transform - - uid: 258 + - uid: 729 components: - pos: -6.5,10.5 parent: 1 type: Transform - - uid: 260 + - uid: 730 components: - rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 1 type: Transform - - uid: 261 + - uid: 731 components: - pos: 4.5,7.5 parent: 1 type: Transform - - uid: 262 + - uid: 732 components: - rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 type: Transform - - uid: 263 + - uid: 733 components: - rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 type: Transform - - uid: 264 + - uid: 734 components: - rot: -1.5707963267948966 rad pos: 10.5,10.5 parent: 1 type: Transform - - uid: 265 + - uid: 735 components: - rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 1 type: Transform - - uid: 266 + - uid: 736 components: - rot: -1.5707963267948966 rad pos: 11.5,10.5 parent: 1 type: Transform - - uid: 277 + - uid: 737 components: - pos: 12.5,7.5 parent: 1 type: Transform - - uid: 278 + - uid: 738 components: - pos: 7.5,10.5 parent: 1 type: Transform - - uid: 281 + - uid: 739 components: - pos: -8.5,10.5 parent: 1 type: Transform - - uid: 289 + - uid: 740 components: - rot: 3.141592653589793 rad pos: -5.5,-1.5 parent: 1 type: Transform - - uid: 290 + - uid: 741 components: - pos: -12.5,0.5 parent: 1 type: Transform - - uid: 291 + - uid: 742 components: - pos: -11.5,0.5 parent: 1 type: Transform - - uid: 295 + - uid: 743 components: - pos: -8.5,0.5 parent: 1 type: Transform - - uid: 297 + - uid: 744 components: - pos: -7.5,0.5 parent: 1 type: Transform - - uid: 299 + - uid: 745 components: - pos: -6.5,0.5 parent: 1 type: Transform - - uid: 309 + - uid: 746 + components: + - pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 747 + components: + - pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 748 components: - rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 1 type: Transform - - uid: 316 + - uid: 749 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 750 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 1 type: Transform - - uid: 320 + - uid: 751 components: - rot: 3.141592653589793 rad pos: 7.5,4.5 parent: 1 type: Transform - - uid: 321 + - uid: 752 components: - rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 1 type: Transform - - uid: 324 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - uid: 340 + - uid: 753 components: - rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 1 type: Transform - - uid: 341 + - uid: 754 components: - rot: 3.141592653589793 rad pos: 1.5,11.5 parent: 1 type: Transform - - uid: 342 + - uid: 755 components: - rot: 3.141592653589793 rad pos: -0.5,11.5 parent: 1 type: Transform - - uid: 345 + - uid: 756 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 + - pos: -9.5,-3.5 parent: 1 type: Transform - - uid: 350 + - uid: 757 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 758 components: - rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 1 type: Transform - - uid: 351 + - uid: 759 components: - rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 type: Transform - - uid: 353 + - uid: 760 components: - rot: 1.5707963267948966 rad pos: -4.5,9.5 parent: 1 type: Transform - - uid: 365 + - uid: 761 components: - rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 type: Transform - - uid: 369 + - uid: 762 components: - rot: 3.141592653589793 rad pos: -7.5,5.5 parent: 1 type: Transform - - uid: 381 + - uid: 763 components: - rot: 1.5707963267948966 rad pos: -0.5,8.5 parent: 1 type: Transform - - uid: 382 + - uid: 764 components: - rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 1 type: Transform - - uid: 387 + - uid: 765 components: - rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 1 type: Transform - - uid: 388 + - uid: 766 components: - rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 1 type: Transform - - uid: 389 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 403 + - uid: 767 components: - pos: 7.5,6.5 parent: 1 type: Transform - - uid: 406 + - uid: 768 components: - rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 1 type: Transform - - uid: 697 + - uid: 769 + components: + - pos: -12.5,-3.5 + parent: 1 + type: Transform + - uid: 770 + components: + - pos: -10.5,-3.5 + parent: 1 + type: Transform + - uid: 771 + components: + - pos: -8.5,-3.5 + parent: 1 + type: Transform + - uid: 772 + components: + - pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 773 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 774 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 775 components: - rot: 1.5707963267948966 rad pos: -6.5,6.5 parent: 1 type: Transform - - uid: 698 + - uid: 776 components: - rot: 1.5707963267948966 rad pos: -4.5,6.5 @@ -5668,91 +5969,91 @@ entities: type: Transform - proto: WallShuttleDiagonal entities: - - uid: 12 + - uid: 777 components: - rot: -1.5707963267948966 rad pos: -5.5,10.5 parent: 1 type: Transform - - uid: 39 + - uid: 778 components: - pos: -2.5,11.5 parent: 1 type: Transform - - uid: 55 + - uid: 779 components: - pos: -13.5,6.5 parent: 1 type: Transform - - uid: 107 + - uid: 780 components: - pos: -11.5,10.5 parent: 1 type: Transform - - uid: 155 + - uid: 781 components: - rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 type: Transform - - uid: 180 + - uid: 782 components: - rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 type: Transform - - uid: 181 + - uid: 783 components: - rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 type: Transform - - uid: 256 + - uid: 784 components: - pos: -12.5,7.5 parent: 1 type: Transform - - uid: 259 + - uid: 785 components: - pos: 6.5,10.5 parent: 1 type: Transform - - uid: 267 + - uid: 786 components: - rot: -1.5707963267948966 rad pos: 14.5,6.5 parent: 1 type: Transform - - uid: 269 + - uid: 787 components: - rot: -1.5707963267948966 rad pos: 13.5,7.5 parent: 1 type: Transform - - uid: 282 + - uid: 788 components: - rot: -1.5707963267948966 rad pos: 12.5,10.5 parent: 1 type: Transform - - uid: 283 + - uid: 789 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 parent: 1 type: Transform - - uid: 322 + - uid: 790 components: - pos: 6.5,0.5 parent: 1 type: Transform - - uid: 334 + - uid: 791 components: - rot: -1.5707963267948966 rad pos: -5.5,0.5 parent: 1 type: Transform - - uid: 339 + - uid: 792 components: - rot: -1.5707963267948966 rad pos: 3.5,11.5 @@ -5760,43 +6061,21 @@ entities: type: Transform - proto: WarpPointShip entities: - - uid: 810 + - uid: 793 components: - pos: 0.5,-1.5 parent: 1 type: Transform - proto: WaterTankFull entities: - - uid: 834 + - uid: 794 components: - pos: 4.5,5.5 parent: 1 type: Transform -- proto: WeaponMakeshiftLaser - entities: - - uid: 704 - components: - - flags: InContainer - type: MetaData - - parent: 701 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponPistolMk58Nonlethal - entities: - - uid: 707 - components: - - flags: InContainer - type: MetaData - - parent: 701 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: WindoorSecure entities: - - uid: 131 + - uid: 795 components: - rot: 3.141592653589793 rad pos: 0.5,0.5 @@ -5804,7 +6083,7 @@ entities: type: Transform - proto: Wrench entities: - - uid: 439 + - uid: 796 components: - rot: -1.5707963267948966 rad pos: -1.8913469,1.5257092 diff --git a/Resources/Maps/Shuttles/gourd.yml b/Resources/Maps/_NF/Shuttles/gourd.yml similarity index 89% rename from Resources/Maps/Shuttles/gourd.yml rename to Resources/Maps/_NF/Shuttles/gourd.yml index 205072bc69b..1ca73515ced 100644 --- a/Resources/Maps/Shuttles/gourd.yml +++ b/Resources/Maps/_NF/Shuttles/gourd.yml @@ -4,16 +4,16 @@ meta: tilemap: 0: Space 12: FloorBar - 27: FloorDark - 32: FloorDarkMono - 43: FloorGlass - 58: FloorKitchen - 92: FloorSteelMono - 100: FloorWhite - 105: FloorWhiteMono - 110: FloorWood - 112: Lattice - 113: Plating + 28: FloorDark + 33: FloorDarkMono + 44: FloorGlass + 59: FloorKitchen + 93: FloorSteelMono + 101: FloorWhite + 106: FloorWhiteMono + 111: FloorWood + 113: Lattice + 114: Plating entities: - proto: "" entities: @@ -28,35 +28,35 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: GwAAAAAAGwAAAAACGwAAAAABcAAAAAAAGwAAAAADIAAAAAACXAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAADXAAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcAAAAAAAcQAAAAAAIAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAABXAAAAAABXAAAAAACXAAAAAABXAAAAAADcAAAAAAAcAAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAIAAAAAABIAAAAAACIAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAAAcQAAAAAAIAAAAAABIAAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAADcQAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAGwAAAAAAGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADKwAAAAABKwAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAACKwAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAACKwAAAAACbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HAAAAAADHAAAAAACHAAAAAAAcQAAAAAAHAAAAAABIQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAcgAAAAAAcgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAcQAAAAAAcgAAAAAAIQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADcQAAAAAAcQAAAAAAHAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAAAHAAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAZQAAAAABZQAAAAABZQAAAAACZQAAAAABZQAAAAADZQAAAAADIQAAAAABIQAAAAACIQAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAACcgAAAAAAIQAAAAABIQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAABcgAAAAAAHAAAAAADcgAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAIQAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACcgAAAAAAHAAAAAACcgAAAAAAHAAAAAADcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAABbwAAAAADcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAADbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAAAbwAAAAACbwAAAAADbwAAAAACcgAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAABbwAAAAABbwAAAAAAbwAAAAABcgAAAAAAHAAAAAADHAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAADLAAAAAAALAAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACcgAAAAAAHAAAAAADHAAAAAACHAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAADLAAAAAADLAAAAAADbwAAAAACbwAAAAAAbwAAAAADbwAAAAABbwAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAABLAAAAAACbwAAAAACbwAAAAACbwAAAAAAbwAAAAAAbwAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAcQAAAAAAcQAAAAAAaQAAAAADaQAAAAACaQAAAAACaQAAAAABaQAAAAACaQAAAAACaQAAAAADaQAAAAAAIAAAAAADGwAAAAADcAAAAAAAGwAAAAAAGwAAAAACAAAAAAAAcAAAAAAAcAAAAAAAaQAAAAAAaQAAAAABaQAAAAADaQAAAAACaQAAAAADaQAAAAAAaQAAAAACaQAAAAACIAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAaQAAAAAAaQAAAAADaQAAAAACaQAAAAADaQAAAAABaQAAAAAAaQAAAAABaQAAAAAAaQAAAAADcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAaQAAAAAAaQAAAAADaQAAAAAAaQAAAAADaQAAAAADaQAAAAACaQAAAAABaQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIAAAAAADIAAAAAAAIAAAAAACZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAcQAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAIAAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABcQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAZAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAADGwAAAAACcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABKwAAAAABKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAABbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAABKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAABKwAAAAACKwAAAAAA + tiles: cQAAAAAAcgAAAAAAcgAAAAAAagAAAAACagAAAAACagAAAAACagAAAAADagAAAAACagAAAAADagAAAAAAagAAAAAAIQAAAAACHAAAAAABcQAAAAAAHAAAAAAAHAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAagAAAAACagAAAAADagAAAAACagAAAAAAagAAAAAAagAAAAADagAAAAACagAAAAADIQAAAAACcgAAAAAAcQAAAAAAcQAAAAAAHAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAagAAAAAAagAAAAAAagAAAAACagAAAAADagAAAAACagAAAAADagAAAAAAagAAAAAAagAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAagAAAAADagAAAAACagAAAAACagAAAAACagAAAAACagAAAAABagAAAAAAagAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIQAAAAABIQAAAAACIQAAAAABZQAAAAACZQAAAAADZQAAAAABZQAAAAADZQAAAAAAZQAAAAACZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAADIQAAAAACIQAAAAABcgAAAAAAZQAAAAABZQAAAAAAZQAAAAACZQAAAAABZQAAAAADZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAIQAAAAACcgAAAAAAcgAAAAAAHAAAAAABcgAAAAAAHAAAAAABcgAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAHAAAAAACcgAAAAAAHAAAAAADcgAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAbwAAAAAAbwAAAAADcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAACbwAAAAACbwAAAAADbwAAAAADbwAAAAABbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAADcgAAAAAAbwAAAAABbwAAAAAAbwAAAAADbwAAAAABbwAAAAADbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAABcgAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAADbwAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAACHAAAAAACHAAAAAACcgAAAAAAbwAAAAAAbwAAAAACbwAAAAABbwAAAAACLAAAAAABLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAACbwAAAAAAbwAAAAADbwAAAAAAbwAAAAAAbwAAAAAALAAAAAACLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABbwAAAAADbwAAAAABbwAAAAADbwAAAAABbwAAAAABLAAAAAACLAAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAGwAAAAADGwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADGwAAAAABGwAAAAACGwAAAAABcQAAAAAAGwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACGwAAAAACGwAAAAADGwAAAAACcQAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAADGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAADXAAAAAADXAAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAADXAAAAAADXAAAAAACGwAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAABXAAAAAADGwAAAAABAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAABcQAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAABGwAAAAADAAAAAAAAGwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAADGwAAAAACcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAABXAAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAADXAAAAAACXAAAAAADcAAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABcgAAAAAAHAAAAAABHAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADHAAAAAAAHAAAAAACHAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACHAAAAAACHAAAAAAAHAAAAAADcgAAAAAAHAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHAAAAAACHAAAAAACHAAAAAACcgAAAAAAIQAAAAADIQAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABHAAAAAAAHAAAAAAAHAAAAAACcgAAAAAAIQAAAAABIQAAAAADIQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAADIQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACHAAAAAABHAAAAAACHAAAAAACcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAAAcgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABHAAAAAADAAAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACcgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACHAAAAAACAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABHAAAAAABcgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADHAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAABXQAAAAAAcgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABHAAAAAAAAAAAAAAAHAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAXQAAAAADXQAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXQAAAAAAHAAAAAACcgAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADcQAAAAAAcgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABXAAAAAACXAAAAAADXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGwAAAAADcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAXAAAAAABXAAAAAACXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAXAAAAAABXAAAAAADXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACXAAAAAABXAAAAAACXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACXAAAAAACXAAAAAABXAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADXAAAAAACXAAAAAADXAAAAAABAAAAAAAAAAAAAAAAcAAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAADaQAAAAABaQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAaQAAAAAAaQAAAAADaQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAaQAAAAACaQAAAAAAaQAAAAACaQAAAAAAaQAAAAADaQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAaQAAAAAAaQAAAAACcQAAAAAAaQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAABaQAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAaQAAAAADaQAAAAAAaQAAAAADaQAAAAAAaQAAAAAAaQAAAAABcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAaQAAAAADaQAAAAAAaQAAAAADaQAAAAABaQAAAAAAaQAAAAABaQAAAAABaQAAAAACIAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAADcgAAAAAAcgAAAAAAHAAAAAABHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAHAAAAAABHAAAAAADHAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAcgAAAAAAHAAAAAAAHAAAAAABHAAAAAACXQAAAAADXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAADcgAAAAAAHAAAAAAAHAAAAAACHAAAAAACXQAAAAACXQAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIQAAAAADIQAAAAABIQAAAAABcgAAAAAAHAAAAAADHAAAAAACHAAAAAACXQAAAAADXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIQAAAAABIQAAAAABIQAAAAADIQAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAACXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAHAAAAAABHAAAAAACHAAAAAADXQAAAAABXQAAAAADXQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAagAAAAADagAAAAACagAAAAADagAAAAABagAAAAADagAAAAADcgAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAagAAAAACagAAAAAAagAAAAABagAAAAABagAAAAABagAAAAAAcgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAagAAAAABagAAAAABagAAAAABagAAAAADagAAAAACagAAAAADcgAAAAAAHAAAAAADHAAAAAABcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAagAAAAAAagAAAAACcgAAAAAAagAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAAAagAAAAADcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAABagAAAAABagAAAAAAagAAAAADagAAAAAAagAAAAACcgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAagAAAAAAagAAAAACagAAAAADagAAAAABagAAAAADagAAAAADagAAAAACagAAAAABIQAAAAACcgAAAAAAcQAAAAAAcQAAAAAAHAAAAAAD version: 6 0,1: ind: 0,1 - tiles: KwAAAAACKwAAAAAAKwAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAACcQAAAAAAGwAAAAABGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACKwAAAAADKwAAAAAAKwAAAAABKwAAAAACKwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACKwAAAAAAKwAAAAAAKwAAAAADKwAAAAAAKwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACKwAAAAADKwAAAAADKwAAAAABKwAAAAABKwAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAABKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADKwAAAAABKwAAAAADKwAAAAACKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACKwAAAAADKwAAAAABKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: LAAAAAABLAAAAAADLAAAAAACbwAAAAADbwAAAAACbwAAAAACbwAAAAADbwAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADHAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAACbwAAAAACbwAAAAAAbwAAAAABcgAAAAAAHAAAAAABHAAAAAADHAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAAAbwAAAAACbwAAAAACbwAAAAADcgAAAAAAHAAAAAABHAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAACcgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcgAAAAAAHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACcgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACcgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAACGwAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAADKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAcQAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAADcQAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAABcQAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADAAAAAADDAAAAAADDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAAADAAAAAADbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAAAcQAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAADKwAAAAABKwAAAAAAKwAAAAABKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAKwAAAAADKwAAAAADKwAAAAADKwAAAAADKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAADKwAAAAAAKwAAAAABKwAAAAADKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAACKwAAAAADKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACKwAAAAAAKwAAAAACKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAACbwAAAAABbwAAAAAAbwAAAAABbwAAAAADbwAAAAABLAAAAAADLAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAACHAAAAAAAcgAAAAAAbwAAAAABbwAAAAACbwAAAAACbwAAAAACbwAAAAABbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAACHAAAAAAAcgAAAAAAbwAAAAABbwAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAAAcgAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAACcgAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAACcgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAABDAAAAAACDAAAAAADbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAABDAAAAAABDAAAAAAAcgAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAADAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAADLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -134,7 +134,6 @@ entities: decals: 96: -5,1 97: -5,-1 - 245: 0,4 - node: color: '#FFFFFFFF' id: StandClear @@ -586,9 +585,7 @@ entities: 0: 0,2 1: 0,-2 2: -2,0 - 3: 0,4 4: 4,0 - 5: 0,-4 6: 2,0 7: 0,2 8: -2,0 @@ -1166,8 +1163,7 @@ entities: -3,1: 0: 52991 2,5: - 0: 32255 - 1: 512 + 0: 32767 2,4: 0: 65535 2,3: @@ -1234,21 +1230,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 type: GridAtmosphere - type: GasTileOverlay @@ -1297,7 +1278,7 @@ entities: pos: 1.5,24.5 parent: 1 type: Transform - - secondsUntilStateChange: -976.7568 + - secondsUntilStateChange: -7538.5737 state: Opening type: Door - uid: 7 @@ -1306,7 +1287,7 @@ entities: pos: 0.5,24.5 parent: 1 type: Transform - - secondsUntilStateChange: -975.4066 + - secondsUntilStateChange: -7537.2236 state: Opening type: Door - uid: 8 @@ -1315,7 +1296,7 @@ entities: pos: -0.5,24.5 parent: 1 type: Transform - - secondsUntilStateChange: -974.9732 + - secondsUntilStateChange: -7536.7905 state: Opening type: Door - proto: AirlockEngineeringGlass @@ -1386,7 +1367,7 @@ entities: - pos: 2.5,21.5 parent: 1 type: Transform - - secondsUntilStateChange: -6497.032 + - secondsUntilStateChange: -13058.85 state: Opening type: Door - uid: 20 @@ -1394,7 +1375,7 @@ entities: - pos: -1.5,21.5 parent: 1 type: Transform - - secondsUntilStateChange: -11118.512 + - secondsUntilStateChange: -17680.328 state: Opening type: Door - uid: 21 @@ -1496,6 +1477,9 @@ entities: - pos: -3.5,0.5 parent: 1 type: Transform + - secondsUntilStateChange: -2406.4907 + state: Opening + type: Door - uid: 38 components: - pos: -1.5,0.5 @@ -2859,7 +2843,7 @@ entities: type: Transform - uid: 79 components: - - rot: -1.5707963267948966 rad + - rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 1 type: Transform @@ -3357,35 +3341,20 @@ entities: - pos: 7.5,-11.5 parent: 1 type: Transform -- proto: BoozeDispenser +- proto: BookTemple entities: - - uid: 141 + - uid: 89 components: - - pos: -2.5,23.5 + - pos: -1.8859248,28.547873 parent: 1 type: Transform -- proto: BoxBeanbag - entities: - - uid: 91 - components: - - flags: InContainer - type: MetaData - - parent: 1916 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: BoxLethalshot +- proto: BoozeDispenser entities: - - uid: 834 + - uid: 141 components: - - flags: InContainer - type: MetaData - - parent: 1916 + - pos: -2.5,23.5 + parent: 1 type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: CableApcExtension entities: - uid: 142 @@ -3460,7 +3429,7 @@ entities: type: Transform - uid: 156 components: - - pos: 7.5,22.5 + - pos: 6.5,-11.5 parent: 1 type: Transform - uid: 157 @@ -3505,7 +3474,7 @@ entities: type: Transform - uid: 165 components: - - pos: 3.5,23.5 + - pos: 5.5,-11.5 parent: 1 type: Transform - uid: 166 @@ -4105,7 +4074,7 @@ entities: type: Transform - uid: 286 components: - - pos: 7.5,6.5 + - pos: 4.5,-11.5 parent: 1 type: Transform - uid: 287 @@ -4120,7 +4089,7 @@ entities: type: Transform - uid: 289 components: - - pos: 4.5,7.5 + - pos: -5.5,-11.5 parent: 1 type: Transform - uid: 290 @@ -4150,12 +4119,12 @@ entities: type: Transform - uid: 295 components: - - pos: -3.5,7.5 + - pos: -4.5,-11.5 parent: 1 type: Transform - uid: 296 components: - - pos: -3.5,7.5 + - pos: 10.5,17.5 parent: 1 type: Transform - uid: 297 @@ -4300,67 +4269,12 @@ entities: type: Transform - uid: 325 components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 327 - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform - - uid: 328 - components: - - pos: -2.5,-13.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: -1.5,-13.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: -0.5,-13.5 - parent: 1 - type: Transform - - uid: 331 - components: - - pos: 0.5,-13.5 - parent: 1 - type: Transform - - uid: 332 - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 333 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 334 - components: - - pos: 3.5,-13.5 + - pos: -3.5,-11.5 parent: 1 type: Transform - uid: 335 components: - - pos: 4.5,-13.5 - parent: 1 - type: Transform - - uid: 336 - components: - - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: 0.5,-12.5 + - pos: -3.5,0.5 parent: 1 type: Transform - uid: 338 @@ -4658,11 +4572,6 @@ entities: - pos: -8.5,22.5 parent: 1 type: Transform - - uid: 397 - components: - - pos: -7.5,-9.5 - parent: 1 - type: Transform - uid: 398 components: - pos: 7.5,-7.5 @@ -4688,119 +4597,9 @@ entities: - pos: -6.5,-7.5 parent: 1 type: Transform - - uid: 403 - components: - - pos: 15.5,1.5 - parent: 1 - type: Transform - - uid: 404 - components: - - pos: 15.5,0.5 - parent: 1 - type: Transform - uid: 405 components: - - pos: 16.5,0.5 - parent: 1 - type: Transform - - uid: 406 - components: - - pos: 16.5,-0.5 - parent: 1 - type: Transform - - uid: 407 - components: - - pos: 15.5,-0.5 - parent: 1 - type: Transform - - uid: 408 - components: - - pos: 15.5,-1.5 - parent: 1 - type: Transform - - uid: 409 - components: - - pos: 14.5,0.5 - parent: 1 - type: Transform - - uid: 410 - components: - - pos: -14.5,1.5 - parent: 1 - type: Transform - - uid: 411 - components: - - pos: -14.5,0.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: -15.5,0.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: -14.5,-0.5 - parent: 1 - type: Transform - - uid: 414 - components: - - pos: -15.5,-0.5 - parent: 1 - type: Transform - - uid: 415 - components: - - pos: -14.5,-1.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: -13.5,0.5 - parent: 1 - type: Transform - - uid: 417 - components: - - pos: -13.5,-0.5 - parent: 1 - type: Transform - - uid: 418 - components: - - pos: 14.5,-0.5 - parent: 1 - type: Transform - - uid: 419 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: 12.5,5.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: 10.5,10.5 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: 10.5,11.5 - parent: 1 - type: Transform - - uid: 423 - components: - - pos: 11.5,11.5 - parent: 1 - type: Transform - - uid: 424 - components: - - pos: 11.5,12.5 - parent: 1 - type: Transform - - uid: 425 - components: - - pos: 12.5,12.5 + - pos: -3.5,-0.5 parent: 1 type: Transform - uid: 426 @@ -4813,31 +4612,6 @@ entities: - pos: 9.5,12.5 parent: 1 type: Transform - - uid: 428 - components: - - pos: 12.5,18.5 - parent: 1 - type: Transform - - uid: 429 - components: - - pos: 11.5,18.5 - parent: 1 - type: Transform - - uid: 430 - components: - - pos: 10.5,18.5 - parent: 1 - type: Transform - - uid: 431 - components: - - pos: 10.5,17.5 - parent: 1 - type: Transform - - uid: 432 - components: - - pos: 11.5,19.5 - parent: 1 - type: Transform - uid: 433 components: - pos: 9.5,17.5 @@ -4898,31 +4672,6 @@ entities: - pos: 10.5,16.5 parent: 1 type: Transform - - uid: 445 - components: - - pos: -11.5,12.5 - parent: 1 - type: Transform - - uid: 446 - components: - - pos: -10.5,12.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: -10.5,11.5 - parent: 1 - type: Transform - - uid: 448 - components: - - pos: -9.5,10.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: -9.5,11.5 - parent: 1 - type: Transform - uid: 450 components: - pos: -9.5,12.5 @@ -4933,26 +4682,6 @@ entities: - pos: -9.5,13.5 parent: 1 type: Transform - - uid: 452 - components: - - pos: -11.5,18.5 - parent: 1 - type: Transform - - uid: 453 - components: - - pos: -10.5,18.5 - parent: 1 - type: Transform - - uid: 454 - components: - - pos: -10.5,19.5 - parent: 1 - type: Transform - - uid: 455 - components: - - pos: -9.5,18.5 - parent: 1 - type: Transform - uid: 456 components: - pos: -9.5,17.5 @@ -5023,162 +4752,67 @@ entities: - pos: -8.5,18.5 parent: 1 type: Transform - - uid: 470 + - uid: 483 components: - - pos: -11.5,5.5 + - pos: 3.5,26.5 parent: 1 type: Transform - - uid: 471 + - uid: 489 components: - - pos: -11.5,4.5 + - pos: 9.5,23.5 parent: 1 type: Transform - - uid: 472 + - uid: 490 components: - - pos: 13.5,-6.5 + - pos: 7.5,23.5 parent: 1 type: Transform - - uid: 473 + - uid: 491 components: - - pos: 13.5,-7.5 + - pos: 5.5,23.5 parent: 1 type: Transform - - uid: 474 + - uid: 493 components: - - pos: -12.5,-7.5 + - pos: -3.5,8.5 parent: 1 type: Transform - - uid: 475 + - uid: 494 components: - - pos: -12.5,-6.5 + - pos: 4.5,8.5 parent: 1 type: Transform - - uid: 476 + - uid: 495 components: - - pos: -5.5,-13.5 + - pos: -3.5,15.5 parent: 1 type: Transform - - uid: 477 + - uid: 496 components: - - pos: -4.5,-13.5 + - pos: -3.5,16.5 parent: 1 type: Transform - - uid: 478 + - uid: 497 components: - - pos: 6.5,-13.5 + - pos: -3.5,17.5 parent: 1 type: Transform - - uid: 479 + - uid: 498 components: - - pos: 0.5,-12.5 + - pos: -2.5,17.5 parent: 1 type: Transform - - uid: 480 + - uid: 499 components: - - pos: 7.5,26.5 + - pos: -1.5,17.5 parent: 1 type: Transform - - uid: 481 + - uid: 500 components: - - pos: 6.5,26.5 + - pos: -0.5,17.5 parent: 1 type: Transform - - uid: 482 - components: - - pos: 5.5,26.5 - parent: 1 - type: Transform - - uid: 483 - components: - - pos: 3.5,26.5 - parent: 1 - type: Transform - - uid: 484 - components: - - pos: 4.5,26.5 - parent: 1 - type: Transform - - uid: 485 - components: - - pos: -6.5,26.5 - parent: 1 - type: Transform - - uid: 486 - components: - - pos: -5.5,26.5 - parent: 1 - type: Transform - - uid: 487 - components: - - pos: -4.5,26.5 - parent: 1 - type: Transform - - uid: 488 - components: - - pos: -3.5,26.5 - parent: 1 - type: Transform - - uid: 489 - components: - - pos: 9.5,23.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 7.5,23.5 - parent: 1 - type: Transform - - uid: 491 - components: - - pos: 5.5,23.5 - parent: 1 - type: Transform - - uid: 492 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - - uid: 493 - components: - - pos: -3.5,8.5 - parent: 1 - type: Transform - - uid: 494 - components: - - pos: 4.5,8.5 - parent: 1 - type: Transform - - uid: 495 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - - uid: 496 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - uid: 497 - components: - - pos: -3.5,17.5 - parent: 1 - type: Transform - - uid: 498 - components: - - pos: -2.5,17.5 - parent: 1 - type: Transform - - uid: 499 - components: - - pos: -1.5,17.5 - parent: 1 - type: Transform - - uid: 500 - components: - - pos: -0.5,17.5 - parent: 1 - type: Transform - - uid: 501 + - uid: 501 components: - pos: 0.5,17.5 parent: 1 @@ -5243,26 +4877,6 @@ entities: - pos: -6.5,6.5 parent: 1 type: Transform - - uid: 514 - components: - - pos: -5.5,19.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: 6.5,19.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: 7.5,19.5 - parent: 1 - type: Transform - - uid: 517 - components: - - pos: -6.5,19.5 - parent: 1 - type: Transform - uid: 518 components: - pos: 0.5,7.5 @@ -5398,6 +5012,11 @@ entities: - pos: -7.5,-7.5 parent: 1 type: Transform + - uid: 1067 + components: + - pos: 4.5,23.5 + parent: 1 + type: Transform - uid: 1350 components: - pos: -1.5,0.5 @@ -5408,6 +5027,16 @@ entities: - pos: -0.5,0.5 parent: 1 type: Transform + - uid: 1357 + components: + - pos: 10.5,-7.5 + parent: 1 + type: Transform + - uid: 1362 + components: + - pos: -9.5,-7.5 + parent: 1 + type: Transform - uid: 1388 components: - pos: 9.5,-8.5 @@ -5423,11 +5052,6 @@ entities: - pos: -2.5,0.5 parent: 1 type: Transform - - uid: 1395 - components: - - pos: 8.5,-9.5 - parent: 1 - type: Transform - uid: 1396 components: - pos: -8.5,-7.5 @@ -5438,11 +5062,6 @@ entities: - pos: 9.5,-7.5 parent: 1 type: Transform - - uid: 1632 - components: - - pos: 8.5,-10.5 - parent: 1 - type: Transform - uid: 1671 components: - pos: -5.5,5.5 @@ -5458,31 +5077,6 @@ entities: - pos: -6.5,6.5 parent: 1 type: Transform - - uid: 1708 - components: - - pos: 8.5,-11.5 - parent: 1 - type: Transform - - uid: 1832 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 1833 - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 1901 - components: - - pos: 10.5,-7.5 - parent: 1 - type: Transform - - uid: 1915 - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform - proto: CableHV entities: - uid: 544 @@ -5560,31 +5154,6 @@ entities: - pos: 0.5,0.5 parent: 1 type: Transform - - uid: 559 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 560 - components: - - pos: 0.5,6.5 - parent: 1 - type: Transform - - uid: 561 - components: - - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 562 - components: - - pos: 0.5,9.5 - parent: 1 - type: Transform - - uid: 563 - components: - - pos: 0.5,8.5 - parent: 1 - type: Transform - uid: 575 components: - pos: 2.5,-4.5 @@ -6013,11 +5582,6 @@ entities: - pos: -3.5,-0.5 parent: 1 type: Transform - - uid: 661 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - uid: 662 components: - pos: 4.5,-0.5 @@ -6118,11 +5682,6 @@ entities: - pos: 6.5,7.5 parent: 1 type: Transform - - uid: 682 - components: - - pos: 7.5,6.5 - parent: 1 - type: Transform - uid: 683 components: - pos: -4.5,2.5 @@ -6907,18 +6466,6 @@ entities: pos: 3.5,0.5 parent: 1 type: Transform - - uid: 815 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 816 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - type: Transform - uid: 817 components: - rot: -1.5707963267948966 rad @@ -7053,13 +6600,6 @@ entities: occludes: True ent: null type: ContainerContainer -- proto: ClosetJanitorFilled - entities: - - uid: 1906 - components: - - pos: 9.5,6.5 - parent: 1 - type: Transform - proto: ClosetL3ScienceFilled entities: - uid: 1689 @@ -7074,17 +6614,6 @@ entities: - pos: -11.5,-0.5 parent: 1 type: Transform -- proto: ClothingBeltSheathFilled - entities: - - uid: 860 - components: - - flags: InContainer - type: MetaData - - parent: 1305 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: ClothingBeltUtilityFilled entities: - uid: 822 @@ -7230,6 +6759,28 @@ entities: - pos: -8.5,-5.5 parent: 1 type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 492 + components: + - pos: -9.5,1.5 + parent: 1 + type: Transform + - uid: 860 + components: + - pos: 12.5,2.5 + parent: 1 + type: Transform + - uid: 876 + components: + - pos: 13.5,1.5 + parent: 1 + type: Transform + - uid: 891 + components: + - pos: 13.5,-0.5 + parent: 1 + type: Transform - proto: CrateFoodBarSupply entities: - uid: 838 @@ -7717,10 +7268,10 @@ entities: type: Transform - proto: FloorDrain entities: - - uid: 571 + - uid: 559 components: - rot: 3.141592653589793 rad - pos: 6.5,21.5 + pos: 5.5,21.5 parent: 1 type: Transform - fixtures: {} @@ -7781,7 +7332,7 @@ entities: inletOneConcentration: 0.78 targetPressure: 4500 type: GasMixer - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - proto: GasOutletInjector entities: @@ -7791,10 +7342,18 @@ entities: pos: -0.5,1.5 parent: 1 type: Transform - - color: '#10DEA6FF' + - color: '#34EBC6FF' type: AtmosPipeColor - proto: GasPassiveVent entities: + - uid: 327 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - color: '#EBCF34FF' + type: AtmosPipeColor - uid: 920 components: - rot: -1.5707963267948966 rad @@ -7809,7 +7368,7 @@ entities: pos: 9.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 922 components: @@ -7817,7 +7376,7 @@ entities: pos: -8.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 923 components: @@ -7867,7 +7426,7 @@ entities: pos: 3.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 927 components: @@ -7875,7 +7434,7 @@ entities: pos: -2.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 928 components: @@ -7917,7 +7476,7 @@ entities: - pos: -4.5,-1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 934 components: @@ -7925,7 +7484,7 @@ entities: pos: -6.5,-1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 935 components: @@ -7933,7 +7492,7 @@ entities: pos: -6.5,3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 936 components: @@ -7941,7 +7500,7 @@ entities: pos: -4.5,3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 937 components: @@ -7949,14 +7508,14 @@ entities: pos: -2.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 938 components: - pos: 3.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 939 components: @@ -7964,7 +7523,7 @@ entities: pos: -5.5,-6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 940 components: @@ -7972,7 +7531,7 @@ entities: pos: -5.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 941 components: @@ -7980,7 +7539,7 @@ entities: pos: 5.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 942 components: @@ -8121,35 +7680,35 @@ entities: - pos: -4.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 960 components: - pos: 5.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 961 components: - pos: 0.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 962 components: - pos: 3.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 963 components: - pos: -2.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - proto: GasPipeStraight entities: @@ -8159,7 +7718,7 @@ entities: pos: 7.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 964 components: @@ -8167,35 +7726,35 @@ entities: pos: 0.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 965 components: - pos: -1.5,-10.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 966 components: - pos: 2.5,-10.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 967 components: - pos: 2.5,-9.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 968 components: - pos: -1.5,-9.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 969 components: @@ -8203,7 +7762,7 @@ entities: pos: -7.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 970 components: @@ -8211,7 +7770,7 @@ entities: pos: -0.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 971 components: @@ -8219,14 +7778,14 @@ entities: pos: -1.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 972 components: - pos: 0.5,10.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 973 components: @@ -8234,7 +7793,7 @@ entities: pos: 3.5,14.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 974 components: @@ -8242,7 +7801,7 @@ entities: pos: 3.5,13.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 975 components: @@ -8250,7 +7809,7 @@ entities: pos: 2.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 976 components: @@ -8258,7 +7817,7 @@ entities: pos: 3.5,16.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 977 components: @@ -8266,7 +7825,7 @@ entities: pos: 1.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 978 components: @@ -8274,7 +7833,7 @@ entities: pos: -1.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 979 components: @@ -8282,14 +7841,14 @@ entities: pos: -0.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 980 components: - pos: 0.5,11.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 981 components: @@ -8297,7 +7856,7 @@ entities: pos: -3.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 982 components: @@ -8305,7 +7864,7 @@ entities: pos: -1.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 983 components: @@ -8313,7 +7872,7 @@ entities: pos: -2.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 984 components: @@ -8321,7 +7880,7 @@ entities: pos: -3.5,1.5 parent: 1 type: Transform - - color: '#10DEA6FF' + - color: '#34EBC6FF' type: AtmosPipeColor - uid: 985 components: @@ -8329,7 +7888,7 @@ entities: pos: -2.5,-0.5 parent: 1 type: Transform - - color: '#B9DE10FF' + - color: '#EBCF34FF' type: AtmosPipeColor - uid: 986 components: @@ -8337,14 +7896,14 @@ entities: pos: -2.5,1.5 parent: 1 type: Transform - - color: '#10DEA6FF' + - color: '#34EBC6FF' type: AtmosPipeColor - uid: 987 components: - pos: -4.5,-2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 988 components: @@ -8352,20 +7911,14 @@ entities: pos: -3.5,-0.5 parent: 1 type: Transform - - color: '#B9DE10FF' + - color: '#EBCF34FF' type: AtmosPipeColor - - uid: 989 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 1 - type: Transform - uid: 990 components: - pos: -4.5,-3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 991 components: @@ -8445,14 +7998,14 @@ entities: pos: 5.5,-4.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1004 components: - pos: 5.5,-3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1005 components: @@ -8460,7 +8013,7 @@ entities: pos: 5.5,-1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1006 components: @@ -8468,7 +8021,7 @@ entities: pos: -5.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1007 components: @@ -8494,73 +8047,68 @@ entities: pos: 3.5,21.5 parent: 1 type: Transform - - uid: 1011 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - uid: 1012 components: - pos: 0.5,14.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1013 components: - pos: 0.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1014 components: - pos: 0.5,16.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1015 components: - pos: 0.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1016 components: - pos: 0.5,18.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1017 components: - pos: 0.5,19.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1018 components: - pos: 0.5,20.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1019 components: - pos: 0.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1020 components: - pos: 0.5,23.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1021 components: @@ -8568,7 +8116,7 @@ entities: pos: 1.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1022 components: @@ -8576,7 +8124,7 @@ entities: pos: 2.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1023 components: @@ -8584,7 +8132,7 @@ entities: pos: -3.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1024 components: @@ -8594,19 +8142,13 @@ entities: type: Transform - color: '#DE10DEFF' type: AtmosPipeColor - - uid: 1025 - components: - - rot: 3.141592653589793 rad - pos: -4.5,24.5 - parent: 1 - type: Transform - uid: 1026 components: - rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 type: Transform - - color: '#10DEA6FF' + - color: '#34EBC6FF' type: AtmosPipeColor - uid: 1027 components: @@ -8629,7 +8171,7 @@ entities: pos: -1.5,-0.5 parent: 1 type: Transform - - color: '#B9DE10FF' + - color: '#EBCF34FF' type: AtmosPipeColor - uid: 1030 components: @@ -8637,7 +8179,7 @@ entities: pos: 5.5,-2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1031 components: @@ -8645,7 +8187,7 @@ entities: pos: 3.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1032 components: @@ -8653,7 +8195,7 @@ entities: pos: -0.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1033 components: @@ -8661,7 +8203,7 @@ entities: pos: -0.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1034 components: @@ -8669,7 +8211,7 @@ entities: pos: 0.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1035 components: @@ -8677,7 +8219,7 @@ entities: pos: 1.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1036 components: @@ -8685,7 +8227,7 @@ entities: pos: 2.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1037 components: @@ -8693,7 +8235,7 @@ entities: pos: 4.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1038 components: @@ -8701,7 +8243,7 @@ entities: pos: 5.5,-0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1039 components: @@ -8709,7 +8251,7 @@ entities: pos: 5.5,1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1040 components: @@ -8717,7 +8259,7 @@ entities: pos: 5.5,2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1041 components: @@ -8725,7 +8267,7 @@ entities: pos: 5.5,3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1042 components: @@ -8733,7 +8275,7 @@ entities: pos: 5.5,4.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1043 components: @@ -8741,7 +8283,7 @@ entities: pos: -4.5,-4.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1044 components: @@ -8749,7 +8291,7 @@ entities: pos: -4.5,-3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1045 components: @@ -8757,7 +8299,7 @@ entities: pos: -4.5,-2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1046 components: @@ -8765,28 +8307,28 @@ entities: pos: -5.5,-1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1047 components: - pos: -6.5,-0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1048 components: - pos: -6.5,1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1049 components: - pos: -6.5,2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1050 components: @@ -8794,14 +8336,14 @@ entities: pos: -5.5,3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1051 components: - pos: -4.5,4.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1052 components: @@ -8809,7 +8351,7 @@ entities: pos: -3.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1053 components: @@ -8817,7 +8359,7 @@ entities: pos: -1.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1054 components: @@ -8825,7 +8367,7 @@ entities: pos: -2.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1055 components: @@ -8833,7 +8375,7 @@ entities: pos: -0.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1056 components: @@ -8841,7 +8383,7 @@ entities: pos: 1.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1057 components: @@ -8849,7 +8391,7 @@ entities: pos: 2.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1058 components: @@ -8857,7 +8399,7 @@ entities: pos: 3.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1059 components: @@ -8865,35 +8407,35 @@ entities: pos: 4.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1060 components: - pos: 0.5,6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1061 components: - pos: 0.5,7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1062 components: - pos: 0.5,8.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1063 components: - pos: 0.5,9.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1064 components: @@ -8901,7 +8443,7 @@ entities: pos: -2.5,13.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1065 components: @@ -8909,7 +8451,7 @@ entities: pos: -2.5,14.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1066 components: @@ -8917,23 +8459,15 @@ entities: pos: -2.5,16.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - - uid: 1067 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,21.5 - parent: 1 - type: Transform - - color: '#61B540FF' - type: AtmosPipeColor - - uid: 1068 + - uid: 1068 components: - rot: 1.5707963267948966 rad pos: -0.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1069 components: @@ -8941,7 +8475,7 @@ entities: pos: -1.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1070 components: @@ -8949,7 +8483,7 @@ entities: pos: 1.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1071 components: @@ -8957,28 +8491,28 @@ entities: pos: 2.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1072 components: - pos: 0.5,22.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1073 components: - pos: 0.5,24.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1074 components: - pos: 0.5,25.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1075 components: @@ -8986,7 +8520,7 @@ entities: pos: -6.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1076 components: @@ -8994,7 +8528,7 @@ entities: pos: 6.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1077 components: @@ -9002,7 +8536,7 @@ entities: pos: 7.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1078 components: @@ -9017,7 +8551,7 @@ entities: pos: 1.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1080 components: @@ -9025,7 +8559,7 @@ entities: pos: 6.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1081 components: @@ -9033,7 +8567,7 @@ entities: pos: -6.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1082 components: @@ -9041,7 +8575,7 @@ entities: pos: 5.5,-6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1083 components: @@ -9049,7 +8583,7 @@ entities: pos: 6.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1084 components: @@ -9057,7 +8591,7 @@ entities: pos: 7.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1085 components: @@ -9065,35 +8599,35 @@ entities: pos: -8.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1086 components: - pos: -9.5,-0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1087 components: - pos: -9.5,-2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1088 components: - pos: -9.5,-1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1089 components: - pos: -9.5,-3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1091 components: @@ -9101,7 +8635,7 @@ entities: pos: 8.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1092 components: @@ -9109,7 +8643,7 @@ entities: pos: 9.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1093 components: @@ -9117,7 +8651,7 @@ entities: pos: 10.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1094 components: @@ -9125,7 +8659,7 @@ entities: pos: 11.5,-0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1095 components: @@ -9133,7 +8667,7 @@ entities: pos: 11.5,-1.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1096 components: @@ -9141,7 +8675,7 @@ entities: pos: 11.5,-2.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1097 components: @@ -9156,7 +8690,7 @@ entities: pos: 3.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1099 components: @@ -9164,7 +8698,7 @@ entities: pos: 4.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1100 components: @@ -9172,7 +8706,7 @@ entities: pos: -7.5,-10.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1101 components: @@ -9180,7 +8714,7 @@ entities: pos: 8.5,-10.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1102 components: @@ -9196,7 +8730,7 @@ entities: pos: -2.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1104 components: @@ -9204,7 +8738,7 @@ entities: pos: -3.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1105 components: @@ -9212,7 +8746,7 @@ entities: pos: -4.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1106 components: @@ -9220,7 +8754,7 @@ entities: pos: -5.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1107 components: @@ -9228,7 +8762,7 @@ entities: pos: -6.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1108 components: @@ -9236,7 +8770,7 @@ entities: pos: 5.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1109 components: @@ -9244,7 +8778,7 @@ entities: pos: 6.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1110 components: @@ -9252,7 +8786,7 @@ entities: pos: 7.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1111 components: @@ -9260,7 +8794,7 @@ entities: pos: -7.5,-10.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1112 components: @@ -9472,7 +9006,7 @@ entities: pos: 5.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1139 components: @@ -9480,7 +9014,7 @@ entities: pos: 4.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1140 components: @@ -9488,7 +9022,7 @@ entities: pos: 6.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1141 components: @@ -9496,7 +9030,7 @@ entities: pos: 7.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1142 components: @@ -9504,7 +9038,7 @@ entities: pos: 8.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1143 components: @@ -9512,7 +9046,7 @@ entities: pos: 9.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1144 components: @@ -9520,7 +9054,7 @@ entities: pos: -3.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1145 components: @@ -9528,7 +9062,7 @@ entities: pos: -4.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1146 components: @@ -9536,7 +9070,7 @@ entities: pos: -5.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1147 components: @@ -9544,7 +9078,7 @@ entities: pos: -6.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1148 components: @@ -9552,7 +9086,7 @@ entities: pos: -7.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1149 components: @@ -9560,7 +9094,7 @@ entities: pos: -8.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1150 components: @@ -9749,7 +9283,7 @@ entities: pos: 5.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1173 components: @@ -9757,21 +9291,21 @@ entities: pos: 2.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1174 components: - pos: 0.5,12.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1175 components: - pos: 3.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1176 components: @@ -9779,7 +9313,7 @@ entities: pos: 5.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1177 components: @@ -9787,7 +9321,7 @@ entities: pos: -4.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1178 components: @@ -9795,14 +9329,14 @@ entities: pos: -4.5,-6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1179 components: - pos: -2.5,-5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1180 components: @@ -9810,7 +9344,7 @@ entities: pos: -6.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1182 components: @@ -9818,7 +9352,7 @@ entities: pos: 0.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1183 components: @@ -9826,21 +9360,21 @@ entities: pos: 0.5,17.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1184 components: - pos: -9.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1185 components: - pos: 11.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1186 components: @@ -9848,7 +9382,7 @@ entities: pos: -1.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1187 components: @@ -9856,7 +9390,7 @@ entities: pos: -7.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1188 components: @@ -9864,7 +9398,7 @@ entities: pos: 8.5,-11.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1189 components: @@ -9936,6 +9470,8 @@ entities: pos: -5.5,1.5 parent: 1 type: Transform + - color: '#34EBC6FF' + type: AtmosPipeColor - uid: 1198 components: - rot: 1.5707963267948966 rad @@ -9962,57 +9498,73 @@ entities: type: Transform - targetPressure: 4500 type: GasPressurePump - - color: '#B9DE10FF' + - color: '#EBCF34FF' type: AtmosPipeColor - - uid: 1201 +- proto: GasValve + entities: + - uid: 326 components: - - rot: 1.5707963267948966 rad + - rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 type: Transform - - targetPressure: 4500 - type: GasPressurePump - - color: '#10DEA6FF' + - color: '#34EBC6FF' type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 1202 + - uid: 328 components: - rot: -1.5707963267948966 rad - pos: -1.5,15.5 + pos: 8.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - - uid: 1203 + - uid: 329 components: - rot: 1.5707963267948966 rad - pos: 2.5,15.5 + pos: -7.5,-7.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - - uid: 1204 + - uid: 562 components: - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 + pos: 4.5,21.5 + parent: 1 + type: Transform + - color: '#98FF98FF' + type: AtmosPipeColor + - uid: 1202 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + type: Transform + - color: '#98FF98FF' + type: AtmosPipeColor + - uid: 1203 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,15.5 parent: 1 type: Transform - - color: '#B9DE10FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1205 components: - pos: -4.5,6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1206 components: - pos: 5.5,6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1207 components: @@ -10020,7 +9572,7 @@ entities: pos: 8.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1208 components: @@ -10028,15 +9580,7 @@ entities: pos: -4.5,21.5 parent: 1 type: Transform - - color: '#61B540FF' - type: AtmosPipeColor - - uid: 1209 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,21.5 - parent: 1 - type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1210 components: @@ -10044,7 +9588,7 @@ entities: pos: -2.5,-6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1211 components: @@ -10052,39 +9596,15 @@ entities: pos: 3.5,-6.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - - uid: 1212 - components: - - anchored: False - rot: -1.5707963267948966 rad - pos: 8.5,-7.4999995 - parent: 1 - type: Transform - - color: '#3FDE10FF' - type: AtmosPipeColor - - canCollide: True - bodyType: Dynamic - type: Physics - - uid: 1213 - components: - - anchored: False - rot: 1.5707963267948966 rad - pos: -7.5,-7.5000005 - parent: 1 - type: Transform - - color: '#3FDE10FF' - type: AtmosPipeColor - - canCollide: True - bodyType: Dynamic - type: Physics - uid: 1214 components: - rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1215 components: @@ -10092,7 +9612,7 @@ entities: pos: -9.5,-4.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1216 components: @@ -10100,7 +9620,7 @@ entities: pos: 12.5,0.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1217 components: @@ -10108,7 +9628,7 @@ entities: pos: 11.5,-3.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1218 components: @@ -10116,7 +9636,7 @@ entities: pos: -7.5,5.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1219 components: @@ -10124,7 +9644,7 @@ entities: pos: -9.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1220 components: @@ -10132,14 +9652,14 @@ entities: pos: 10.5,15.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - uid: 1221 components: - pos: 0.5,26.5 parent: 1 type: Transform - - color: '#61B540FF' + - color: '#98FF98FF' type: AtmosPipeColor - proto: GasVentScrubber entities: @@ -10148,12 +9668,14 @@ entities: - pos: 8.5,-9.5 parent: 1 type: Transform + - color: '#EB34DEFF' + type: AtmosPipeColor - uid: 1222 components: - pos: 2.5,-8.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1223 components: @@ -10167,7 +9689,7 @@ entities: - pos: -1.5,-8.5 parent: 1 type: Transform - - color: '#DE10DEFF' + - color: '#EB34DEFF' type: AtmosPipeColor - uid: 1225 components: @@ -10264,6 +9786,8 @@ entities: - pos: -7.5,-9.5 parent: 1 type: Transform + - color: '#EB34DEFF' + type: AtmosPipeColor - proto: GravityGeneratorMini entities: - uid: 1237 @@ -10387,11 +9911,6 @@ entities: - pos: -2.5,4.5 parent: 1 type: Transform - - uid: 1259 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - uid: 1260 components: - pos: -3.5,4.5 @@ -10407,11 +9926,6 @@ entities: - pos: -3.5,2.5 parent: 1 type: Transform - - uid: 1263 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - uid: 1264 components: - pos: -3.5,-1.5 @@ -10472,16 +9986,6 @@ entities: - pos: 4.5,-1.5 parent: 1 type: Transform - - uid: 1276 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 1277 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - uid: 1278 components: - pos: 4.5,2.5 @@ -10672,46 +10176,13 @@ entities: - pos: 6.5,27.5 parent: 1 type: Transform -- proto: GunSafe +- proto: GunSafeShuttleT3Spawner entities: - - uid: 1916 + - uid: 560 components: - pos: -4.5,26.5 parent: 1 type: Transform - - locked: False - type: Lock - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 89 - - 91 - - 834 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: Gyroscope entities: - uid: 1294 @@ -10741,12 +10212,12 @@ entities: pos: -7.3219557,-9.440136 parent: 1 type: Transform -- proto: HoloprojectorSecurity +- proto: Holoprojector entities: - - uid: 1977 + - uid: 561 components: - rot: -1.5707963267948966 rad - pos: -7.696956,-9.447948 + pos: -7.704551,-9.439793 parent: 1 type: Transform - proto: hydroponicsTrayAnchored @@ -10757,13 +10228,6 @@ entities: pos: 9.5,21.5 parent: 1 type: Transform -- proto: HyperlinkBookSpaceLaw - entities: - - uid: 1933 - components: - - pos: -1.8561754,28.756252 - parent: 1 - type: Transform - proto: JanitorialTrolley entities: - uid: 1908 @@ -10779,13 +10243,6 @@ entities: - pos: 5.5,23.5 parent: 1 type: Transform -- proto: KitchenElectricGrill - entities: - - uid: 1299 - components: - - pos: 4.5,23.5 - parent: 1 - type: Transform - proto: KitchenMicrowave entities: - uid: 1300 @@ -10795,29 +10252,11 @@ entities: type: Transform - proto: KitchenReagentGrinder entities: - - uid: 1301 + - uid: 563 components: - - pos: 6.5,23.5 + - pos: 4.5,23.5 parent: 1 type: Transform - - containers: - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 835 - inputContainer: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - uid: 1302 components: - pos: -5.5,23.5 @@ -10843,14 +10282,6 @@ entities: type: ContainerContainer - proto: LargeBeaker entities: - - uid: 835 - components: - - flags: InContainer - type: MetaData - - parent: 1301 - type: Transform - - canCollide: False - type: Physics - uid: 859 components: - flags: InContainer @@ -10885,8 +10316,8 @@ entities: immutable: False temperature: 293.1496 moles: - - 1.8856695 - - 7.0937095 + - 1.8968438 + - 7.1357465 - 0 - 0 - 0 @@ -10898,18 +10329,6 @@ entities: - 0 - 0 type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 913 - - 860 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer - proto: LockerEngineerFilled entities: - uid: 1306 @@ -10943,13 +10362,6 @@ entities: - pos: 8.5,3.5 parent: 1 type: Transform -- proto: LockerScienceFilled - entities: - - uid: 1310 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - proto: LockerWallMedicalDoctorFilled entities: - uid: 1311 @@ -11137,9 +10549,9 @@ entities: type: Transform - proto: PaintingOldGuitarist entities: - - uid: 1924 + - uid: 403 components: - - pos: -6.5,12.5 + - pos: -6.5,11.5 parent: 1 type: Transform - proto: PaintingPersistenceOfMemory @@ -11252,16 +10664,9 @@ entities: type: Transform - proto: PosterContrabandSpaceCola entities: - - uid: 1921 - components: - - pos: -6.5,18.5 - parent: 1 - type: Transform -- proto: PosterContrabandVoteWeh - entities: - - uid: 1929 + - uid: 332 components: - - pos: 0.5,-3.5 + - pos: -6.5,19.5 parent: 1 type: Transform - proto: PosterLegit50thAnniversaryVintageReprint @@ -11298,24 +10703,16 @@ entities: type: Transform - proto: PosterLegitHighClassMartini entities: - - uid: 1329 - components: - - pos: -1.5,23.5 - parent: 1 - type: Transform -- proto: PosterLegitSafetyInternals - entities: - - uid: 1918 + - uid: 336 components: - - rot: 1.5707963267948966 rad - pos: -3.5,3.5 + - pos: -6.5,24.5 parent: 1 type: Transform - proto: PosterLegitShoukou entities: - - uid: 1920 + - uid: 333 components: - - pos: 7.5,12.5 + - pos: 7.5,11.5 parent: 1 type: Transform - proto: PosterLegitThereIsNoGasGiant @@ -11357,12 +10754,6 @@ entities: pos: -2.5,-0.5 parent: 1 type: Transform - - uid: 1330 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,22.5 - parent: 1 - type: Transform - uid: 1335 components: - rot: 3.141592653589793 rad @@ -11385,23 +10776,11 @@ entities: pos: -12.5,-0.5 parent: 1 type: Transform - - uid: 1340 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 1 - type: Transform - uid: 1341 components: - pos: 10.5,3.5 parent: 1 type: Transform - - uid: 1342 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,19.5 - parent: 1 - type: Transform - uid: 1343 components: - rot: 3.141592653589793 rad @@ -11455,18 +10834,6 @@ entities: pos: -3.5,-11.5 parent: 1 type: Transform - - uid: 1356 - components: - - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 1 - type: Transform - - uid: 1357 - components: - - rot: 3.141592653589793 rad - pos: 3.5,10.5 - parent: 1 - type: Transform - uid: 1358 components: - rot: 3.141592653589793 rad @@ -11496,61 +10863,80 @@ entities: pos: 6.5,-10.5 parent: 1 type: Transform - - uid: 1368 + - uid: 1372 components: - rot: -1.5707963267948966 rad - pos: 9.5,22.5 + pos: -7.5,6.5 parent: 1 type: Transform - - uid: 1372 + - uid: 1378 components: - - rot: -1.5707963267948966 rad - pos: -7.5,6.5 + - pos: -12.5,-2.5 parent: 1 type: Transform - - uid: 1376 + - uid: 1386 components: - rot: 1.5707963267948966 rad - pos: -5.5,19.5 + pos: 8.5,6.5 parent: 1 type: Transform - - uid: 1377 + - uid: 1399 components: - - rot: -1.5707963267948966 rad - pos: 6.5,19.5 + - pos: 10.5,-7.5 parent: 1 type: Transform - - uid: 1378 + - uid: 1400 components: - - pos: -12.5,-2.5 + - pos: -9.5,-7.5 parent: 1 type: Transform - - uid: 1386 + - uid: 1405 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 90 components: - rot: 1.5707963267948966 rad - pos: 8.5,6.5 + pos: -5.5,19.5 parent: 1 type: Transform - - uid: 1399 + - uid: 91 components: - - pos: 10.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -0.5,19.5 parent: 1 type: Transform - - uid: 1400 + - uid: 834 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 + type: Transform + - uid: 913 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 924 components: - - pos: -9.5,-7.5 + - rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 1 type: Transform - - uid: 1405 + - uid: 1330 components: - - pos: 0.5,8.5 + - rot: -1.5707963267948966 rad + pos: 6.5,19.5 parent: 1 type: Transform -- proto: PoweredSmallLight - entities: - uid: 1331 components: - - pos: 3.5,8.5 + - rot: 3.141592653589793 rad + pos: -7.5,21.5 parent: 1 type: Transform - uid: 1333 @@ -11559,25 +10945,26 @@ entities: pos: 7.5,9.5 parent: 1 type: Transform - - uid: 1362 + - uid: 1340 components: - - pos: 5.5,8.5 + - rot: 3.141592653589793 rad + pos: 8.5,21.5 parent: 1 type: Transform - - uid: 1366 + - uid: 1342 components: - - rot: 3.141592653589793 rad - pos: -6.5,9.5 + - pos: 4.5,6.5 parent: 1 type: Transform - - uid: 1495 + - uid: 1356 components: - - pos: -4.5,8.5 + - pos: -3.5,6.5 parent: 1 type: Transform - - uid: 1548 + - uid: 1366 components: - - pos: -2.5,8.5 + - rot: 3.141592653589793 rad + pos: -6.5,9.5 parent: 1 type: Transform - proto: Protolathe @@ -11790,23 +11177,6 @@ entities: pos: -1.5,-6.5 parent: 1 type: Transform -- proto: RandomCargoSpawner - entities: - - uid: 60 - components: - - pos: 13.5,2.5 - parent: 1 - type: Transform - - uid: 876 - components: - - pos: 12.5,-0.5 - parent: 1 - type: Transform - - uid: 892 - components: - - pos: -9.5,1.5 - parent: 1 - type: Transform - proto: RandomDrinkGlass entities: - uid: 1939 @@ -11841,20 +11211,6 @@ entities: - pos: 4.5,15.5 parent: 1 type: Transform -- proto: RandomVendingDrinks - entities: - - uid: 1942 - components: - - pos: -8.5,18.5 - parent: 1 - type: Transform -- proto: RandomVendingSnacks - entities: - - uid: 1943 - components: - - pos: 9.5,18.5 - parent: 1 - type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 1430 @@ -11899,6 +11255,21 @@ entities: type: Transform - proto: ReinforcedWindow entities: + - uid: 334 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 404 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 406 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform - uid: 1438 components: - pos: 1.5,-3.5 @@ -11921,21 +11292,11 @@ entities: - pos: -3.5,2.5 parent: 1 type: Transform - - uid: 1442 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - uid: 1443 components: - pos: -3.5,3.5 parent: 1 type: Transform - - uid: 1444 - components: - - pos: -3.5,4.5 - parent: 1 - type: Transform - uid: 1445 components: - pos: 2.5,4.5 @@ -11951,11 +11312,6 @@ entities: - pos: -1.5,4.5 parent: 1 type: Transform - - uid: 1448 - components: - - pos: -3.5,-0.5 - parent: 1 - type: Transform - uid: 1449 components: - pos: -3.5,-1.5 @@ -12006,36 +11362,16 @@ entities: - pos: 4.5,-2.5 parent: 1 type: Transform - - uid: 1459 - components: - - pos: 4.5,1.5 - parent: 1 - type: Transform - uid: 1460 components: - pos: 4.5,-1.5 parent: 1 type: Transform - - uid: 1461 - components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 1462 - components: - - pos: 4.5,2.5 - parent: 1 - type: Transform - uid: 1463 components: - pos: 4.5,3.5 parent: 1 type: Transform - - uid: 1464 - components: - - pos: 4.5,4.5 - parent: 1 - type: Transform - uid: 1465 components: - pos: 3.5,4.5 @@ -12072,25 +11408,6 @@ entities: - pos: 3.6515362,28.766039 parent: 1 type: Transform -- proto: SalvageCanisterSpawner - entities: - - uid: 875 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 879 - components: - - pos: 12.5,1.5 - parent: 1 - type: Transform - - uid: 891 - components: - - pos: 13.5,-0.5 - parent: 1 - type: Transform - proto: SaxophoneInstrument entities: - uid: 1469 @@ -12105,24 +11422,6 @@ entities: - pos: -9.5,3.5 parent: 1 type: Transform -- proto: ShellShotgun - entities: - - uid: 90 - components: - - flags: InContainer - type: MetaData - - parent: 89 - type: Transform - - canCollide: False - type: Physics - - uid: 924 - components: - - flags: InContainer - type: MetaData - - parent: 89 - type: Transform - - canCollide: False - type: Physics - proto: ShuttleConsoleCircuitboard entities: - uid: 833 @@ -12416,14 +11715,6 @@ entities: pos: 2.5,24.5 parent: 1 type: Transform -- proto: SignCargo - entities: - - uid: 1519 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - type: Transform - proto: SignDisposalSpace entities: - uid: 1959 @@ -12549,14 +11840,6 @@ entities: - pos: -8.5,-2.5 parent: 1 type: Transform -- proto: SignScience - entities: - - uid: 1525 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - proto: SignShipDock entities: - uid: 1526 @@ -12583,32 +11866,6 @@ entities: pos: 11.5,13.5 parent: 1 type: Transform -- proto: SignSpace - entities: - - uid: 1892 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 1893 - components: - - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 1 - type: Transform - - uid: 1894 - components: - - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 1895 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - proto: SignToolStorage entities: - uid: 1904 @@ -12811,6 +12068,18 @@ entities: pos: -4.5,18.5 parent: 1 type: Transform +- proto: StorageCanister + entities: + - uid: 835 + components: + - pos: -7.5,3.5 + parent: 1 + type: Transform + - uid: 879 + components: + - pos: 12.5,3.5 + parent: 1 + type: Transform - proto: SubstationBasic entities: - uid: 578 @@ -12912,6 +12181,8 @@ entities: - pos: -7.5,19.5 parent: 1 type: Transform + - locked: False + type: Lock - uid: 1567 components: - pos: 8.5,19.5 @@ -12938,6 +12209,12 @@ entities: type: Transform - proto: TableCounterWood entities: + - uid: 1011 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 1 + type: Transform - uid: 1571 components: - rot: -1.5707963267948966 rad @@ -12986,18 +12263,6 @@ entities: pos: -3.5,23.5 parent: 1 type: Transform - - uid: 1579 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - type: Transform - - uid: 1580 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - type: Transform - uid: 1581 components: - rot: -1.5707963267948966 rad @@ -13334,13 +12599,6 @@ entities: - pos: -1.8786077,29.911055 parent: 1 type: Transform -- proto: ToyFigurineChef - entities: - - uid: 1969 - components: - - pos: 6.2385297,23.955992 - parent: 1 - type: Transform - proto: ToyFigurineMusician entities: - uid: 1970 @@ -13392,6 +12650,13 @@ entities: - pos: -6.5,23.5 parent: 1 type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 875 + components: + - pos: 9.5,-0.5 + parent: 1 + type: Transform - proto: VendingMachineChefvend entities: - uid: 1638 @@ -13434,6 +12699,13 @@ entities: - pos: 10.5,-8.5 parent: 1 type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 60 + components: + - pos: 9.5,6.5 + parent: 1 + type: Transform - proto: VendingMachineSalvage entities: - uid: 1958 @@ -13441,6 +12713,20 @@ entities: - pos: 7.5,3.5 parent: 1 type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 571 + components: + - pos: -11.5,-2.5 + parent: 1 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 892 + components: + - pos: 6.5,23.5 + parent: 1 + type: Transform - proto: VendingMachineTankDispenserEngineering entities: - uid: 1645 @@ -13494,6 +12780,26 @@ entities: type: Transform - proto: WallShuttle entities: + - uid: 330 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform - uid: 574 components: - pos: 13.5,3.5 @@ -14652,40 +13958,6 @@ entities: - pos: -6.5,3.5 parent: 1 type: Transform -- proto: WeaponAntiqueLaser - entities: - - uid: 913 - components: - - flags: InContainer - type: MetaData - - parent: 1305 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponShotgunKammerer - entities: - - uid: 89 - components: - - flags: InContainer - type: MetaData - - parent: 1916 - type: Transform - - entities: - - 90 - - 924 - type: BallisticAmmoProvider - - containers: - ballistic-ammo: !type:Container - showEnts: False - occludes: True - ents: - - 90 - - 924 - type: ContainerContainer - - canCollide: False - type: Physics - - type: InsideEntityStorage - proto: WelderIndustrial entities: - uid: 1903 @@ -14796,10 +14068,4 @@ entities: pos: 6.577632,-8.524525 parent: 1 type: Transform - - uid: 1944 - components: - - rot: 5.6141757909244916E-11 rad - pos: 3.428672,-5.7420325 - parent: 1 - type: Transform ... diff --git a/Resources/Maps/Shuttles/mayflower.yml b/Resources/Maps/_NF/Shuttles/mayflower.yml similarity index 86% rename from Resources/Maps/Shuttles/mayflower.yml rename to Resources/Maps/_NF/Shuttles/mayflower.yml index ea1c327e61c..4cf680bcd1c 100644 --- a/Resources/Maps/Shuttles/mayflower.yml +++ b/Resources/Maps/_NF/Shuttles/mayflower.yml @@ -4,7 +4,6 @@ meta: tilemap: 0: Space 34: FloorDarkOffset - 44: FloorGlass 63: FloorMetalDiamond 72: FloorRGlass 94: FloorSteelOffset @@ -28,27 +27,27 @@ entities: - chunks: 0,0: ind: 0,0 - tiles: IgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAawAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAawAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: cgAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAASAAAAAAASAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAawAAAAAASAAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cgAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAawAAAAAASAAAAAAAcgAAAAAAcgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAALAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAALAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -71,11 +70,6 @@ entities: - chunkCollection: version: 2 nodes: - - node: - color: '#FFFFFFFF' - id: 5 - decals: - 225: -2.2377915,-14.09795 - node: cleanable: True color: '#FFFFFFFF' @@ -173,157 +167,140 @@ entities: 89: -2,-11 90: -2,-10 91: -1,-10 - 92: -2,-12 - 93: -3,-12 - 94: -3,-13 - 95: -2,-13 - 96: 0,-13 - 97: -1,-12 - 98: -1,-13 - 99: 0,-14 - 100: -1,-14 - 101: -2,-14 - 102: -3,-14 - 103: -4,-15 - 104: -3,-15 - 105: -2,-15 - 106: -1,-15 - 107: 0,-15 - 108: 0,-15 - 109: 1,-15 - 110: 1,-14 - 111: 1,-15 - 112: 1,-16 - 113: 1,-17 - 114: 1,-18 - 115: 2,-18 - 116: 3,-18 - 117: 4,-18 - 118: 5,-18 - 119: 5,-17 - 120: 4,-17 - 121: 3,-17 - 122: 2,-17 - 123: 2,-16 - 124: 3,-16 - 125: 3,-15 - 126: 2,-15 - 127: 4,-16 - 128: 5,-16 - 129: 5,-15 - 130: 4,-15 - 131: -5,-15 - 132: -6,-15 - 133: -7,-15 - 134: -8,-15 - 135: -8,-16 - 136: -7,-16 - 137: -5,-16 - 138: -6,-16 - 139: -5,-17 - 140: -6,-17 - 141: -7,-17 - 142: -8,-17 - 143: -8,-18 - 144: -7,-18 - 145: -6,-18 - 146: -5,-18 - 147: -5,-19 - 148: -4,-18 - 149: -4,-17 - 150: -4,-19 + 92: -3,-12 + 93: -3,-13 + 94: -2,-13 + 95: 0,-13 + 96: -1,-13 + 97: 0,-14 + 98: -3,-14 + 99: -4,-15 + 100: -3,-15 + 101: -2,-15 + 102: 0,-15 + 103: 0,-15 + 104: 1,-15 + 105: 1,-14 + 106: 1,-15 + 107: 1,-16 + 108: 1,-17 + 109: 1,-18 + 110: 2,-18 + 111: 3,-18 + 112: 4,-18 + 113: 5,-18 + 114: 5,-17 + 115: 4,-17 + 116: 3,-17 + 117: 2,-17 + 118: 2,-16 + 119: 3,-16 + 120: 3,-15 + 121: 2,-15 + 122: 4,-16 + 123: 5,-16 + 124: 5,-15 + 125: 4,-15 + 126: -5,-15 + 127: -6,-15 + 128: -7,-15 + 129: -8,-15 + 130: -8,-16 + 131: -7,-16 + 132: -5,-16 + 133: -6,-16 + 134: -5,-17 + 135: -6,-17 + 136: -7,-17 + 137: -8,-17 + 138: -8,-18 + 139: -7,-18 + 140: -6,-18 + 141: -5,-18 + 142: -5,-19 + 143: -4,-18 + 144: -4,-17 + 145: -4,-19 + 146: -4,-20 + 147: -4,-20 + 148: -3,-20 + 149: -5,-20 + 150: -4,-20 151: -4,-20 152: -4,-20 - 153: -3,-20 - 154: -5,-20 - 155: -4,-20 - 156: -4,-20 - 157: -4,-20 - 158: -2,-20 - 159: -2,-20 - 160: -2,-20 - 161: -2,-20 - 162: -2,-20 - 163: -1,-20 - 164: -1,-20 - 165: 0,-20 - 166: 1,-20 - 167: 1,-19 - 168: 0,-19 - 169: 1,-20 - 170: 2,-20 - 171: 2,-19 - 172: 2,-18 - 173: 1,-18 - 174: -1,-22 - 175: -2,-22 - 176: -1,-21 - 177: -2,-21 - 178: -1,-9 - 179: -1,-9 - 180: -2,-7 - 181: -2,-7 - 182: -2,-7 - 183: -2,1 - 184: -2,1 - 185: -2,1 - 186: -2,1 - 187: -2,1 + 153: -2,-20 + 154: -2,-20 + 155: -2,-20 + 156: -2,-20 + 157: -2,-20 + 158: -1,-20 + 159: -1,-20 + 160: 0,-20 + 161: 1,-20 + 162: 1,-19 + 163: 0,-19 + 164: 1,-20 + 165: 2,-20 + 166: 2,-19 + 167: 2,-18 + 168: 1,-18 + 169: -1,-22 + 170: -2,-22 + 171: -1,-21 + 172: -2,-21 + 173: -1,-9 + 174: -1,-9 + 175: -2,-7 + 176: -2,-7 + 177: -2,-7 + 178: -2,1 + 179: -2,1 + 180: -2,1 + 181: -2,1 + 182: -2,1 + 183: -2,-4 + 184: -2,-4 + 185: -2,-4 + 186: -2,-4 + 187: -2,-4 188: -2,-4 - 189: -2,-4 - 190: -2,-4 - 191: -2,-4 - 192: -2,-4 - 193: -2,-4 - 194: 5,-5 - 195: 5,-5 - 196: 5,-5 - 197: 5,-5 - 198: -5,-11 - 199: -4,-11 - 200: -5,-12 - 201: -6,-12 - 202: -6,-13 - 203: -7,-13 - 204: -6,-13 - 205: -5,-13 - 206: 2,-13 - 207: 2,-12 - 208: 2,-11 - 209: 3,-12 - 210: 3,-13 - 211: 4,-13 - 212: 4,-13 - 213: 4,-13 - 214: 3,-13 - 215: 3,-13 - 216: 3,-12 - 217: 2,-12 - 218: 2,-13 - 219: 1,-12 - 220: 2,-2 - 221: 1,-2 - 222: -5,-2 - 223: -6,-2 - 224: -4,-2 - - node: - cleanable: True - color: '#6F0000FF' - id: a - decals: - 227: -1.5498865,-14.49172 - - node: - cleanable: True - color: '#6F0000FF' - id: m - decals: - 228: -0.93530303,-14.887829 - - node: - cleanable: True - color: '#6F0000FF' - id: s - decals: - 226: -2.1748865,-14.147731 + 189: 5,-5 + 190: 5,-5 + 191: 5,-5 + 192: 5,-5 + 193: -5,-11 + 194: -4,-11 + 195: -5,-12 + 196: -6,-12 + 197: -6,-13 + 198: -7,-13 + 199: -6,-13 + 200: -5,-13 + 201: 2,-13 + 202: 2,-12 + 203: 2,-11 + 204: 3,-12 + 205: 4,-13 + 206: 4,-13 + 207: 4,-13 + 208: 3,-12 + 209: 2,-12 + 210: 2,-13 + 211: 1,-12 + 212: 2,-2 + 213: 1,-2 + 214: -5,-2 + 215: -6,-2 + 216: -4,-2 + 217: 4,-12 + 218: 4,-12 + 219: 4,-12 + 220: 4,-12 + 221: -1,-12 + 222: -2,-12 + 223: 3,-13 + 224: -2,-14 + 225: -1,-15 type: DecalGrid - version: 2 data: @@ -422,94 +399,56 @@ entities: type: BecomesStation - proto: Airlock entities: - - uid: 2 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - secondsUntilStateChange: -18234.533 - state: Opening - type: Door - uid: 3 components: - rot: 1.5707963267948966 rad pos: -0.5,-4.5 parent: 1 type: Transform - - secondsUntilStateChange: -18234.75 - state: Opening - type: Door - - uid: 106 + - uid: 4 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 1 type: Transform -- proto: AirlockCaptainLocked +- proto: AirlockExternalGlass entities: - - uid: 4 + - uid: 11 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 parent: 1 type: Transform -- proto: AirlockGlass - entities: - - uid: 5 + - uid: 46 components: - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + pos: -6.5,-4.5 parent: 1 type: Transform - - secondsUntilStateChange: -18233.55 - state: Opening - type: Door +- proto: AirlockGlass + entities: - uid: 6 components: - rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 type: Transform - - secondsUntilStateChange: -18233.166 - state: Opening - type: Door - uid: 7 components: - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + pos: -1.5,-2.5 parent: 1 type: Transform - - secondsUntilStateChange: -21350.906 - state: Opening - type: Door - uid: 9 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + - pos: -0.5,-9.5 parent: 1 type: Transform - - secondsUntilStateChange: -21360.121 - state: Opening - type: Door - uid: 10 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-9.5 - parent: 1 - type: Transform - - secondsUntilStateChange: -21359.756 - state: Opening - type: Door - - uid: 11 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 + - pos: -1.5,-9.5 parent: 1 type: Transform - - secondsUntilStateChange: -21350.072 - state: Opening - type: Door - proto: AirlockGlassShuttle entities: - uid: 13 @@ -554,6 +493,24 @@ entities: - pos: -0.5,-20.5 parent: 1 type: Transform +- proto: AirlockMercenaryGlassLocked + entities: + - uid: 5 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - links: + - 285 + type: DeviceLinkSink +- proto: AirlockMercenaryLocked + entities: + - uid: 2 + components: + - pos: -3.5,-12.5 + parent: 1 + type: Transform - proto: AirlockShuttle entities: - uid: 53 @@ -564,9 +521,9 @@ entities: type: Transform - proto: AmeController entities: - - uid: 240 + - uid: 208 components: - - pos: 0.5,-15.5 + - pos: 0.5,-17.5 parent: 1 type: Transform - injecting: True @@ -575,15 +532,15 @@ entities: AmeFuel: !type:ContainerSlot showEnts: False occludes: True - ent: 241 + ent: 210 type: ContainerContainer - proto: AmeJar entities: - - uid: 241 + - uid: 210 components: - flags: InContainer type: MetaData - - parent: 240 + - parent: 208 type: Transform - canCollide: False type: Physics @@ -682,11 +639,6 @@ entities: - pos: -1.5,-22.5 parent: 1 type: Transform - - uid: 43 - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform - uid: 44 components: - rot: 3.141592653589793 rad @@ -729,18 +681,6 @@ entities: pos: -9.5,-6.5 parent: 1 type: Transform - - uid: 54 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 56 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - uid: 107 components: - pos: -9.5,-7.5 @@ -750,7 +690,7 @@ entities: entities: - uid: 60 components: - - pos: 3.5,-11.5 + - pos: 4.5,-12.5 parent: 1 type: Transform - uid: 61 @@ -768,8 +708,7 @@ entities: type: Transform - uid: 63 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 + - pos: 4.5,-12.5 parent: 1 type: Transform - uid: 64 @@ -851,14 +790,19 @@ entities: - pos: -2.5,-12.5 parent: 1 type: Transform - - uid: 46 + - uid: 54 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 56 components: - - pos: 0.5,-6.5 + - pos: -1.5,-19.5 parent: 1 type: Transform - uid: 77 components: - - pos: 1.5,-20.5 + - pos: -5.5,-16.5 parent: 1 type: Transform - uid: 78 @@ -881,19 +825,24 @@ entities: - pos: -8.5,-8.5 parent: 1 type: Transform - - uid: 87 + - uid: 83 components: - - pos: 3.5,-7.5 + - pos: -0.5,-3.5 parent: 1 type: Transform - - uid: 88 + - uid: 85 components: - - pos: 2.5,-6.5 + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -0.5,0.5 parent: 1 type: Transform - uid: 89 components: - - pos: 1.5,-6.5 + - pos: -6.5,-16.5 parent: 1 type: Transform - uid: 92 @@ -903,12 +852,12 @@ entities: type: Transform - uid: 93 components: - - pos: -5.5,-10.5 + - pos: 3.5,-16.5 parent: 1 type: Transform - uid: 95 components: - - pos: -3.5,-5.5 + - pos: 4.5,-16.5 parent: 1 type: Transform - uid: 96 @@ -916,6 +865,21 @@ entities: - pos: 2.5,-13.5 parent: 1 type: Transform + - uid: 104 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 4.5,-17.5 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -0.5,-19.5 + parent: 1 + type: Transform - uid: 110 components: - pos: 2.5,-18.5 @@ -938,12 +902,22 @@ entities: type: Transform - uid: 114 components: - - pos: 4.5,-14.5 + - pos: -2.5,-19.5 + parent: 1 + type: Transform + - uid: 115 + components: + - pos: 0.5,-19.5 + parent: 1 + type: Transform + - uid: 117 + components: + - pos: -0.5,-1.5 parent: 1 type: Transform - uid: 118 components: - - pos: -5.5,-17.5 + - pos: -0.5,-0.5 parent: 1 type: Transform - uid: 120 @@ -953,12 +927,7 @@ entities: type: Transform - uid: 121 components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 122 - components: - - pos: -0.5,-3.5 + - pos: -1.5,0.5 parent: 1 type: Transform - uid: 124 @@ -986,11 +955,6 @@ entities: - pos: 4.5,-18.5 parent: 1 type: Transform - - uid: 132 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - uid: 138 components: - pos: -4.5,-18.5 @@ -1011,14 +975,9 @@ entities: - pos: -2.5,-2.5 parent: 1 type: Transform - - uid: 143 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - uid: 147 components: - - pos: 1.5,-5.5 + - pos: 2.5,-11.5 parent: 1 type: Transform - uid: 149 @@ -1026,21 +985,6 @@ entities: - pos: -4.5,-7.5 parent: 1 type: Transform - - uid: 150 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 151 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 152 - components: - - pos: -5.5,-7.5 - parent: 1 - type: Transform - uid: 155 components: - pos: 6.5,-8.5 @@ -1071,56 +1015,16 @@ entities: - pos: -0.5,-7.5 parent: 1 type: Transform - - uid: 166 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 168 - components: - - pos: -8.5,-2.5 - parent: 1 - type: Transform - uid: 170 components: - pos: -6.5,-4.5 parent: 1 type: Transform - - uid: 173 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - uid: 174 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - uid: 176 components: - pos: -8.5,-8.5 parent: 1 type: Transform - - uid: 177 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - - uid: 181 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 183 - components: - - pos: -6.5,-17.5 - parent: 1 - type: Transform - uid: 185 components: - pos: 1.5,-16.5 @@ -1141,26 +1045,6 @@ entities: - pos: -4.5,-17.5 parent: 1 type: Transform - - uid: 192 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform - - uid: 193 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform - - uid: 194 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform - - uid: 195 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - uid: 197 components: - pos: -4.5,-16.5 @@ -1171,11 +1055,6 @@ entities: - pos: -4.5,-15.5 parent: 1 type: Transform - - uid: 199 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - uid: 200 components: - pos: 2.5,-18.5 @@ -1191,21 +1070,11 @@ entities: - pos: 6.5,-9.5 parent: 1 type: Transform - - uid: 206 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - uid: 207 components: - pos: 2.5,-19.5 parent: 1 type: Transform - - uid: 208 - components: - - pos: 2.5,-20.5 - parent: 1 - type: Transform - uid: 211 components: - pos: 6.5,-3.5 @@ -1216,21 +1085,11 @@ entities: - pos: -4.5,-19.5 parent: 1 type: Transform - - uid: 215 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - uid: 228 components: - pos: -4.5,-3.5 parent: 1 type: Transform - - uid: 229 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - uid: 232 components: - pos: -2.5,-7.5 @@ -1266,99 +1125,34 @@ entities: - pos: 0.5,-12.5 parent: 1 type: Transform - - uid: 263 + - uid: 270 components: - - pos: 1.5,-20.5 + - pos: -1.5,-20.5 parent: 1 type: Transform - - uid: 264 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 265 - components: - - pos: 0.5,-20.5 - parent: 1 - type: Transform - - uid: 266 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 267 - components: - - pos: -2.5,-20.5 - parent: 1 - type: Transform - - uid: 268 - components: - - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 269 - components: - - pos: -3.5,-20.5 - parent: 1 - type: Transform - - uid: 270 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 271 - components: - - pos: 2.5,-20.5 - parent: 1 - type: Transform - - uid: 272 - components: - - pos: 0.5,-21.5 - parent: 1 - type: Transform - - uid: 273 - components: - - pos: 0.5,-22.5 - parent: 1 - type: Transform - - uid: 274 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 275 - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: -2.5,-22.5 - parent: 1 - type: Transform - - uid: 277 + - uid: 303 components: - - pos: -2.5,-21.5 + - pos: 2.5,-8.5 parent: 1 type: Transform - - uid: 278 + - uid: 314 components: - - pos: -2.5,-20.5 + - pos: -5.5,-19.5 parent: 1 type: Transform - - uid: 293 + - uid: 315 components: - - pos: 2.5,-6.5 + - pos: -6.5,-19.5 parent: 1 type: Transform - - uid: 303 + - uid: 316 components: - - pos: 2.5,-8.5 + - pos: 3.5,-19.5 parent: 1 type: Transform - - uid: 324 + - uid: 317 components: - - pos: -6.5,-10.5 + - pos: 4.5,-19.5 parent: 1 type: Transform - uid: 347 @@ -1371,16 +1165,6 @@ entities: - pos: -3.5,-12.5 parent: 1 type: Transform - - uid: 354 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - uid: 357 components: - pos: 2.5,-14.5 @@ -1396,16 +1180,6 @@ entities: - pos: -5.5,-3.5 parent: 1 type: Transform - - uid: 360 - components: - - pos: 6.5,-2.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: 6.5,-10.5 - parent: 1 - type: Transform - uid: 364 components: - pos: -8.5,-3.5 @@ -1416,11 +1190,6 @@ entities: - pos: -8.5,-9.5 parent: 1 type: Transform - - uid: 370 - components: - - pos: -8.5,-10.5 - parent: 1 - type: Transform - uid: 374 components: - pos: -7.5,-4.5 @@ -1431,11 +1200,6 @@ entities: - pos: 0.5,-3.5 parent: 1 type: Transform - - uid: 384 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - uid: 502 components: - pos: -2.5,-3.5 @@ -1446,11 +1210,6 @@ entities: - pos: -8.5,-7.5 parent: 1 type: Transform - - uid: 592 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - uid: 655 components: - pos: 2.5,-3.5 @@ -1530,42 +1289,32 @@ entities: entities: - uid: 30 components: - - pos: 0.5,-17.5 + - pos: 1.5,-14.5 parent: 1 type: Transform - uid: 31 components: - - pos: 2.5,-16.5 + - pos: 2.5,-14.5 parent: 1 type: Transform - uid: 32 components: - - pos: -1.5,-18.5 + - pos: 0.5,-15.5 parent: 1 type: Transform - uid: 34 components: - - pos: -4.5,-17.5 + - pos: 0.5,-14.5 parent: 1 type: Transform - - uid: 35 - components: - - pos: 0.5,-18.5 - parent: 1 - type: Transform - - uid: 71 - components: - - pos: -3.5,-18.5 - parent: 1 - type: Transform - - uid: 117 + - uid: 43 components: - - pos: 1.5,-17.5 + - pos: 0.5,-16.5 parent: 1 type: Transform - - uid: 210 + - uid: 58 components: - - pos: 0.5,-15.5 + - pos: 0.5,-17.5 parent: 1 type: Transform - uid: 227 @@ -1573,49 +1322,9 @@ entities: - pos: -4.5,-13.5 parent: 1 type: Transform - - uid: 231 - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 233 - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform - - uid: 234 - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 235 - components: - - pos: -0.5,-18.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform - - uid: 259 - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - uid: 285 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - uid: 286 components: - - pos: 2.5,-14.5 + - pos: -0.5,-14.5 parent: 1 type: Transform - uid: 294 @@ -1623,29 +1332,24 @@ entities: - pos: 2.5,-13.5 parent: 1 type: Transform - - uid: 298 - components: - - pos: 2.5,-17.5 - parent: 1 - type: Transform - - uid: 343 + - uid: 324 components: - - pos: 2.5,-15.5 + - pos: -1.5,-14.5 parent: 1 type: Transform - - uid: 350 + - uid: 326 components: - - pos: -0.5,-15.5 + - pos: -2.5,-14.5 parent: 1 type: Transform - - uid: 351 + - uid: 328 components: - - pos: 2.5,-16.5 + - pos: -3.5,-14.5 parent: 1 type: Transform - - uid: 444 + - uid: 329 components: - - pos: -2.5,-18.5 + - pos: -4.5,-14.5 parent: 1 type: Transform - proto: CableMV @@ -1655,16 +1359,6 @@ entities: - pos: -7.5,-11.5 parent: 1 type: Transform - - uid: 83 - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform - - uid: 85 - components: - - pos: 5.5,-18.5 - parent: 1 - type: Transform - uid: 90 components: - pos: 4.5,-18.5 @@ -1680,64 +1374,59 @@ entities: - pos: -4.5,-11.5 parent: 1 type: Transform - - uid: 104 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 105 + - uid: 108 components: - - pos: -4.5,-16.5 + - pos: -3.5,-6.5 parent: 1 type: Transform - - uid: 108 + - uid: 116 components: - - pos: -4.5,-16.5 + - pos: -2.5,-6.5 parent: 1 type: Transform - - uid: 109 + - uid: 132 components: - - pos: -4.5,-15.5 + - pos: 5.5,-16.5 parent: 1 type: Transform - - uid: 115 + - uid: 143 components: - - pos: -4.5,-17.5 + - pos: 4.5,-16.5 parent: 1 type: Transform - - uid: 116 + - uid: 152 components: - - pos: -4.5,-18.5 + - pos: -1.5,-6.5 parent: 1 type: Transform - - uid: 190 + - uid: 166 components: - - pos: 2.5,-14.5 + - pos: -1.5,-5.5 parent: 1 type: Transform - - uid: 196 + - uid: 173 components: - - pos: 2.5,-15.5 + - pos: -1.5,-4.5 parent: 1 type: Transform - - uid: 203 + - uid: 174 components: - - pos: 2.5,-16.5 + - pos: 4.5,-17.5 parent: 1 type: Transform - - uid: 204 + - uid: 177 components: - - pos: 6.5,-18.5 + - pos: -1.5,-3.5 parent: 1 type: Transform - - uid: 205 + - uid: 180 components: - - pos: 2.5,-17.5 + - pos: -4.5,-13.5 parent: 1 type: Transform - - uid: 221 + - uid: 190 components: - - pos: 3.5,-18.5 + - pos: 2.5,-14.5 parent: 1 type: Transform - uid: 225 @@ -1745,16 +1434,6 @@ entities: - pos: 4.5,-14.5 parent: 1 type: Transform - - uid: 245 - components: - - pos: -8.5,-18.5 - parent: 1 - type: Transform - - uid: 246 - components: - - pos: -8.5,-17.5 - parent: 1 - type: Transform - uid: 256 components: - pos: 5.5,-14.5 @@ -1770,26 +1449,6 @@ entities: - pos: -7.5,-14.5 parent: 1 type: Transform - - uid: 281 - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform - - uid: 287 - components: - - pos: -5.5,-18.5 - parent: 1 - type: Transform - - uid: 301 - components: - - pos: -6.5,-18.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: -7.5,-18.5 - parent: 1 - type: Transform - uid: 305 components: - pos: -4.5,-10.5 @@ -1815,46 +1474,6 @@ entities: - pos: -4.5,-6.5 parent: 1 type: Transform - - uid: 310 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 311 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 312 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform - - uid: 313 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 314 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 315 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 316 - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 317 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - uid: 318 components: - pos: 4.5,-10.5 @@ -1862,7 +1481,7 @@ entities: type: Transform - uid: 319 components: - - pos: 4.5,-11.5 + - pos: 5.5,-10.5 parent: 1 type: Transform - uid: 325 @@ -1870,26 +1489,11 @@ entities: - pos: 2.5,-13.5 parent: 1 type: Transform - - uid: 326 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - uid: 327 components: - pos: 3.5,-10.5 parent: 1 type: Transform - - uid: 328 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - uid: 330 components: - pos: 2.5,-9.5 @@ -1925,14 +1529,14 @@ entities: - pos: 6.5,-16.5 parent: 1 type: Transform - - uid: 341 + - uid: 344 components: - - pos: 6.5,-17.5 + - pos: -4.5,-12.5 parent: 1 type: Transform - - uid: 344 + - uid: 353 components: - - pos: -4.5,-12.5 + - pos: -7.5,-10.5 parent: 1 type: Transform - uid: 367 @@ -1945,16 +1549,6 @@ entities: - pos: -6.5,-10.5 parent: 1 type: Transform - - uid: 369 - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform - - uid: 375 - components: - - pos: -2.5,-4.5 - parent: 1 - type: Transform - uid: 376 components: - pos: -2.5,-3.5 @@ -1965,31 +1559,6 @@ entities: - pos: -2.5,-2.5 parent: 1 type: Transform - - uid: 378 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 379 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 380 - components: - - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 381 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 382 - components: - - pos: 0.5,-4.5 - parent: 1 - type: Transform - uid: 570 components: - pos: -8.5,-14.5 @@ -2015,56 +1584,17 @@ entities: - pos: -4.5,-14.5 parent: 1 type: Transform - - uid: 710 - components: - - pos: -3.5,-11.5 - parent: 1 - type: Transform - uid: 740 components: - pos: -5.5,-14.5 parent: 1 type: Transform - - uid: 744 - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - uid: 746 - components: - - pos: -1.5,-17.5 - parent: 1 - type: Transform - - uid: 747 - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform - - uid: 762 - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform - - uid: 763 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 769 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 770 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - proto: CableTerminal entities: - - uid: 222 + - uid: 35 components: - - pos: 0.5,-16.5 + - rot: 3.141592653589793 rad + pos: 0.5,-16.5 parent: 1 type: Transform - proto: CargoPallet @@ -2248,76 +1778,24 @@ entities: entities: - uid: 398 components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 423 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 424 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- proto: CrateChemistryD - entities: - - uid: 401 - components: - - pos: -5.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 0.5,0.5 parent: 1 type: Transform - - locked: False - type: Lock - - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - type: Fixtures - - open: True - removedMasks: 20 - type: EntityStorage - - isPlaceable: True - type: PlaceableSurface -- proto: CrateChemistryP +- proto: ComputerShuttle entities: - - uid: 280 + - uid: 423 components: - - pos: -5.5,-14.5 + - pos: -0.5,1.5 parent: 1 type: Transform - - locked: False - type: Lock -- proto: CrateChemistryS +- proto: ComputerStationRecords entities: - - uid: 449 + - uid: 424 components: - - pos: -7.5,-14.5 + - pos: -1.5,1.5 parent: 1 type: Transform - - locked: False - type: Lock - proto: CrowbarRed entities: - uid: 425 @@ -2333,6 +1811,14 @@ entities: pos: 0.5,-9.5 parent: 1 type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 75 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + type: Transform - proto: DoorElectronics entities: - uid: 428 @@ -2419,15 +1905,42 @@ entities: - pos: -2.6394038,1.270113 parent: 1 type: Transform -- proto: EggSpider +- proto: EmergencyLight entities: - - uid: 457 + - uid: 301 components: - - pos: -5.962913,-15.963582 + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 310 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - uid: 313 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-6.5 parent: 1 type: Transform -- proto: EmergencyLight - entities: - uid: 458 components: - pos: -4.5,-6.5 @@ -2475,16 +1988,12 @@ entities: parent: 1 type: Transform - ShutdownSubscribers: - - 472 - 477 - 478 - - 476 type: DeviceNetwork - devices: - 478 - 477 - - 472 - - 476 type: DeviceList - uid: 465 components: @@ -2493,18 +2002,12 @@ entities: parent: 1 type: Transform - ShutdownSubscribers: - - 475 - - 473 - 470 - 471 - - 474 type: DeviceNetwork - devices: - 470 - 471 - - 474 - - 475 - - 473 type: DeviceList - uid: 466 components: @@ -2539,6 +2042,18 @@ entities: type: Lock - proto: Firelock entities: + - uid: 183 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + type: Transform + - uid: 194 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + type: Transform - uid: 468 components: - rot: -1.5707963267948966 rad @@ -2575,51 +2090,26 @@ entities: type: DeviceNetwork - proto: FirelockEdge entities: - - uid: 472 + - uid: 181 components: - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 464 - type: DeviceNetwork - - uid: 473 - components: - - pos: -1.5,-4.5 + pos: -0.5,-7.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 465 - type: DeviceNetwork - - uid: 474 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 465 - type: DeviceNetwork - - uid: 475 +- proto: FirelockGlass + entities: + - uid: 192 components: - - pos: -0.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 465 - type: DeviceNetwork - - uid: 476 + - uid: 193 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 1 type: Transform - - ShutdownSubscribers: - - 464 - type: DeviceNetwork -- proto: FirelockGlass - entities: - uid: 477 components: - pos: -1.5,-20.5 @@ -2672,14 +2162,6 @@ entities: - ShutdownSubscribers: - 466 type: DeviceNetwork -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 14 - components: - - rot: -1.5707963267948966 rad - pos: -5.4220324,-6.501718 - parent: 1 - type: Transform - proto: FoodPlateSmallTrash entities: - uid: 486 @@ -2694,103 +2176,247 @@ entities: type: Transform - proto: GasPassiveVent entities: + - uid: 101 + components: + - pos: -7.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 150 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 488 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 parent: 1 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - uid: 489 components: - rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 1 type: Transform - - uid: 490 + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 268 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 221 + components: + - pos: 2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 275 + components: + - pos: -1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 88 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 151 components: - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 + pos: 4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 168 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 195 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 199 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 203 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 204 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 205 + components: + - pos: -1.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 229 + components: + - pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 264 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 269 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 491 + - uid: 272 components: - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 1.5,-16.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeBend - entities: - - uid: 492 + - uid: 273 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-16.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 493 + - uid: 276 components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 + - pos: -1.5,-2.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 494 + - uid: 277 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 + - pos: -1.5,-1.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 495 + - uid: 278 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-16.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 496 + - uid: 281 components: - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 + pos: -1.5,-16.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 335 + - uid: 287 components: - - rot: 3.141592653589793 rad - pos: -4.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-16.5 parent: 1 type: Transform - - uid: 497 + - color: '#990000FF' + type: AtmosPipeColor + - uid: 293 components: - - pos: -3.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 498 + - uid: 298 components: - - rot: 3.141592653589793 rad - pos: 2.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 499 + - uid: 335 components: - rot: 3.141592653589793 rad - pos: 2.5,-11.5 + pos: -4.5,-15.5 parent: 1 type: Transform - color: '#990000FF' @@ -2834,13 +2460,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 507 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 508 components: - pos: -4.5,-5.5 @@ -2855,13 +2474,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 510 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 511 components: - pos: 2.5,-7.5 @@ -2876,125 +2488,77 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 513 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 514 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 515 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 516 + - uid: 521 components: - - rot: 3.141592653589793 rad - pos: -6.5,-3.5 + - pos: -4.5,-13.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 517 + - uid: 523 components: - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 518 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + pos: 3.5,-16.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 519 + - uid: 524 components: - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 + pos: -5.5,-16.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 520 + - uid: 525 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 521 + - uid: 526 components: - - pos: -4.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-9.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 522 +- proto: GasPipeTJunction + entities: + - uid: 169 components: - - pos: 2.5,-13.5 + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 523 + - uid: 196 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 524 + - uid: 265 components: - rot: 1.5707963267948966 rad - pos: -5.5,-16.5 + pos: -4.5,-6.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 525 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 526 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform -- proto: GasPipeTJunction - entities: - uid: 527 components: - rot: -1.5707963267948966 rad pos: -4.5,-9.5 parent: 1 type: Transform - - uid: 528 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - color: '#990000FF' type: AtmosPipeColor - uid: 529 @@ -3021,14 +2585,6 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 532 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 533 components: - rot: -1.5707963267948966 rad @@ -3045,71 +2601,81 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 535 - components: - - pos: -6.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - uid: 536 components: - rot: 1.5707963267948966 rad pos: 2.5,-9.5 parent: 1 type: Transform + - color: '#990000FF' + type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 537 + - uid: 106 components: - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -8.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 538 + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 187 components: - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 + pos: 6.5,-4.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 539 + - uid: 215 components: - - pos: -4.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 540 + - uid: 274 components: - - pos: 2.5,-3.5 + - pos: -1.5,-0.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 541 + - uid: 537 components: - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: 1.5,-10.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 542 + - uid: 538 components: - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 + pos: -3.5,-10.5 parent: 1 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 543 + - uid: 539 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 540 + components: + - pos: 2.5,-3.5 parent: 1 type: Transform - color: '#990000FF' @@ -3186,6 +2752,18 @@ entities: pos: 6.5,-14.5 parent: 1 type: Transform + - uid: 369 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 392 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform - uid: 402 components: - rot: 1.5707963267948966 rad @@ -3310,18 +2888,6 @@ entities: pos: 4.5,-10.5 parent: 1 type: Transform - - uid: 575 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1 - type: Transform - - uid: 576 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 1 - type: Transform - uid: 577 components: - rot: 1.5707963267948966 rad @@ -3470,9 +3036,30 @@ entities: entities: - uid: 603 components: - - pos: -5.5,-11.5 + - anchored: True + pos: -5.5,-11.5 parent: 1 type: Transform + - bodyType: Static + type: Physics + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: LockerParamedicFilledHardsuit entities: - uid: 589 @@ -3480,6 +3067,24 @@ entities: - pos: 0.5,-5.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: LockerSalvageSpecialistFilledHardsuit entities: - uid: 394 @@ -3487,6 +3092,24 @@ entities: - pos: 2.5,-19.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: LockerWallMedicalFilled entities: - uid: 591 @@ -3494,6 +3117,24 @@ entities: - pos: 1.5,-5.5 parent: 1 type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage - proto: MachineFrameDestroyed entities: - uid: 593 @@ -3506,13 +3147,6 @@ entities: - pos: 3.5,-14.5 parent: 1 type: Transform -- proto: MagazineBoxMagnum - entities: - - uid: 73 - components: - - pos: 1.6691186,-1.316844 - parent: 1 - type: Transform - proto: MedicalBed entities: - uid: 596 @@ -3931,6 +3565,18 @@ entities: pos: -8.5,-15.5 parent: 1 type: Transform + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 396 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 1 + type: Transform - uid: 404 components: - rot: 1.5707963267948966 rad @@ -4021,18 +3667,6 @@ entities: pos: 4.5,-10.5 parent: 1 type: Transform - - uid: 673 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 1 - type: Transform - - uid: 674 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 - parent: 1 - type: Transform - uid: 675 components: - rot: 1.5707963267948966 rad @@ -4197,6 +3831,16 @@ entities: type: DeviceLinkSink - proto: SignalButton entities: + - uid: 285 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + type: Transform + - linkedPorts: + 5: + - Pressed: DoorBolt + type: DeviceLinkSource - uid: 400 components: - rot: 1.5707963267948966 rad @@ -4242,12 +3886,6 @@ entities: pos: -5.5,-2.5 parent: 1 type: Transform - - uid: 687 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform - proto: SignGravity entities: - uid: 688 @@ -4263,6 +3901,14 @@ entities: - pos: 0.5,-10.5 parent: 1 type: Transform +- proto: SignSecureSmallRed + entities: + - uid: 206 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform - proto: SinkWide entities: - uid: 690 @@ -4273,9 +3919,9 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 230 + - uid: 71 components: - - pos: 0.5,-17.5 + - pos: 0.5,-15.5 parent: 1 type: Transform - proto: SpawnPointLatejoin @@ -4300,25 +3946,14 @@ entities: - pos: -4.5,-11.5 parent: 1 type: Transform -- proto: SpeedLoaderMagnum +- proto: SpiderWeb entities: - - uid: 612 - components: - - pos: 1.8754818,-1.6658154 - parent: 1 - type: Transform - - uid: 614 - components: - - pos: 1.5213151,-1.7179356 - parent: 1 - type: Transform - - uid: 616 + - uid: 14 components: - - pos: 1.7088151,-1.707511 + - rot: 3.141592653589793 rad + pos: 0.5,-15.5 parent: 1 type: Transform -- proto: SpiderWeb - entities: - uid: 33 components: - pos: -8.5,-7.5 @@ -4330,11 +3965,6 @@ entities: pos: -4.5,-19.5 parent: 1 type: Transform - - uid: 58 - components: - - pos: -0.5,-8.5 - parent: 1 - type: Transform - uid: 59 components: - pos: -0.5,-19.5 @@ -4357,6 +3987,12 @@ entities: - pos: -4.5,-2.5 parent: 1 type: Transform + - uid: 212 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform - uid: 279 components: - rot: -1.5707963267948966 rad @@ -4415,12 +4051,6 @@ entities: pos: -2.5,-17.5 parent: 1 type: Transform - - uid: 640 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-17.5 - parent: 1 - type: Transform - uid: 681 components: - rot: -1.5707963267948966 rad @@ -4442,11 +4072,6 @@ entities: - pos: -4.5,-16.5 parent: 1 type: Transform - - uid: 698 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - uid: 699 components: - rot: -1.5707963267948966 rad @@ -4526,27 +4151,11 @@ entities: pos: -9.5,-5.5 parent: 1 type: Transform - - uid: 791 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 830 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - uid: 832 components: - pos: -6.5,-16.5 parent: 1 type: Transform - - uid: 836 - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - uid: 856 components: - pos: -6.5,-15.5 @@ -4587,26 +4196,11 @@ entities: - pos: -2.5,-13.5 parent: 1 type: Transform - - uid: 876 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - uid: 877 components: - pos: 2.5,-2.5 parent: 1 type: Transform - - uid: 878 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 879 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - uid: 881 components: - pos: 5.5,-5.5 @@ -4688,25 +4282,56 @@ entities: - pos: -7.5,-7.5 parent: 1 type: Transform - - locked: False - type: Lock -- proto: SuitStorageWallmountEVAPrisoner + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageEVAPrisoner entities: - - uid: 392 + - uid: 57 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-12.5 + - pos: 4.5,-11.5 parent: 1 type: Transform -- proto: SuitStorageWallmountMercenary + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: SuitStorageMercenary entities: - - uid: 353 + - uid: 73 components: - - pos: -4.5,-9.5 + - pos: -6.5,-11.5 parent: 1 type: Transform - - locked: False - type: Lock - air: volume: 200 immutable: False @@ -4805,98 +4430,98 @@ entities: type: Transform - proto: Thruster entities: - - uid: 101 + - uid: 216 components: - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 + pos: -9.5,-10.5 parent: 1 type: Transform - - uid: 169 + - uid: 222 components: - rot: 3.141592653589793 rad pos: -8.5,-11.5 parent: 1 type: Transform - - uid: 171 + - uid: 230 components: - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 + pos: 7.5,-10.5 parent: 1 type: Transform - - uid: 212 + - uid: 231 components: - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 + pos: -8.5,-9.5 parent: 1 type: Transform - - uid: 216 + - uid: 233 components: - rot: -1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 type: Transform - - uid: 253 + - uid: 234 components: - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 + pos: 6.5,-9.5 parent: 1 type: Transform - - uid: 362 + - uid: 235 components: - rot: 3.141592653589793 rad pos: 6.5,-11.5 parent: 1 type: Transform - - uid: 363 + - uid: 238 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 + - pos: -8.5,-1.5 parent: 1 type: Transform - - uid: 737 + - uid: 240 components: - pos: 6.5,-1.5 parent: 1 type: Transform - - uid: 739 + - uid: 241 components: - - rot: -3.141592653589793 rad + - rot: 3.141592653589793 rad pos: -8.5,-19.5 parent: 1 type: Transform - - uid: 741 + - uid: 245 components: - - rot: -3.141592653589793 rad - pos: -6.5,-20.5 + - rot: 3.141592653589793 rad + pos: -7.5,-20.5 parent: 1 type: Transform - - uid: 742 + - uid: 246 components: - - rot: -3.141592653589793 rad - pos: 6.5,-19.5 + - rot: 3.141592653589793 rad + pos: 4.5,-20.5 parent: 1 type: Transform - - uid: 743 + - uid: 253 components: - - rot: -3.141592653589793 rad - pos: 4.5,-20.5 + - rot: 3.141592653589793 rad + pos: 6.5,-19.5 parent: 1 type: Transform - - uid: 745 + - uid: 259 components: - - pos: -8.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-2.5 parent: 1 type: Transform - - uid: 748 + - uid: 263 components: - - rot: -3.141592653589793 rad + - rot: 3.141592653589793 rad pos: 5.5,-20.5 parent: 1 type: Transform - - uid: 749 + - uid: 271 components: - - rot: -3.141592653589793 rad - pos: -7.5,-20.5 + - rot: 3.141592653589793 rad + pos: -6.5,-20.5 parent: 1 type: Transform - proto: TintedWindow @@ -4963,14 +4588,6 @@ entities: - pos: -8.5,-4.5 parent: 1 type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 187 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 1 - type: Transform - proto: WallReinforced entities: - uid: 37 @@ -5314,6 +4931,16 @@ entities: pos: 5.5,-13.5 parent: 1 type: Transform + - uid: 261 + components: + - pos: 1.5,-13.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -3.5,-13.5 + parent: 1 + type: Transform - uid: 288 components: - rot: 3.141592653589793 rad @@ -5495,12 +5122,6 @@ entities: pos: 7.5,-3.5 parent: 1 type: Transform - - uid: 261 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 1 - type: Transform - uid: 548 components: - pos: -9.5,-3.5 @@ -5577,12 +5198,6 @@ entities: pos: 3.5,-20.5 parent: 1 type: Transform - - uid: 848 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-13.5 - parent: 1 - type: Transform - uid: 853 components: - rot: 3.141592653589793 rad @@ -5605,18 +5220,18 @@ entities: type: Transform - proto: WardrobePrisonFilled entities: - - uid: 57 + - uid: 393 components: - - pos: 4.5,-12.5 + - pos: 3.5,-11.5 parent: 1 type: Transform - air: volume: 200 immutable: False - temperature: 293.14944 + temperature: 293.1496 moles: - - 1.4683481 - - 5.5237865 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -5638,9 +5253,9 @@ entities: type: Transform - id: Mayflower type: BecomesStation -- proto: WeaponRackWallmountedBase +- proto: WeaponRackWallmountedMercenary entities: - - uid: 75 + - uid: 280 components: - pos: -3.5,-0.5 parent: 1 @@ -5669,16 +5284,6 @@ entities: type: Transform - proto: WindoorSecure entities: - - uid: 861 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - uid: 862 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - uid: 863 components: - rot: -1.5707963267948966 rad diff --git a/Resources/Maps/_NF/Shuttles/stellaris.yml b/Resources/Maps/_NF/Shuttles/stellaris.yml new file mode 100644 index 00000000000..4a920483df1 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/stellaris.yml @@ -0,0 +1,4734 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorBar + 27: FloorDark + 30: FloorDarkHerringbone + 31: FloorDarkMini + 32: FloorDarkMono + 34: FloorDarkPavement + 42: FloorFreezer + 71: FloorRGlass + 72: FloorReinforced + 84: FloorSteel + 85: FloorSteelCheckerDark + 92: FloorSteelMono + 96: FloorTechMaint + 104: FloorWhiteMini + 110: FloorWood + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5,-0.453125 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAGwAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAAADAAAAAAAIAAAAAAAcQAAAAAAaAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Arrows + decals: + 63: -5,4 + 64: 5,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 50: -3,4 + 51: -2,4 + 52: 2,4 + 53: 3,4 + 54: 4,4 + 55: -4,4 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 10: 2,10 + 11: 2,10 + 12: 2,11 + 13: 2,11 + 14: 2,12 + 15: 2,12 + - node: + angle: 1.5707963267948966 rad + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 16: 2,12 + 17: 2,12 + 18: 1,12 + 19: 1,12 + 20: 0,12 + 21: 0,12 + 22: -1,12 + 23: -1,12 + 24: -2,12 + 25: -2,12 + - node: + angle: 3.141592653589793 rad + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 26: -2,12 + 27: -2,12 + 28: -2,11 + 29: -2,11 + 30: -2,10 + 31: -2,10 + - node: + angle: 4.71238898038469 rad + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 32: -2,10 + 33: -2,10 + 34: -1,10 + 35: -1,10 + 36: 1,10 + 37: 1,10 + 38: 2,10 + 39: 2,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 65: -7,-2 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 68: 7,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 0: 6,-6 + 4: 5,-6 + 5: 5,-5 + 61: -2,4 + 62: 2,4 + 69: 0,-9 + 70: 6,-9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1: 5,-5 + 2: 5,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7: 6,-6 + 8: 6,-6 + 45: -3,0 + 46: 4,1 + 47: 3,0 + 48: -4,2 + 49: -4,1 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 40: -3,2 + 41: -1,1 + 42: -3,0 + 43: 4,2 + 44: 2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 3: 6,-6 + 9: 5,-6 + 56: -4,5 + 57: -2,7 + 58: -3,4 + 59: 2,5 + 60: 5,6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6: 5,-6 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 66: -7,-4 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 67: 7,-4 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,-1: + 0: 65535 + -1,0: + 0: 65535 + 0,1: + 0: 65531 + 1: 4 + 0,2: + 0: 65535 + 0,3: + 0: 2047 + 1,0: + 0: 30583 + 1,1: + 0: 30583 + 1,2: + 0: 275 + 0,-3: + 0: 65520 + 0,-2: + 0: 65535 + 1,-3: + 0: 40816 + 2: 24576 + 1,-2: + 0: 65529 + 2: 6 + 1,-1: + 0: 65535 + 2,-2: + 0: 4096 + 2,-1: + 0: 4369 + -2,-2: + 0: 65262 + -2,-1: + 0: 65535 + -2,-3: + 0: 61120 + -1,-3: + 0: 65520 + -1,-2: + 0: 65535 + -2,0: + 0: 52428 + -2,1: + 0: 52428 + -2,2: + 0: 8 + -1,1: + 0: 65533 + 1: 2 + -1,2: + 0: 61439 + -1,3: + 0: 3310 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14996 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Stellaris + type: BecomesStation +- proto: AcousticGuitarInstrument + entities: + - uid: 418 + components: + - pos: -1.6301081,8.731225 + parent: 1 + type: Transform +- proto: AirAlarm + entities: + - uid: 584 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 601 + - 481 + - 567 + - 583 + - 582 + - 581 + - 580 + - 569 + type: DeviceNetwork + - devices: + - 580 + - 581 + - 582 + - 583 + - 567 + - 569 + - 481 + - 601 + type: DeviceList + - uid: 585 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 519 + - 457 + - 566 + - 598 + type: DeviceNetwork + - devices: + - 519 + - 457 + - 566 + - 598 + type: DeviceList + - uid: 586 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 476 + - 595 + - 509 + - 623 + - 622 + type: DeviceNetwork + - devices: + - 476 + - 595 + - 509 + - 623 + - 622 + type: DeviceList + - uid: 587 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 594 + - 475 + - 510 + - 620 + - 621 + type: DeviceNetwork + - devices: + - 475 + - 594 + - 510 + - 620 + - 621 + type: DeviceList + - uid: 588 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 483 + - 605 + - 596 + - 569 + type: DeviceNetwork + - devices: + - 483 + - 605 + - 596 + - 569 + type: DeviceList + - uid: 589 + components: + - pos: -0.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 592 + - 497 + - 550 + - 558 + - 559 + - 570 + type: DeviceNetwork + - devices: + - 592 + - 497 + - 550 + - 558 + - 559 + - 570 + type: DeviceList + - uid: 590 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 599 + - 557 + - 507 + - 570 + type: DeviceNetwork + - devices: + - 599 + - 557 + - 507 + - 570 + type: DeviceList + - uid: 591 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 567 + - 583 + - 582 + - 581 + - 580 + - 558 + - 559 + - 466 + - 593 + - 531 + - 568 + - 566 + - 620 + - 621 + - 623 + - 622 + type: DeviceNetwork + - devices: + - 579 + - 578 + - 577 + - 576 + - 575 + - 574 + - 573 + - 572 + - 571 + - 531 + - 593 + - 466 + - 559 + - 558 + - 580 + - 581 + - 582 + - 583 + - 567 + - 568 + - 566 + - 620 + - 621 + - 623 + - 622 + type: DeviceList +- proto: AirCanister + entities: + - uid: 508 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform +- proto: Airlock + entities: + - uid: 192 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + type: Transform + - uid: 193 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockCommand + entities: + - uid: 373 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + type: Transform +- proto: AirlockEngineering + entities: + - uid: 446 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + type: Transform +- proto: AirlockFreezer + entities: + - uid: 191 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform +- proto: AirlockGlass + entities: + - uid: 113 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - links: + - 617 + type: DeviceLinkSink + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - links: + - 149 + type: DeviceLinkSink +- proto: AirlockGlassShuttle + entities: + - uid: 235 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 236 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 1 + type: Transform + - uid: 237 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 238 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 1 + type: Transform +- proto: AirSensor + entities: + - uid: 592 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + type: DeviceNetwork + - uid: 593 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 594 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + type: DeviceNetwork + - uid: 595 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + type: DeviceNetwork + - uid: 596 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 588 + type: DeviceNetwork + - uid: 597 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 598 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 585 + type: DeviceNetwork + - uid: 599 + components: + - rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + type: DeviceNetwork +- proto: APCBasic + entities: + - uid: 252 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 253 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 254 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 255 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 352 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 216 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 217 + components: + - pos: 8.5,-3.5 + parent: 1 + type: Transform + - uid: 218 + components: + - pos: 8.5,-1.5 + parent: 1 + type: Transform + - uid: 219 + components: + - pos: -7.5,-3.5 + parent: 1 + type: Transform + - uid: 220 + components: + - pos: -7.5,-1.5 + parent: 1 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 211 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 212 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 213 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - uid: 214 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: BarSign + entities: + - uid: 207 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform +- proto: BenchSofaCorpCorner + entities: + - uid: 560 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - canCollide: False + bodyType: Static + type: Physics + - fixtures: {} + type: Fixtures +- proto: BenchSofaCorpLeft + entities: + - uid: 248 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BenchSofaCorpRight + entities: + - uid: 249 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: BikeHorn + entities: + - uid: 442 + components: + - pos: -1.6969528,12.535424 + parent: 1 + type: Transform +- proto: CableApcExtension + entities: + - uid: 295 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 296 + components: + - pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 297 + components: + - pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 298 + components: + - pos: -2.5,-10.5 + parent: 1 + type: Transform + - uid: 299 + components: + - pos: -1.5,-10.5 + parent: 1 + type: Transform + - uid: 300 + components: + - pos: -0.5,-10.5 + parent: 1 + type: Transform + - uid: 301 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform + - uid: 302 + components: + - pos: 1.5,-10.5 + parent: 1 + type: Transform + - uid: 303 + components: + - pos: 2.5,-10.5 + parent: 1 + type: Transform + - uid: 304 + components: + - pos: 3.5,-10.5 + parent: 1 + type: Transform + - uid: 305 + components: + - pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 306 + components: + - pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 307 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 308 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 309 + components: + - pos: -4.5,-6.5 + parent: 1 + type: Transform + - uid: 310 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 311 + components: + - pos: -1.5,-7.5 + parent: 1 + type: Transform + - uid: 312 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - uid: 313 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform + - uid: 314 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - uid: 315 + components: + - pos: 2.5,-7.5 + parent: 1 + type: Transform + - uid: 316 + components: + - pos: 3.5,-7.5 + parent: 1 + type: Transform + - uid: 317 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - uid: 318 + components: + - pos: 5.5,-7.5 + parent: 1 + type: Transform + - uid: 319 + components: + - pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 320 + components: + - pos: 5.5,-5.5 + parent: 1 + type: Transform + - uid: 321 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 322 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 323 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 324 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 325 + components: + - pos: -2.5,5.5 + parent: 1 + type: Transform + - uid: 326 + components: + - pos: -1.5,5.5 + parent: 1 + type: Transform + - uid: 327 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 328 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 329 + components: + - pos: -4.5,5.5 + parent: 1 + type: Transform + - uid: 330 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 331 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 332 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 333 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 334 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - uid: 335 + components: + - pos: -1.5,2.5 + parent: 1 + type: Transform + - uid: 336 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 337 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 338 + components: + - pos: 0.5,1.5 + parent: 1 + type: Transform + - uid: 339 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform + - uid: 340 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 341 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 342 + components: + - pos: 4.5,5.5 + parent: 1 + type: Transform + - uid: 343 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 344 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 345 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 346 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 347 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 348 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform + - uid: 349 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 350 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 351 + components: + - pos: 4.5,2.5 + parent: 1 + type: Transform + - uid: 354 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 355 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 356 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 357 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 358 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 359 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - uid: 360 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform + - uid: 361 + components: + - pos: -6.5,-2.5 + parent: 1 + type: Transform + - uid: 362 + components: + - pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 363 + components: + - pos: -1.5,-2.5 + parent: 1 + type: Transform + - uid: 364 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 365 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - uid: 366 + components: + - pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 367 + components: + - pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 368 + components: + - pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 369 + components: + - pos: 4.5,-2.5 + parent: 1 + type: Transform + - uid: 370 + components: + - pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 371 + components: + - pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 372 + components: + - pos: 7.5,-2.5 + parent: 1 + type: Transform + - uid: 444 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - uid: 445 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 256 + components: + - pos: -3.5,-8.5 + parent: 1 + type: Transform + - uid: 257 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 259 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform + - uid: 260 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 453 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 261 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform + - uid: 262 + components: + - pos: -4.5,-7.5 + parent: 1 + type: Transform + - uid: 263 + components: + - pos: -3.5,-7.5 + parent: 1 + type: Transform + - uid: 264 + components: + - pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 265 + components: + - pos: -4.5,-8.5 + parent: 1 + type: Transform + - uid: 266 + components: + - pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 267 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 268 + components: + - pos: -3.5,-5.5 + parent: 1 + type: Transform + - uid: 269 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - uid: 270 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - uid: 271 + components: + - pos: -3.5,-2.5 + parent: 1 + type: Transform + - uid: 272 + components: + - pos: -3.5,-1.5 + parent: 1 + type: Transform + - uid: 273 + components: + - pos: -3.5,-0.5 + parent: 1 + type: Transform + - uid: 274 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 275 + components: + - pos: -3.5,1.5 + parent: 1 + type: Transform + - uid: 276 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - uid: 277 + components: + - pos: -4.5,2.5 + parent: 1 + type: Transform + - uid: 278 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 279 + components: + - pos: -4.5,4.5 + parent: 1 + type: Transform + - uid: 280 + components: + - pos: -3.5,4.5 + parent: 1 + type: Transform + - uid: 281 + components: + - pos: -3.5,5.5 + parent: 1 + type: Transform + - uid: 282 + components: + - pos: -3.5,6.5 + parent: 1 + type: Transform + - uid: 283 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 284 + components: + - pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 285 + components: + - pos: -2.5,7.5 + parent: 1 + type: Transform + - uid: 286 + components: + - pos: -1.5,7.5 + parent: 1 + type: Transform + - uid: 287 + components: + - pos: -0.5,7.5 + parent: 1 + type: Transform + - uid: 288 + components: + - pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 289 + components: + - pos: 0.5,8.5 + parent: 1 + type: Transform + - uid: 290 + components: + - pos: 0.5,9.5 + parent: 1 + type: Transform + - uid: 291 + components: + - pos: 0.5,10.5 + parent: 1 + type: Transform + - uid: 292 + components: + - pos: -0.5,10.5 + parent: 1 + type: Transform + - uid: 293 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 294 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 353 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform +- proto: CableTerminal + entities: + - uid: 258 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + type: Transform +- proto: CarpetBlack + entities: + - uid: 565 + components: + - pos: 2.5,8.5 + parent: 1 + type: Transform + - uid: 608 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 610 + components: + - pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 611 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform +- proto: ChairFolding + entities: + - uid: 251 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 244 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + type: Transform + - uid: 394 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 563 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 377 + components: + - rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + type: Transform + - uid: 378 + components: + - rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 430 + components: + - pos: 4.2663493,4.33391 + parent: 1 + type: Transform +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 428 + components: + - pos: 4.2663493,4.77141 + parent: 1 + type: Transform + - uid: 429 + components: + - pos: 4.2663493,4.55266 + parent: 1 + type: Transform +- proto: ClothingHeadHatRedsoft + entities: + - uid: 12 + components: + - pos: -1.25,4.780121 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: -1.2395834,4.5924907 + parent: 1 + type: Transform + - uid: 109 + components: + - pos: -1.1770834,4.40486 + parent: 1 + type: Transform +- proto: ClothingHeadHatWizardFake + entities: + - uid: 411 + components: + - pos: 2.3544002,12.45782 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitColorRed + entities: + - uid: 436 + components: + - pos: -1.7194183,4.6633625 + parent: 1 + type: Transform + - uid: 437 + components: + - pos: -1.7194183,4.5383625 + parent: 1 + type: Transform + - uid: 438 + components: + - pos: -1.7194183,4.3977375 + parent: 1 + type: Transform +- proto: ClothingUniformJumpsuitPirate + entities: + - uid: 431 + components: + - pos: 4.7663493,4.67766 + parent: 1 + type: Transform + - uid: 432 + components: + - pos: 4.7819743,4.52141 + parent: 1 + type: Transform + - uid: 433 + components: + - pos: 4.7819743,4.318285 + parent: 1 + type: Transform +- proto: ComfyChair + entities: + - uid: 172 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + type: Transform + - uid: 173 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + type: Transform + - uid: 174 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - uid: 175 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + type: Transform + - uid: 176 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + type: Transform + - uid: 177 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - uid: 179 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + type: Transform + - uid: 180 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - uid: 181 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - uid: 182 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - uid: 183 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - uid: 184 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - uid: 185 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - uid: 186 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 187 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - uid: 188 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 189 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform +- proto: ComputerBroken + entities: + - uid: 384 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + type: Transform +- proto: ComputerShuttle + entities: + - uid: 376 + components: + - pos: -0.5,12.5 + parent: 1 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 381 + components: + - pos: 1.5,12.5 + parent: 1 + type: Transform +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 382 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 239 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots + - uid: 240 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots + - uid: 241 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrateFreezer + entities: + - uid: 210 + components: + - pos: 5.5,-8.5 + parent: 1 + type: Transform +- proto: CrateFunToyBox + entities: + - uid: 404 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateServiceTheatre + entities: + - uid: 435 + components: + - pos: -2.5,4.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: DrinkCoffee + entities: + - uid: 387 + components: + - pos: -1.2800363,12.516339 + parent: 1 + type: Transform +- proto: DrinkHotCoffee + entities: + - uid: 402 + components: + - pos: 1.2322425,4.6308975 + parent: 1 + type: Transform +- proto: DrinkMugGreen + entities: + - uid: 606 + components: + - pos: 1.3063598,7.710977 + parent: 1 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: GreenTea + Quantity: 2 + - data: null + ReagentId: Water + Quantity: 1 + - data: null + ReagentId: SpaceDrugs + Quantity: 1 + type: SolutionContainerManager +- proto: ElectricGuitarInstrument + entities: + - uid: 419 + components: + - pos: -1.4113581,8.55935 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 383 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform +- proto: Firelock + entities: + - uid: 558 + components: + - pos: -4.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + - 591 + type: DeviceNetwork + - uid: 559 + components: + - pos: 5.5,3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + - 591 + type: DeviceNetwork + - uid: 566 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 585 + type: DeviceNetwork + - uid: 567 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 568 + components: + - pos: 5.5,-4.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 569 + components: + - pos: 4.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 584 + - 588 + type: DeviceNetwork + - uid: 570 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + - 589 + type: DeviceNetwork + - uid: 580 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 581 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 582 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 583 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + - 584 + type: DeviceNetwork + - uid: 620 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + - 591 + type: DeviceNetwork + - uid: 621 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + - 591 + type: DeviceNetwork + - uid: 622 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + - 591 + type: DeviceNetwork + - uid: 623 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + - 591 + type: DeviceNetwork +- proto: FirelockEdge + entities: + - uid: 571 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 572 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 573 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 574 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 575 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 576 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 577 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 578 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - uid: 579 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork +- proto: FloorDrain + entities: + - uid: 454 + components: + - pos: 6.5,-7.5 + parent: 1 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FoamCutlass + entities: + - uid: 425 + components: + - pos: 3.2427402,4.630785 + parent: 1 + type: Transform + - uid: 426 + components: + - pos: 3.4146152,4.49016 + parent: 1 + type: Transform + - uid: 443 + components: + - pos: 3.648841,4.382324 + parent: 1 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 612 + components: + - pos: 1.7737156,7.8469253 + parent: 1 + type: Transform +- proto: FoodPlateTin + entities: + - uid: 607 + components: + - desc: A cheap foil tin for cigs. + name: Ashtray + type: MetaData + - pos: 1.6501098,7.570352 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 542 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeBend + entities: + - uid: 489 + components: + - pos: -2.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 491 + components: + - rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 495 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 501 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 505 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 543 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 544 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 548 + components: + - pos: 5.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 553 + components: + - rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 458 + components: + - pos: -3.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 461 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 462 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 464 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 465 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 468 + components: + - pos: 3.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 469 + components: + - pos: 3.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 470 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 472 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 473 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 474 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 477 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 479 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 482 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 484 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 485 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 486 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 487 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 488 + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 490 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 492 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 493 + components: + - rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 494 + components: + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 498 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 499 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 500 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 502 + components: + - rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 503 + components: + - rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 504 + components: + - rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 506 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,10.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 511 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 512 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 513 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 515 + components: + - pos: -4.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 516 + components: + - pos: -4.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 517 + components: + - pos: -4.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 518 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 520 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 521 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 525 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 526 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 528 + components: + - pos: 4.5,-0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 529 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 530 + components: + - pos: 4.5,1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 533 + components: + - pos: -0.5,-2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 534 + components: + - pos: -0.5,-3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 535 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 536 + components: + - pos: -0.5,-5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 537 + components: + - pos: -0.5,-6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 538 + components: + - pos: -0.5,-7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 540 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 541 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 545 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 546 + components: + - rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 547 + components: + - rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 551 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 552 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 554 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 555 + components: + - rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 556 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 602 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 603 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 604 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 456 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 459 + components: + - pos: -3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 460 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 463 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 467 + components: + - pos: 3.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 471 + components: + - pos: 5.5,-3.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 480 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 496 + components: + - rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 514 + components: + - pos: -4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 523 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 527 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 532 + components: + - pos: -0.5,-1.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 539 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 549 + components: + - rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor + - uid: 600 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 455 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 457 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 585 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 466 + components: + - pos: 0.5,-2.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 475 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 476 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 478 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 481 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 584 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 483 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 588 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 497 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor + - uid: 507 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + type: DeviceNetwork + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 509 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 586 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 510 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 587 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 519 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 585 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 531 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 591 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 550 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 589 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 557 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 590 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 601 + components: + - pos: 1.5,-7.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 584 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor + - uid: 605 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - ShutdownSubscribers: + - 588 + type: DeviceNetwork + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 230 + components: + - pos: -5.5,-6.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 63 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 65 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 66 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 67 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 68 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 72 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 74 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 85 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 88 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 89 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform + - uid: 90 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 106 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 246 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 231 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + type: Transform +- proto: HeadSkeleton + entities: + - uid: 405 + components: + - desc: To be? Or not to be? + type: MetaData + - pos: 1.8106693,4.6069775 + parent: 1 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 398 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + type: Transform + - uid: 422 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 200 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 205 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 206 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform +- proto: KitchenSpike + entities: + - uid: 201 + components: + - pos: 6.5,-8.5 + parent: 1 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 11 + components: + - pos: -1.5,10.5 + parent: 1 + type: Transform +- proto: MicrophoneInstrument + entities: + - uid: 423 + components: + - rot: 1.5707963267948966 rad + pos: 0.3989902,0.9814253 + parent: 1 + type: Transform +- proto: PianoInstrument + entities: + - uid: 250 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 232 + components: + - anchored: True + pos: -3.5,-8.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - endTime: 0 + type: InsertingMaterialStorage + - uid: 452 + components: + - anchored: True + pos: -3.5,-7.5 + parent: 1 + type: Transform + - storage: + Plasma: 1500 + type: MaterialStorage + - bodyType: Static + type: Physics + - endTime: 0 + type: InsertingMaterialStorage +- proto: PottedPlantRandom + entities: + - uid: 626 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform +- proto: PoweredlightExterior + entities: + - uid: 221 + components: + - pos: 0.5,-10.5 + parent: 1 + type: Transform +- proto: PoweredlightLED + entities: + - uid: 43 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 108 + components: + - pos: 1.5,8.5 + parent: 1 + type: Transform + - uid: 110 + components: + - pos: -3.5,7.5 + parent: 1 + type: Transform + - uid: 111 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 121 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 124 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + type: Transform + - uid: 142 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform + - uid: 162 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + type: Transform + - uid: 163 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 164 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + type: Transform + - uid: 166 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - uid: 168 + components: + - pos: -6.5,-1.5 + parent: 1 + type: Transform + - uid: 169 + components: + - pos: 7.5,-1.5 + parent: 1 + type: Transform + - uid: 170 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + type: Transform + - uid: 171 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + type: Transform + - uid: 197 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - uid: 198 + components: + - rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + type: Transform + - uid: 199 + components: + - rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 1 + type: Transform +- proto: PoweredSmallLight + entities: + - uid: 151 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - uid: 161 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 165 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + type: Transform + - uid: 167 + components: + - pos: -4.5,-5.5 + parent: 1 + type: Transform + - uid: 388 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 630 + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 424 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 427 + components: + - pos: 4.5,4.5 + parent: 1 + type: Transform + - uid: 434 + components: + - pos: -1.5,4.5 + parent: 1 + type: Transform +- proto: Railing + entities: + - uid: 112 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 114 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 154 + components: + - pos: -1.5,0.5 + parent: 1 + type: Transform + - uid: 157 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform + - uid: 158 + components: + - pos: 1.5,0.5 + parent: 1 + type: Transform +- proto: RailingCorner + entities: + - uid: 150 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + type: Transform + - uid: 155 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform +- proto: RailingCornerSmall + entities: + - uid: 153 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + type: Transform + - uid: 156 + components: + - rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 375 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 400 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 401 + components: + - pos: 2.5,9.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 242 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + type: Transform + - uid: 245 + components: + - pos: -5.5,-2.5 + parent: 1 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: 0.010416657,4.4778275 + parent: 1 + type: Transform +- proto: ShuttersNormalOpen + entities: + - uid: 613 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 614 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 615 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 616 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform + - links: + - 399 + type: DeviceLinkSink + - uid: 618 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - links: + - 59 + type: DeviceLinkSink + - uid: 619 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - links: + - 627 + type: DeviceLinkSink +- proto: ShuttleWindow + entities: + - uid: 27 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 1 + type: Transform + - uid: 31 + components: + - pos: -5.5,4.5 + parent: 1 + type: Transform + - uid: 46 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 47 + components: + - pos: -5.5,6.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 6.5,4.5 + parent: 1 + type: Transform + - uid: 49 + components: + - pos: 6.5,5.5 + parent: 1 + type: Transform + - uid: 50 + components: + - pos: 6.5,6.5 + parent: 1 + type: Transform + - uid: 78 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform + - uid: 81 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + type: Transform + - uid: 82 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - uid: 83 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 86 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 87 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + type: Transform + - uid: 93 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + type: Transform + - uid: 94 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + type: Transform +- proto: SignalButton + entities: + - uid: 59 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 618: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 149 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 396: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 399 + components: + - pos: 2.5,-5.5 + parent: 1 + type: Transform + - linkedPorts: + 616: + - Pressed: Toggle + 615: + - Pressed: Toggle + 614: + - Pressed: Toggle + 613: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 617 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 113: + - Pressed: DoorBolt + type: DeviceLinkSource + - uid: 627 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - linkedPorts: + 619: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SignDirectionalWash + entities: + - uid: 190 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform +- proto: Sink + entities: + - uid: 408 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + type: Transform +- proto: SMESBasic + entities: + - uid: 233 + components: + - pos: -5.5,-8.5 + parent: 1 + type: Transform +- proto: soda_dispenser + entities: + - uid: 208 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + type: Transform +- proto: SpacemenFigureSpawner + entities: + - uid: 409 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 415 + components: + - pos: 0.5,-7.5 + parent: 1 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 412 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 440 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform + - uid: 441 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 628 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 629 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 413 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 414 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: StairStage + entities: + - uid: 115 + components: + - pos: 4.5,0.5 + parent: 1 + type: Transform + - uid: 152 + components: + - pos: -3.5,0.5 + parent: 1 + type: Transform + - uid: 159 + components: + - rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + type: Transform + - uid: 160 + components: + - rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + type: Transform +- proto: StoolBar + entities: + - uid: 38 + components: + - pos: -1.5,-4.5 + parent: 1 + type: Transform + - uid: 194 + components: + - pos: -0.5,-4.5 + parent: 1 + type: Transform + - uid: 195 + components: + - pos: 0.5,-4.5 + parent: 1 + type: Transform + - uid: 196 + components: + - pos: 1.5,-4.5 + parent: 1 + type: Transform +- proto: SubstationBasic + entities: + - uid: 234 + components: + - pos: -5.5,-7.5 + parent: 1 + type: Transform +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 178 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 + type: Transform +- proto: SynthesizerInstrument + entities: + - uid: 420 + components: + - pos: -0.8644831,8.574975 + parent: 1 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 60 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + type: Transform + - uid: 202 + components: + - pos: -0.5,-8.5 + parent: 1 + type: Transform + - uid: 203 + components: + - pos: 0.5,-8.5 + parent: 1 + type: Transform + - uid: 204 + components: + - pos: 1.5,-8.5 + parent: 1 + type: Transform + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform + - uid: 379 + components: + - pos: 0.5,12.5 + parent: 1 + type: Transform + - uid: 380 + components: + - pos: 0.5,11.5 + parent: 1 + type: Transform + - uid: 385 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 1 + type: Transform + - uid: 386 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 391 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 392 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 393 + components: + - pos: 1.5,4.5 + parent: 1 + type: Transform + - uid: 397 + components: + - pos: -1.5,8.5 + parent: 1 + type: Transform + - uid: 416 + components: + - pos: -0.5,8.5 + parent: 1 + type: Transform + - uid: 417 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 421 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + type: Transform +- proto: TableCounterWood + entities: + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + type: Transform + - uid: 44 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + type: Transform + - uid: 45 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 609 + components: + - pos: 1.5,7.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 222 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1 + type: Transform + - uid: 223 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 1 + type: Transform + - uid: 224 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + type: Transform + - uid: 225 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + type: Transform + - uid: 226 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 227 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 + type: Transform + - uid: 228 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform + - uid: 229 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 407 + components: + - desc: This is the most disgusting object in existance. + name: extremely dirty toilet + type: MetaData + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1 + type: Transform + - solutions: + toilet: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Water + Quantity: 130 + - data: null + ReagentId: SpaceDrugs + Quantity: 5 + - data: null + ReagentId: Beer + Quantity: 15 + - data: null + ReagentId: Mold + Quantity: 10 + - data: null + ReagentId: Vomit + Quantity: 30 + - data: null + ReagentId: Hooch + Quantity: 10 + type: SolutionContainerManager + - isSeatUp: True + type: Toilet +- proto: TomDrumsInstrument + entities: + - uid: 374 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform +- proto: ToySword + entities: + - uid: 624 + components: + - pos: 2.5253882,4.8477974 + parent: 1 + type: Transform + - soundHit: !type:SoundPathSpecifier + params: + variation: null + playoffset: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxdistance: 25 + busname: Master + pitchscale: 1 + volume: 0 + attenuation: Default + path: /Audio/Weapons/genhit1.ogg + type: MeleeWeapon + - type: ItemCooldown +- proto: VendingMachineChefDrobe + entities: + - uid: 215 + components: + - pos: 3.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 209 + components: + - pos: 2.5,-8.5 + parent: 1 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 406 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 403 + components: + - pos: 4.5,7.5 + parent: 1 + type: Transform +- proto: WallmountTelescreen + entities: + - uid: 395 + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: WallShuttle + entities: + - uid: 2 + components: + - pos: -2.5,3.5 + parent: 1 + type: Transform + - uid: 3 + components: + - pos: -1.5,3.5 + parent: 1 + type: Transform + - uid: 4 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 5 + components: + - pos: 0.5,3.5 + parent: 1 + type: Transform + - uid: 6 + components: + - pos: 1.5,3.5 + parent: 1 + type: Transform + - uid: 7 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 8 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 9 + components: + - pos: -3.5,3.5 + parent: 1 + type: Transform + - uid: 10 + components: + - pos: 4.5,3.5 + parent: 1 + type: Transform + - uid: 13 + components: + - pos: 6.5,1.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: 6.5,2.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: 6.5,3.5 + parent: 1 + type: Transform + - uid: 16 + components: + - pos: -5.5,1.5 + parent: 1 + type: Transform + - uid: 17 + components: + - pos: -5.5,2.5 + parent: 1 + type: Transform + - uid: 18 + components: + - pos: -5.5,3.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -4.5,0.5 + parent: 1 + type: Transform + - uid: 21 + components: + - pos: -5.5,-0.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: -6.5,-0.5 + parent: 1 + type: Transform + - uid: 23 + components: + - pos: 5.5,0.5 + parent: 1 + type: Transform + - uid: 25 + components: + - pos: 6.5,-0.5 + parent: 1 + type: Transform + - uid: 26 + components: + - pos: 7.5,-0.5 + parent: 1 + type: Transform + - uid: 29 + components: + - pos: -6.5,-4.5 + parent: 1 + type: Transform + - uid: 30 + components: + - pos: -5.5,-4.5 + parent: 1 + type: Transform + - uid: 32 + components: + - pos: 7.5,-4.5 + parent: 1 + type: Transform + - uid: 33 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 1 + type: Transform + - uid: 34 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + type: Transform + - uid: 39 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 41 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 52 + components: + - pos: 6.5,7.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: 5.5,8.5 + parent: 1 + type: Transform + - uid: 56 + components: + - pos: -4.5,8.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + type: Transform + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 1 + type: Transform + - uid: 79 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + type: Transform + - uid: 84 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 95 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + type: Transform + - uid: 96 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + type: Transform + - uid: 97 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 1 + type: Transform + - uid: 98 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 1 + type: Transform + - uid: 99 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 1 + type: Transform + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + type: Transform + - uid: 102 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + type: Transform + - uid: 103 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 1 + type: Transform + - uid: 104 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 1 + type: Transform + - uid: 107 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + type: Transform + - uid: 116 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + type: Transform + - uid: 117 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 1 + type: Transform + - uid: 118 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 1 + type: Transform + - uid: 119 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + type: Transform + - uid: 120 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 1 + type: Transform + - uid: 122 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 1 + type: Transform + - uid: 123 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + type: Transform + - uid: 125 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1 + type: Transform + - uid: 126 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + type: Transform + - uid: 127 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1 + type: Transform + - uid: 128 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 1 + type: Transform + - uid: 129 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + type: Transform + - uid: 130 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + type: Transform + - uid: 131 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 1 + type: Transform + - uid: 132 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 + type: Transform + - uid: 133 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + type: Transform + - uid: 134 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + type: Transform + - uid: 135 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + type: Transform + - uid: 136 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + type: Transform + - uid: 137 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1 + type: Transform + - uid: 138 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-9.5 + parent: 1 + type: Transform + - uid: 139 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 + type: Transform + - uid: 140 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + type: Transform + - uid: 141 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + type: Transform + - uid: 143 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + type: Transform + - uid: 144 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 145 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 + type: Transform + - uid: 146 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-9.5 + parent: 1 + type: Transform + - uid: 147 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-10.5 + parent: 1 + type: Transform + - uid: 148 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + type: Transform + - uid: 390 + components: + - pos: -4.5,1.5 + parent: 1 + type: Transform + - uid: 439 + components: + - pos: 5.5,1.5 + parent: 1 + type: Transform + - uid: 561 + components: + - pos: 3.5,8.5 + parent: 1 + type: Transform + - uid: 562 + components: + - pos: -2.5,8.5 + parent: 1 + type: Transform +- proto: WallShuttleDiagonal + entities: + - uid: 20 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + type: Transform + - uid: 24 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + type: Transform + - uid: 53 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + type: Transform + - uid: 55 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + type: Transform + - uid: 91 + components: + - pos: -2.5,13.5 + parent: 1 + type: Transform + - uid: 92 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 410 + components: + - pos: 0.5,0.5 + parent: 1 + type: Transform +- proto: WaterCooler + entities: + - uid: 625 + components: + - pos: 3.5,7.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 247 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + type: Transform + - uid: 564 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + type: Transform +... diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index f820cb67a78..d6cad9a1fc6 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -17,6 +17,7 @@ - Engineering - Medical - Mercenary # Frontier + - Pilot # Frontier - Quartermaster - Salvage - Cargo diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index 01ffe3307a4..5fd86b721fd 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -1,62 +1,62 @@ -- type: cargoProduct - id: FunInstrumentsVariety - icon: - sprite: Objects/Fun/Instruments/accordion.rsi - state: icon - product: CrateFunInstrumentsVariety - cost: 2300 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsBrass - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: tuba - product: CrateFunInstrumentsBrass - cost: 3500 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsString - icon: - sprite: Objects/Fun/Instruments/bassguitar.rsi - state: icon - product: CrateFunInstrumentsString - cost: 3100 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsWoodwind - icon: - sprite: Objects/Fun/Instruments/harmonica.rsi - state: icon - product: CrateFunInstrumentsWoodwind - cost: 3000 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsKeyedPercussion - icon: - sprite: Objects/Fun/Instruments/h_synthesizer.rsi - state: icon - product: CrateFunInstrumentsKeyedPercussion - cost: 3500 - category: Fun - group: market - -- type: cargoProduct - id: FunInstrumentsSpecial - icon: - sprite: Objects/Fun/Instruments/gunpet.rsi - state: icon - product: CrateFunInstrumentsSpecial - cost: 10000 - category: Fun - group: market +# - type: cargoProduct + # id: FunInstrumentsVariety # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/accordion.rsi + # state: icon + # product: CrateFunInstrumentsVariety + # cost: 2300 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsBrass # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: tuba + # product: CrateFunInstrumentsBrass + # cost: 3500 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsString # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/bassguitar.rsi + # state: icon + # product: CrateFunInstrumentsString + # cost: 3100 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsWoodwind # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/harmonica.rsi + # state: icon + # product: CrateFunInstrumentsWoodwind + # cost: 3000 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsKeyedPercussion # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/h_synthesizer.rsi + # state: icon + # product: CrateFunInstrumentsKeyedPercussion + # cost: 3500 + # category: Fun + # group: market + +# - type: cargoProduct + # id: FunInstrumentsSpecial # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/gunpet.rsi + # state: icon + # product: CrateFunInstrumentsSpecial + # cost: 10000 + # category: Fun + # group: market - type: cargoProduct id: FunArtSupplies diff --git a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml index 4e4c5a6b75f..6deee14aaf2 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/salvage.yml @@ -62,8 +62,8 @@ # - Heh - id: SalvageHumanCorpse prob: 0.1 - - id: LidSalami - prob: 0.1 +# - id: LidSalami +# prob: 0.1 # Interesting (1%) # - Ammo - id: MagazineBoxMagnum @@ -86,24 +86,24 @@ - id: ClothingHeadHatCatEars prob: 0.001 # - Drip - - id: ClothingNeckLGBTPin - orGroup: DripLoot - - id: ClothingNeckAromanticPin - orGroup: DripLoot - - id: ClothingNeckAsexualPin - orGroup: DripLoot - - id: ClothingNeckBisexualPin - orGroup: DripLoot - - id: ClothingNeckIntersexPin - orGroup: DripLoot - - id: ClothingNeckLesbianPin - orGroup: DripLoot - - id: ClothingNeckNonBinaryPin - orGroup: DripLoot - - id: ClothingNeckPansexualPin - orGroup: DripLoot - - id: ClothingNeckTransPin - orGroup: DripLoot + # - id: ClothingNeckLGBTPin + # orGroup: DripLoot + # - id: ClothingNeckAromanticPin + # orGroup: DripLoot + # - id: ClothingNeckAsexualPin + # orGroup: DripLoot + # - id: ClothingNeckBisexualPin + # orGroup: DripLoot + # - id: ClothingNeckIntersexPin + # orGroup: DripLoot + # - id: ClothingNeckLesbianPin + # orGroup: DripLoot + # - id: ClothingNeckNonBinaryPin + # orGroup: DripLoot + # - id: ClothingNeckPansexualPin + # orGroup: DripLoot + # - id: ClothingNeckTransPin + # orGroup: DripLoot - id: ClothingBeltStorageWaistbag orGroup: DripLoot - id: ClothingBeltBandolier diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml index 71e65528d53..d040d305777 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/ammo.yml @@ -16,5 +16,6 @@ MagazineBoxRifle: 15 MagazineBoxRifleRubber: 15 MagazineBoxRiflePractice: 15 + MagazineBoxMagnum: 15 emaggedInventory: WeaponPistolViper: 1 diff --git a/Resources/Prototypes/Datasets/tips.yml b/Resources/Prototypes/Datasets/tips.yml index 52c245bc6f1..1f358ea24dc 100644 --- a/Resources/Prototypes/Datasets/tips.yml +++ b/Resources/Prototypes/Datasets/tips.yml @@ -12,7 +12,7 @@ - "Mopping up puddles and draining them into other containers conserves the reagents found in the puddle." - "Floor drains, usually found in the chef's freezer or janitor's office, rapidly consume reagent found in puddles around them--including blood." - "Cognizine, a hard to manufacture chemical, makes animals sentient when they are injected with it." - - "Loaded mousetraps are incredibly effective at dealing with all manner of low-mass mobs--including Rat Servants." +# - "Loaded mousetraps are incredibly effective at dealing with all manner of low-mass mobs--including Rat Servants." - "Fire extinguishers can be loaded with any reagent in the game." - "Some reagents, like chlorine trifluoride, have unique effects when applied by touch, such as through a spray bottle or foam." - "Remember to touch grass in between playing Space Station 14 every once in a while." @@ -22,7 +22,7 @@ # - "When running the Singularity, make sure to check on it periodically. If sabotaged, it could put the entire station at risk." - "Chemicals don't react while inside the ChemMaster's buffer." - "You can hold SPACE by default to slow the movement of the shuttle when piloting, to allow for precise movements--or even coming to a complete stop." - - "Dexalin, Dexalin Plus, and Epinephrine will all purge Lexorin from your bloodstream while metabolizing." +# - "Dexalin, Dexalin Plus, and Epinephrine will all purge Lexorin from your bloodstream while metabolizing." - "Every crewmember comes with an emergency medipen in their survival box containing epinephrine and tranexamic acid." # - "The AME is a high-priority target and is easily sabotaged. Make sure to set up the Singularity or Solars so that you don't run out of power if it blows." - "You can add labels to any item, including food or pill canisters, using a hand labeler." @@ -41,27 +41,27 @@ # - "As a Nuclear Operative, remember that stealth is an option. It'll be hard for the captain to fight back if he gets caught off-gaurd by what he thinks is just a regular passenger!" # - "As an antagonist, be mindful of the power of destroying telecommunications. It'll be a lot harder for people to call you out if they can't do so effectively!" - "You can examine your headset to see which radio channels you have available and how to speak in them." - - "As a Salvage Technician, always carry a GPS on you and take note of the station's coordinates in case your salvage is lost to space." +# - "As a Salvage Technician, always carry a GPS on you and take note of the station's coordinates in case your salvage is lost to space." - "As a Salvage Technician, you can use your proto-kinetic accelerator to move yourself in space when in a pinch. Just be weary that it isn't very effective." - - "As a Salvage Technician, never forget to mine ore! Ore can be sold to cargo for a pretty penny, be used for construction, and also be used by Scientists for fancy technology." - - "As a Salvage Technician, try asking science for a tethergun. It can be used to grab items off of salvage wrecks extremely efficiently!" - - "As a Salvage Technician, consider cooperating with the Cargo Technicians. They can order you a wide variety of useful items, including ones that may be hard to get otherwise, such laser guns and shuttle building materials." +# - "As a Salvage Technician, never forget to mine ore! Ore can be sold to cargo for a pretty penny, be used for construction, and also be used by Scientists for fancy technology." +# - "As a Salvage Technician, try asking science for a tethergun. It can be used to grab items off of salvage wrecks extremely efficiently!" +# - "As a Salvage Technician, consider cooperating with the Cargo Technicians. They can order you a wide variety of useful items, including ones that may be hard to get otherwise, such laser guns and shuttle building materials." # - "As a Cargo Technician, consider asking science for a Ripley APLU. When paired with a hydraulic clamp, you can grab valuable maintenance objects like fuel tanks much more easily, and make deliveries in a swift manner." # - "As a Cargo Technician, try to maintain a surplus of materials. They are extremely useful for Scientists and Station Engineers to have immediate access to." # - "As a Cargo Technician, remember that you can order guns in an emergency! The extra firepower can often be the difference between you and your fellow crewmembers living or dying." - - "As the Bartender, you can use a circular saw on your shotgun to make it easier to store." +# - "As the Bartender, you can use a circular saw on your shotgun to make it easier to store." - "As a Botanist, you can mutate and crossbreed plants together to create more potent produce that also has higher yields." - - "As the Clown, spice your gimmicks up! Nobody likes a one-trick pony." - - "As the Clown, if you lose your banana peel, you can still slip people with your PDA! Honk!" - - "As the Mime, your oath of silence is your source of power. Breaking it robs you of your powers and of your honor." +# - "As the Clown, spice your gimmicks up! Nobody likes a one-trick pony." +# - "As the Clown, if you lose your banana peel, you can still slip people with your PDA! Honk!" +# - "As the Mime, your oath of silence is your source of power. Breaking it robs you of your powers and of your honor." - "As the Lawyer, try to negotiate with the Warden if sentences seem too high for the crime." - "As a Security Officer, communicate and coordinate with your fellow officers using the security radio channel to avoid confusion." - "As a Security Officer, remember that correlation does not equal causation. Someone may have just been at the wrong place at the wrong time!" - "As a Detective, you can chase criminals more effectively by using fingerprint and fiber data obtained from forensic scans of objects the perpetrator likely interacted with." - - "As an Atmospheric Technician, your ATMOS holofan projector blocks gases while allowing objects to pass through. With it, you can quickly contain gas spills, fires and hull breaches." +# - "As an Atmospheric Technician, your ATMOS holofan projector blocks gases while allowing objects to pass through. With it, you can quickly contain gas spills, fires and hull breaches." # - "As an Atmospheric Technician, try to resist the temptation of making canister bombs for Nuclear Operatives, unless you're in a last-ditch scenario. They often lead to large amounts of unnessecarry friendly fire!" - "As an Engineer, you can repair cracked windows by using a lit welding tool on them while not in combat mode." - - "As an Engineer, you can electrify grilles by placing powered cables beneath them." +# - "As an Engineer, you can electrify grilles by placing powered cables beneath them." - "As an Engineer, you can use plasma glass to reinforce an area and prevent radiation. Uranium glass can also be used to prevent radiation." # - "As the Captain, you are one of the highest priority targets on the station. Everything from revolutions, to nuclear operatives, to traitors that need to rob you of your unique laser pistol or your life are things to worry about." # - "As the Captain, always take the nuclear disk and pinpointer with you every shift. It's a good idea to give one of these to another head you can trust with keeping it safe." @@ -71,11 +71,11 @@ - "As a Scientist, you can utilize higher tier machine parts to increase the effectiveness of machines. This can make certain machines significantly better; people will love you if you upgrade their lathes!" - "As a Scientist, you can try to guess what a machine upgrade will do based on what part you are upgrading. Matter bins enhance storage capabilities, capacitors increase efficiency, and manipulators enhance power." - "As a Medical Doctor, try to be weary of overdosing your patients, especially if someone else has already been on the scene. Overdoses are often lethal to patients in crit!" - - "As a Medical Doctor, don't underestimate your cryo pods! They heal almost every type of damage, making them very useful when you are overloaded or need to heal someone in a pinch." - - "As a Medical Doctor, excise caution when putting reptilians in cryopods. They will take a lot of extra cold damage, but you can mitigate this with some burn medicine or leporazine." +# - "As a Medical Doctor, don't underestimate your cryo pods! They heal almost every type of damage, making them very useful when you are overloaded or need to heal someone in a pinch." +# - "As a Medical Doctor, excise caution when putting reptilians in cryopods. They will take a lot of extra cold damage, but you can mitigate this with some burn medicine or leporazine." - "As a Medical Doctor, remember that your health analyzer has a replacable battery. If it drains too quickly for your taste, you can ask science to print a better battery for you!" - "As a Chemist, once you've made everything you've needed to, don't be afraid to make more silly reagents. Have you tried desoxyephedrine?" - - "As a Medical Doctor, Chemist, or Chief Medical Officer, you can use chloral hydrate to non-lethally sedate unruly patients." +# - "As a Medical Doctor, Chemist, or Chief Medical Officer, you can use chloral hydrate to non-lethally sedate unruly patients." - "Don't be afraid to ask for help, whether from your peers in character or through LOOC, or from admins!" - "You'll quickly lose your interest in the game if you play to win and kill. If you find yourself doing this, take a step back and talk to people--it's a much better experience!" # - "If there's something you need from another department, try asking! This game isn't singleplayer and you'd be surprised what you can get accomplished together!" @@ -91,11 +91,11 @@ - "All forms of toxin damage are fairly difficult to treat, and usually involve the use of chemicals or other inconvienent methods. You can use this to your advantage in combat." - "You can throw crafted bolas at people to slow them down, letting you follow up on them for an easier kill or getaway." - "You can put napalm in a backpack water tank to make a flamethrower." - - "Some jobs have alternate uniforms in their respective drobe vendors. Don't be afraid to try out a new look!" +# - "Some jobs have alternate uniforms in their respective drobe vendors. Don't be afraid to try out a new look!" - "Speed is almost everything in combat. Using hardsuits just for their armor is usually a terrible idea unless the resistances it provides are geared towards combat, or you're not planning to go head-first into the fray." # - "Just because a job can't be a traitor at the beginning of a round doesn't mean that they'll never be a traitor." # - "Syndicate gas masks will both provide welding protection and block flashes. Think twice before trying to flash a Nuclear Operative!" - - "Demoman takes skill." +# - "Demoman takes skill." - "You can spray a fire extinguisher, throw items or fire a gun while floating through space to give yourself a minor boost. Simply fire opposite to where you want to go." - "You can drag other players onto yourself to open the strip menu, allowing you to remove their equipment or force them to wear something. Note that exosuits or helmets will block your access to the clothing beneath them, and that certain items take longer to strip or put on than others." - "You can climb onto a table by dragging yourself onto one." @@ -123,3 +123,48 @@ - "Monkeys have a rare chance to be sentient. Ook!" - "You can tell if an area with firelocks up is spaced by looking to see if the firelocks have lights besides them." - "Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands." + #------------# + # Frontier # + - "Smaller shuttles offer greater maneuverability, while bigger ones offer a wider and better spectrum of services. Choose wisely!" + - "If you're low on funds, try wandering into nearby ships and ask the local captains if they need a hand. Perhaps you can pick up a high-paying job!" + - "It's often better to join an existing crew than to become a solo captain. It can teach you new things and give you a good sum of money." + - "It's always better to have a crew than to stay alone in deep space. A friend can save your life if you make a mistake, or save you from trouble!" + - "Scientists often sell interesting technologies that can assist you in your job. Perhaps you would want a bottomless bag that can fit an entire station?" + - "As a scientist, you can sell your technologies to others. Many would want a bluespace bag, or a chemical dispenser." + - "Felinids and other small people can sit in bags! Ask around - maybe there are feline friends seeking for a new home?" + - "While holding a bag with 120 free space, you can force a small person inside. Be careful, they may get mad at you!" + - "Staying in deep space induces severe stress and often leads to a sudden sleep disorder. You can hire an emotional support crewmember to help you overcome it!" + - "You can use your hands to carry people! Alt-click a person while having two free hands, or use the context menu to do so." + - "The Vulpkanin will love you if you keep petting them." + - "When you enter cryosleep, your body remains stored for up to 60 minutes! As a ghost, you can use the 'un-cryo' button to wake up and return to it!" + - "If you accidentally left the game for a long time, you can still check on your character. Perhaps someone shoved them into a cryopod and you can use the 'un-cryo' button?" + - "If you see a person who's fallen SSD, make sure to drag them to cryo and shove them into a cryopod. It will prevent them from dying, and will allow the player to return to the body later!" + - "Vending machine food is bad for your health! Watch out for food trucks such as the Skipper or the McCargo - they can offer delicious food for a reasonable price!" + - "Meals cooked by chefs are more filling, more flavorful, and in some cases can even boost your movement speed for a short time!" + - "Each ID card can have a shuttle attached to it. If you need to purchase an additional shuttle, you can ask your local SR for another ID!" + - "The Station Representative can rename your shuttle! Usually it's enough to hand your ID and ask them to do it." + - "If your ship has a big crew, you can ask the SR for radio keys for your fellow crewmates. Some channels, such as Cargo or Science, are usually empty." + - "Before joining an ongoing round, you can see the list of ships registered on the New Frontiers. Perhaps some of them have jobs you would prefer?" + - "Don't forget to buy a medical implant before wandering into deep space! It will send a message to the local medics in the event of your death." + - "As a medic, you should cooperate with others when there's a medical emergency! It never helps when two medical ships arrive at the same emergency signal." + - "As a medic, you can ask the local SR for a medical PDA. It can double as a health analyzer!" + - "Medical ships often have access to the hypospray. An experienced chemist can turn it into a lethal weapon, or use it to safely put people to sleep." + - "If you're hurt, try to ask for medical help on the radio. Medics are often eager to heal the wounded, as their job usually gets boring after hours of waiting." + - "Always carry a GPS with yourself! It can help you locate your station, or tell your location to others and get saved." + - "Smuggling is very profitable, but also very risky! Remember to have an IFF console and hide your IFF before going for a dead drop." + - "As a smuggler, try to destroy any evidence of your crimes. Remember, your PDA has a notepad app, which can be used to store important notes in a digital form." + - "Security has a special IFF console that completely hides their ship on the radar! If you're an outlaw, watch out for those invisible Prowlers!" + - "Certain ships can act as motherships. They have shipyard consoles, which allow you to purchase and sell other smaller ships!" + - "Remember to check the space law book in your PDA. It contains some useful info, for example: you can start a mutiny if your captain is found to be in violation of the Space Law." + - "Your PDA has a pre-installed news application. Check it out, perhaps the local reporter has posted some interesting news?" + - "There's a special app installed in your PDA, which allows you to see posted bounties. If you can fulfill one of them, you can ask the local SR or Sheriff for a reward!" + - "Remember, Frontier Outpost has a 200m wide safe-zone. It's forbidden to engage in antagonist behavior or damage property in any way within that limit!" + - "If you're using an IFF console, remember to turn your IFF on near frontier, or you'll risk facing security on your ship!" + - "Going on an expedition alone is very risky! Make sure to always have a crewmate to save you in case you get ambushed by a xeno queen." + - "Expeditions can yield rare and useful items, and not all of them are legal. Try not to leave those lying on the floor, as security might board you at some point!" + - "Sometimes there's a Station Traffic Controller on the frontier outpost. Make sure to contact them before docking, or you may face a fine!" + - "Every crewmember starts with a traffic headset encryption key in their survival box. Make sure to use it to contact the STC before docking with the station!" + - "If you get stranded in space, make sure to notify others using the radio! Getting depressed and falling into coma is usually not the best solution." + - "Salvage is not just about whacking rocks. You can try to find large derelict stations, or try to bury deep into an unusual asteroid - but beware of the great dangers that may await you inside." + - "Trust is something that takes ages to build, and seconds to lose. Don't give players and admins a reason to hate you!" + - "There are multiple ways to earn money. You can try to get a job on frontier, join security, go salvaging, do science, or do something totally illegal. Other players can teach you each one of them!" diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index ea261c5c82c..4a627b33755 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -26,6 +26,7 @@ # to prevent bag open/honk spam - type: UseDelay delay: 0.5 + - type: AllowsSleepInside - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml index 1ab803c5e27..cd258533f78 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml @@ -136,4 +136,4 @@ state: icon - type: Item size: 24 - sprite: Objects/Fun/Instruments/h_synthesizer.rsi \ No newline at end of file + sprite: Objects/Fun/Instruments/h_synthesizer.rsi diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index 75ff960d8c8..1f8c5245d7c 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -42,6 +42,7 @@ - Maintenance - Medical - Mercenary # Frontier + - Pilot # Frontier - Quartermaster - Research - ResearchDirector diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index ab2bdb2c5d8..7f4b6bbd81f 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -36,55 +36,63 @@ - type: SpaceVillainArcade rewardAmount: 0 possibleRewards: - - ToyMouse - - ToyAi - - ToyNuke - - ToyGriffin - - ToyHonk - - ToyIan - - ToyMarauder - - ToyMauler - - ToyGygax - - ToyOdysseus - - ToyOwlman - - ToyDeathRipley - - ToyPhazon - - ToyFireRipley - - ToyReticence - - ToyRipley - - ToySeraph - - ToyDurand - - ToySkeleton - - FoamCrossbow - - RevolverCapGun - - PlushieHampter - - PlushieLizard - - PlushieAtmosian - - PlushieSpaceLizard - - PlushieNuke - - PlushieCarp - - PlushieRatvar - - PlushieNar - - PlushieSnake - - Basketball - - Football - - PlushieRouny - - PlushieBee - - PlushieSlime - - BalloonCorgi - - ToySword - - CrayonBox - - BoxDonkSoftBox - - BoxCartridgeCap - - HarmonicaInstrument - - OcarinaInstrument - - RecorderInstrument - - GunpetInstrument - - BirdToyInstrument - - PlushieXeno - - BeachBall - - PlushieMoth - - PlushieHampter + - PrizeTicket10 # Frontier + - PrizeTicket10 # Frontier + - PrizeTicket10 # Frontier + - PrizeTicket10 # Frontier + - PrizeTicket10 # Frontier + - PrizeTicket30 # Frontier + - PrizeTicket30 # Frontier + - PrizeTicket60 # Frontier + # - ToyMouse + # - ToyAi + # - ToyNuke + # - ToyGriffin + # - ToyHonk + # - ToyIan + # - ToyMarauder + # - ToyMauler + # - ToyGygax + # - ToyOdysseus + # - ToyOwlman + # - ToyDeathRipley + # - ToyPhazon + # - ToyFireRipley + # - ToyReticence + # - ToyRipley + # - ToySeraph + # - ToyDurand + # - ToySkeleton + # - FoamCrossbow + # - RevolverCapGun + # - PlushieHampter + # - PlushieLizard + # - PlushieAtmosian + # - PlushieSpaceLizard + # - PlushieNuke + # - PlushieCarp + # - PlushieRatvar + # - PlushieNar + # - PlushieSnake + # - Basketball + # - Football + # - PlushieRouny + # - PlushieBee + # - PlushieSlime + # - BalloonCorgi + # - ToySword + # - CrayonBox + # - BoxDonkSoftBox + # - BoxCartridgeCap + # - HarmonicaInstrument + # - OcarinaInstrument + # - RecorderInstrument + # - GunpetInstrument + # - BirdToyInstrument + # - PlushieXeno + # - BeachBall + # - PlushieMoth + # - PlushieHampter - type: WiresPanel - type: Wires layoutId: Arcade diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index 32176839a60..f54f104cd9e 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -48,6 +48,7 @@ - ResearchDirector # Frontier - Armory # Frontier - Mercenary # Frontier + - Pilot # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant, TrackingImplant ] # Frontier - Added TrackingImplant diff --git a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml index 31c8fccf84b..946691e42cf 100644 --- a/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml +++ b/Resources/Prototypes/Roles/Jobs/Security/head_of_security.yml @@ -58,6 +58,7 @@ - ChiefEngineer # Frontier - ChiefMedicalOfficer # Frontier - ResearchDirector # Frontier + - Pilot # Frontier special: - !type:AddImplantSpecial implants: [ MindShieldImplant, TrackingImplant ] diff --git a/Resources/Prototypes/_NF/Access/pilot.yml b/Resources/Prototypes/_NF/Access/pilot.yml new file mode 100644 index 00000000000..819b4f0b4bb --- /dev/null +++ b/Resources/Prototypes/_NF/Access/pilot.yml @@ -0,0 +1,3 @@ +- type: accessLevel + id: Pilot + name: id-card-access-level-pilot diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml index 4cb324ddf55..1b9b64e8035 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml @@ -8,42 +8,42 @@ category: Fun group: market -- type: cargoProduct - id: FunPianoInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: piano - product: PianoInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunPianoInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: piano + # product: PianoInstrument + # cost: 1500 + # category: Fun + # group: market -- type: cargoProduct - id: FunUprightPianoInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: piano-upright - product: UprightPianoInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunUprightPianoInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: piano-upright + # product: UprightPianoInstrument + # cost: 1500 + # category: Fun + # group: market -- type: cargoProduct - id: FunChurchOrganInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: church-organ - product: ChurchOrganInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunChurchOrganInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: church-organ + # product: ChurchOrganInstrument + # cost: 1500 + # category: Fun + # group: market -- type: cargoProduct - id: FunMinimoogInstrument - icon: - sprite: Objects/Fun/Instruments/structureinstruments.rsi - state: minimoog - product: MinimoogInstrument - cost: 1000 - category: Fun - group: market +# - type: cargoProduct + # id: FunMinimoogInstrument # Moved to AutoTune + # icon: + # sprite: Objects/Fun/Instruments/structureinstruments.rsi + # state: minimoog + # product: MinimoogInstrument + # cost: 1500 + # category: Fun + # group: market diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml index c630f3fcc63..635dec04eab 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_vending.yml @@ -55,3 +55,13 @@ cost: 100 category: Security group: market + +- type: cargoProduct + id: CrateVendingMachineRestockAutoTuneVend + icon: + sprite: _NF/Objects/Specific/Service/vending_machine_restock.rsi + state: base + product: CrateVendingMachineRestockAutoTuneVendFilled + cost: 100 + category: Fun + group: market diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml index bcbe1459891..ee569a6397d 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -49,3 +49,15 @@ contents: - id: BoxSurvival - id: RubberStampStc + +- type: entity + noSpawn: true + parent: ClothingBackpackPilot + id: ClothingBackpackPilotFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Lighter + - id: CigPackGreen + - id: ExtendedEmergencyOxygenTank diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml index 515cc436deb..737242c0d2d 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -49,3 +49,15 @@ contents: - id: BoxSurvival - id: RubberStampStc + +- type: entity + noSpawn: true + parent: ClothingBackpackDuffelPilot + id: ClothingBackpackDuffelPilotFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Lighter + - id: CigPackGreen + - id: ExtendedEmergencyOxygenTank diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml index 9b24ea1d026..406843f2122 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -49,3 +49,15 @@ contents: - id: BoxSurvival - id: RubberStampStc + +- type: entity + noSpawn: true + parent: ClothingBackpackSatchelPilot + id: ClothingBackpackSatchelPilotFilled + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Lighter + - id: CigPackGreen + - id: ExtendedEmergencyOxygenTank diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml index 0932312d753..afef43ddbd8 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml @@ -42,3 +42,12 @@ contents: - id: VendingMachineRestockLessLethalVend amount: 2 + +- type: entity + id: CrateVendingMachineRestockAutoTuneVendFilled + parent: CratePlasticBiodegradable + components: + - type: StorageFill + contents: + - id: VendingMachineRestockAutoTuneVend + amount: 2 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml index 4cf5a189ed5..8a611a9f14e 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml @@ -75,3 +75,22 @@ # - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. - type: AccessReader access: [["Captain"], ["Mercenary"]] + +#Pilot hardsuit +- type: entity + id: SuitStoragePilot + parent: SuitStorageBase + suffix: Pilot + components: + - type: StorageFill + contents: +# - id: NitrogenTankFilled +# - id: OxygenTankFilled + - id: AirTankFilled + - id: ClothingOuterHardsuitPilot + - id: ClothingMaskBreath + - id: JetpackMiniFilled + - id: HandheldGPSBasic +# - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. + - type: AccessReader + access: [["Captain"], ["Pilot"]] diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml index 96179355a90..0dabaabc65c 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml @@ -20,6 +20,11 @@ id: SuitStorageWallmountMercenary parent: [SuitStorageWallmount, SuitStorageMercenary] +#Pilot hardsuit +- type: entity + id: SuitStorageWallmountPilot + parent: [SuitStorageWallmount, SuitStoragePilot] + #SOFTSUITS #Basic EVA - type: entity diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml index bd142771e27..2b11b1ec190 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/astrovend.yml @@ -12,3 +12,16 @@ JetpackMiniFilled: 10 EncryptionKeyTraffic: 30 HandHeldMassScanner: 10 +# Pilot drip + ClothingBackpackPilot: 3 + ClothingBackpackDuffelPilot: 3 + ClothingBackpackSatchelPilot: 3 + ClothingUniformJumpsuitPilot: 3 + ClothingOuterCoatBomber: 3 + ClothingHeadsetAltPilot: 3 + ClothingEyesGlassesPilot: 3 + ClothingHandsGlovesPilot: 3 + ClothingHeadHatPilot: 3 + ClothingNeckScarfPilot: 3 + ClothingOuterHardsuitPilot: 3 + ClothingShoesBootsPilot: 3 \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/autotunevend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/autotunevend.yml new file mode 100644 index 00000000000..2bd491761ca --- /dev/null +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/autotunevend.yml @@ -0,0 +1,57 @@ +- type: vendingMachineInventory + id: AutoTuneVendInventory + startingInventory: + TrumpetInstrument: 2 + TromboneInstrument: 2 + FrenchHornInstrument: 2 + SaxophoneInstrument: 2 + EuphoniumInstrument: 2 + AcousticGuitarInstrument: 2 + ElectricGuitarInstrument: 2 + BassGuitarInstrument: 2 + RockGuitarInstrument: 2 + BanjoInstrument: 2 + ViolinInstrument: 2 + CelloInstrument: 2 + ViolaInstrument: 2 + RecorderInstrument: 2 + BagpipeInstrument: 2 + ClarinetInstrument: 2 + FluteInstrument: 2 + HarmonicaInstrument: 2 + OcarinaInstrument: 2 + PanFluteInstrument: 2 + SynthesizerInstrument: 2 + AccordionInstrument: 2 + KalimbaInstrument: 2 + WoodblockInstrument: 2 + GlockenspielInstrument: 2 + BikeHornInstrument: 1 # Not actully bad as you might think + MusicBoxInstrument: 1 +# SeashellInstrument: 1 This is actully just static noises + XylophoneInstrument: 1 +# GunpetInstrument: 1 Sounds bad + MicrophoneInstrument: 1 +# HelicopterInstrument: 1 Sounds bad +# BirdToyInstrument: 1 Sounds bad + MusicalLungInstrument: 1 # This actully sound ok somehow +# ReverseCymbalsInstrument: 1 Sounds bad +# CannedApplauseInstrument: 1 Sounds bad + contrabandInventory: + TubaInstrument: 1 + HarpInstrument: 1 + ContrabassInstrument: 1 + VibraphoneInstrument: 1 + MarimbaInstrument: 1 + TomDrumsInstrument: 1 + TimpaniInstrument: 1 + TaikoInstrument: 1 + MinimoogInstrument: 1 + ChurchOrganInstrument: 1 + PianoInstrument: 1 + UprightPianoInstrument: 1 + DawInstrument: 1 + Rickenbacker4003Instrument: 1 + emaggedInventory: +# SuperSynthesizerInstrument: 1 # Can crash the server with some MIDI + Rickenbacker4001Instrument: 1 diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/cuddlycritter.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/cuddlycritter.yml index bd941787365..50d3f14daac 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/cuddlycritter.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/cuddlycritter.yml @@ -27,10 +27,11 @@ ClownRecorder: 1 PonderingOrb: 1 CrayonRainbow: 5 + PrizeBall: 10 contrabandInventory: PlushieLamp: 3 emaggedInventory: PlushieJester: 3 PlushieNuke: 3 PlushieRGBee: 3 - BalloonCorgi: 2 \ No newline at end of file + BalloonCorgi: 2 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml index cad7fe218c2..3cef86c4b98 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/backpacks.yml @@ -6,3 +6,12 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Backpacks/arcadia-backpack.rsi + +- type: entity + parent: ClothingBackpack + id: ClothingBackpackPilot + name: pilot backpack + description: A backpack for a True Ace. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Backpacks/pilot_backpack.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml index ce0dfcbda44..96a717faf38 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/duffel.yml @@ -15,3 +15,12 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Duffels/arcadia-dufflebag.rsi + +- type: entity + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelPilot + name: pilot duffel + description: A duffelbag produced for a True Ace. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Duffels/pilot_duffel.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml index b0953218143..83e928c9e0f 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Back/satchel.yml @@ -15,3 +15,12 @@ components: - type: Sprite sprite: _NF/Clothing/Back/Satchels/arcadia-satchel.rsi + +- type: entity + parent: ClothingBackpackSatchel + id: ClothingBackpackSatchelPilot + name: pilot satchel + description: A satchel produced for a True Ace. + components: + - type: Sprite + sprite: _NF/Clothing/Back/Satchels/pilot_satchel.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml index 84b5f9f0975..717834ee158 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Ears/headsets_alt.yml @@ -28,3 +28,18 @@ sprite: _NF/Clothing/Ears/Headsets/mercenary.rsi - type: Clothing sprite: _NF/Clothing/Ears/Headsets/mercenary.rsi + +- type: entity + parent: ClothingHeadsetAlt + id: ClothingHeadsetAltPilot + name: pilot over-ear headset + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyCommon + - EncryptionKeyTraffic + - type: Sprite + sprite: _NF/Clothing/Ears/Headsets/pilot_headset.rsi + - type: Clothing + sprite: _NF/Clothing/Ears/Headsets/pilot_headset.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml index 49a2e27650f..592dbd3cc6f 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Eyes/glasses.yml @@ -12,3 +12,16 @@ - type: EyeProtection - type: VisionCorrection - type: IdentityBlocker + +- type: entity + parent: ClothingEyesBase + id: ClothingEyesGlassesPilot + name: pilot goggles + description: I'm sorry, but you can't pilot a ship without cool glasses. Those are the Rules. Has a GPS built in them too. + components: + - type: Sprite + sprite: _NF/Clothing/Eyes/Glasses/pilot_glasses.rsi + - type: Clothing + sprite: _NF/Clothing/Eyes/Glasses/pilot_glasses.rsi + - type: HandheldGPS + - type: VisionCorrection \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml index edb1365b880..ac317e426dc 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Hands/gloves.yml @@ -15,3 +15,20 @@ fiberMaterial: fibers-synthetic fiberColor: fibers-black - type: FingerprintMask + +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesPilot + name: pilot gloves + description: Driving gloves, but for spaceships! + components: + - type: Sprite + sprite: _NF/Clothing/Hands/Gloves/pilot_gloves.rsi + - type: Clothing + sprite: _NF/Clothing/Hands/Gloves/pilot_gloves.rsi + - type: GloveHeatResistance + heatResistance: 1400 + - type: Fiber + fiberMaterial: fibers-leather + fiberColor: fibers-brown + - type: FingerprintMask diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml index 112261a99f6..01ebc3b8712 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hardsuit-helmets.yml @@ -52,3 +52,21 @@ Slash: 0.9 Piercing: 0.9 Heat: 0.9 + +#Pilot Hardsuit +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitPilot + noSpawn: true + name: pilot hardsuit helmet + description: Light hardsuit helmet for pilots. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hardsuits/pilot_helmet.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hardsuits/pilot_helmet.rsi + - type: PointLight + color: "#ffdbad" + - type: PressureProtection + highPressureMultiplier: 0.1 + lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml index aede46b58f9..99fc5758056 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml @@ -108,3 +108,18 @@ - type: Tag tags: - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPilot + name: pilot's helmet + description: Can't hear voices in my headset when earflaps flaps over my ears. And it feels good. + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hats/pilot_hat.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hats/pilot_hat.rsi + - type: Tag + tags: + - ClothMade + - WhitelistChameleon diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml index 9b5688dd312..5151ff09a93 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Masks/masks.yml @@ -17,3 +17,19 @@ Slash: 0.80 Piercing: 0.90 Heat: 0.90 + +- type: entity + parent: ClothingMaskBase + id: FaceHuggerPlushie + name: facehugger plushie + description: The perfect plushie to scare your friends with aliens! + components: + - type: Sprite + sprite: _NF/Clothing/Masks/facehuggerplushie.rsi + - type: Clothing + sprite: _NF/Clothing/Masks/facehuggerplushie.rsi + - type: IdentityBlocker + - type: IngestionBlocker + - type: AddAccentClothing + accent: ReplacementAccent + replacement: mumble diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml index cf76d33ed74..41d6ffbd44c 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Neck/scarfs.yml @@ -11,3 +11,14 @@ sprite: _NF/Clothing/Neck/Scarfs/chaplain_stole.rsi - type: Clothing sprite: _NF/Clothing/Neck/Scarfs/chaplain_stole.rsi + +- type: entity + parent: ClothingNeckBase + id: ClothingNeckScarfPilot + name: pilot's scarf + description: Have I told you a story how I survived when the end of this scarf got tangled in a spinning propeller? I didn't, they cloned me. + components: + - type: Sprite + sprite: _NF/Clothing/Neck/Scarfs/pilot_scarf.rsi + - type: Clothing + sprite: _NF/Clothing/Neck/Scarfs/pilot_scarf.rsi diff --git a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml index 06bcab25495..aa65055cf2a 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/OuterClothing/hardsuits.yml @@ -59,3 +59,33 @@ sprintModifier: 0.9 - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitMercenary + +# Pilot Hardsuit - Spationaut stats +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitPilot + name: pilot hardsuit + description: A hardsuit tailored for someone who spends the majority of their time buckled to a chair. + components: + - type: Sprite + sprite: _NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi + - type: Clothing + sprite: _NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi + - type: PressureProtection + highPressureMultiplier: 0.7 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Radiation: 0.3 + Caustic: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.8 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitPilot + - type: StaticPrice + price: 195 diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml new file mode 100644 index 00000000000..710c8126a65 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Clothing/Shoes/boots.yml @@ -0,0 +1,11 @@ +- type: entity + parent: ClothingShoesBaseButcherable + id: ClothingShoesBootsPilot + name: pilot boots + description: Stylish boots for running in circles on a deck during emergencies. + components: + - type: Sprite + sprite: _NF/Clothing/Shoes/Boots/pilot_boots.rsi + - type: Clothing + sprite: _NF/Clothing/Shoes/Boots/pilot_boots.rsi + - type: Matchbox diff --git a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml index 70495d2a4f3..b96125472f8 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Uniforms/jumpsuits.yml @@ -53,3 +53,14 @@ sprite: _NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi - type: Clothing sprite: _NF/Clothing/Uniforms/Jumpsuit/security_stationguard.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitPilot + name: pilot jumpsuit + description: You too think there should be a pocket for your fav smokes? + components: + - type: Sprite + sprite: _NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi + - type: Clothing + sprite: _NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml index 6487c16d38e..da0d31daefa 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/Misc/identification_cards.yml @@ -15,6 +15,23 @@ - idcard sprite: _NF/Objects/Misc/id_cards.rsi +- type: entity + parent: IDCardStandard + id: PilotIDCard + name: pilot ID card + components: + - type: PresetIdCard + job: Pilot + - type: Sprite + sprite: _NF/Objects/Misc/id_cards.rsi + layers: + - state: default + - state: idpilot + - type: Clothing + slots: + - idcard + sprite: _NF/Objects/Misc/id_cards.rsi + - type: entity parent: IDCardStandard id: StcIDCard diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml index 4adb9e3fe40..adae535b533 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/pda.yml @@ -26,6 +26,34 @@ sprite: _NF/Objects/Devices/pda.rsi state: pda-mercenary +- type: entity + parent: BasePDA + id: PilotPDA + name: pilot PDA + description: This PDA smells like thruster exhaust fumes. + components: + - type: Pda + id: PilotIDCard + state: pda-pilot + - type: PdaBorderColor + borderColor: "#717059" + accentVColor: "#A32D26" + - type: Sprite + sprite: _NF/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Icon + sprite: _NF/Objects/Devices/pda.rsi + state: pda-pilot + - type: entity parent: BasePDA id: StcPDA diff --git a/Resources/Prototypes/_NF/Entities/Objects/Fun/prizeticket.yml b/Resources/Prototypes/_NF/Entities/Objects/Fun/prizeticket.yml new file mode 100644 index 00000000000..9fec3f0a661 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Fun/prizeticket.yml @@ -0,0 +1,288 @@ +- type: entity + abstract: true + parent: BaseItem + id: PrizeTicketBase + description: A prize ticket, ready to be redeemed at a prize counter. + components: + - type: Sprite + sprite: _NF/Objects/Fun/prizeticket.rsi + - type: Item + sprite: _NF/Objects/Fun/prizeticket.rsi + size: 1 + - type: StaticPrice + price: 0 + - type: Tag + tags: + - Sheet + - PrizeTicket + +- type: entity + parent: PrizeTicketBase + id: PrizeTicket + name: prize ticket + suffix: Full + components: + - type: Material + - type: PhysicalComposition + materialComposition: + PrizeTicket: 1 + - type: Stack + count: 100 + stackType: PrizeTicket + baseLayer: base + layerStates: + - ticket + - ticket_2 + - ticket_3 + - ticket_4 + - type: Sprite + state: ticket_4 + layers: + - state: ticket_4 + map: ["base"] + - type: Item + heldPrefix: prize ticket + - type: Appearance + +- type: entity + parent: PrizeTicket + id: PrizeTicket10 + name: prize ticket + suffix: 10 + components: + - type: Sprite + state: ticket + - type: Stack + stackType: PrizeTicket + count: 10 + +- type: entity + parent: PrizeTicket + id: PrizeTicket30 + name: prize ticket + suffix: 30 + components: + - type: Sprite + state: ticket + - type: Stack + stackType: PrizeTicket + count: 30 + +- type: entity + parent: PrizeTicket + id: PrizeTicket60 + name: prize ticket + suffix: 60 + components: + - type: Sprite + state: ticket + - type: Stack + stackType: PrizeTicket + count: 60 + +- type: entity + parent: PrizeTicket + id: PrizeTicket1 + name: prize ticket + suffix: Single + components: + - type: Sprite + state: ticket + - type: Stack + stackType: PrizeTicket + count: 1 + +- type: entity + parent: PresentRandom + id: PrizeBall + name: prize ball + description: I wounder whats inside! + components: + - type: VendPrice + price: 500 + - type: Sprite + sprite: _NF/Objects/Fun/prizeticket.rsi + layers: + - state: prizeball + - type: SpawnItemsOnUse + items: + - id: PresentTrash + - id: PrizeTicket10 + orGroup: Prize + - id: PrizeTicket30 + prob: 0.80 + orGroup: Prize + - id: PlushieHampter + prob: 0.80 + orGroup: Prize + - id: PlushieVulp + prob: 0.80 + orGroup: Prize + - id: PlushieMoth + prob: 0.80 + orGroup: Prize + - id: PlushieBee + prob: 0.80 + orGroup: Prize + - id: PlushieLizard + prob: 0.80 + orGroup: Prize + - id: PlushieSpaceLizard + prob: 0.80 + orGroup: Prize + - id: PlushieSpaceLizard + prob: 0.80 + orGroup: Prize + - id: PlushieVox + orGroup: Prize + prob: 0.80 + - id: PlushieMoff + orGroup: Prize + prob: 0.80 + - id: PlushieMoffsician + orGroup: Prize + prob: 0.80 + - id: PlushieMoffbar + orGroup: Prize + prob: 0.80 + - id: PlushieDiona + orGroup: Prize + prob: 0.80 + - id: PlushieSharkGrey + orGroup: Prize + prob: 0.80 + - id: PlushieSharkBlue + orGroup: Prize + prob: 0.80 + - id: PlushieSharkPink + orGroup: Prize + prob: 0.80 + - id: PlushieRatvar + orGroup: Prize + prob: 0.80 + - id: PlushieNar + orGroup: Prize + prob: 0.80 + - id: PlushieSlime + orGroup: Prize + prob: 0.80 + - id: PlushieSnake + orGroup: Prize + prob: 0.80 + - id: PlushieCarp + orGroup: Prize + prob: 0.80 + - id: PlushieLamp + orGroup: Prize + prob: 0.80 + - id: PlushieAtmosian + orGroup: Prize + prob: 0.80 + - id: PlushieRouny + orGroup: Prize + prob: 0.80 + - id: PlushieXeno + orGroup: Prize + prob: 0.80 + - id: PlushieGhost + orGroup: Prize + prob: 0.80 + - id: FaceHuggerPlushie + orGroup: Prize + prob: 0.80 + - id: PetRock + orGroup: Prize + prob: 0.80 + - id: PlushieGnome + orGroup: Prize + prob: 0.80 + - id: PlushieLoveable + orGroup: Prize + prob: 0.80 + - id: PlushieDeer + orGroup: Prize + prob: 0.80 + - id: PlushieIpc + orGroup: Prize + prob: 0.80 + - id: PlushieGrey + orGroup: Prize + prob: 0.80 + - id: PlushieRedFox + orGroup: Prize + prob: 0.80 + - id: PlushiePurpleFox + orGroup: Prize + prob: 0.80 + - id: PlushiePinkFox + orGroup: Prize + prob: 0.80 + - id: PlushieOrangeFox + orGroup: Prize + prob: 0.80 + - id: PlushieMarbleFox + orGroup: Prize + prob: 0.80 + - id: PlushieCrimsonFox + orGroup: Prize + prob: 0.80 + - id: PlushieCoffeeFox + orGroup: Prize + prob: 0.80 + - id: PlushieBlueFox + orGroup: Prize + prob: 0.80 + - id: PlushieBlackFox + orGroup: Prize + prob: 0.80 + - id: PlushieCorgi + orGroup: Prize + prob: 0.80 + - id: PlushieGirlyCorgi + orGroup: Prize + prob: 0.80 + - id: PlushieRobotCorgi + orGroup: Prize + prob: 0.80 + - id: PlushieCatBlack + orGroup: Prize + prob: 0.80 + - id: PlushieCatOrange + orGroup: Prize + prob: 0.80 + - id: PlushieCatSiames + orGroup: Prize + prob: 0.80 + - id: PlushieCatTabby + orGroup: Prize + prob: 0.80 + - id: PlushieCatTuxedo + orGroup: Prize + prob: 0.80 + - id: PlushieCatWhite + orGroup: Prize + prob: 0.80 + - id: PrizeTicket + prob: 0.20 + orGroup: Prize + - id: PlushieJester + prob: 0.20 + orGroup: Prize + - id: PlushieTrystan + prob: 0.20 + orGroup: Prize + - id: PlushieSlips + prob: 0.20 + orGroup: Prize + - id: PlushieNuke + prob: 0.20 + orGroup: Prize + - id: PlushieRGBee + prob: 0.20 + orGroup: Prize + - id: PlushieAbductor + prob: 0.20 + orGroup: Prize + - id: PlushieAbductorAgent + prob: 0.20 + orGroup: Prize diff --git a/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml index 89f29c10d2e..01d263c6126 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml @@ -22,4 +22,363 @@ soundHit: path: /Audio/_NF/Items/Toys/wehhelp.ogg # - type: MarketPrice # TODO fix price -# price: 1000 # TODO fix price \ No newline at end of file +# price: 1000 # TODO fix price + +- type: entity + parent: BasePlushie + id: PlushieVulp + name: vulpkanin plushie + description: A vulpkanin plushie, at least you can hug this one without the risk to get bitten. + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: plushie_vulp + - type: EmitSoundOnUse + sound: + path: /Audio/_NF/Vulpikanin/bark.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/_NF/Vulpikanin/bark.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/_NF/Vulpikanin/bark.ogg + - type: MeleeWeapon + soundHit: + path: /Audio/_NF/Vulpikanin/bark.ogg + +- type: entity + parent: BaseItem + id: PlushieSlips + name: janitor plushie + description: The silent cleaner, the one that you dont hear say "Weh"! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: plushie_slips + - type: PhysicalComposition + materialComposition: + Cloth: 100 + - type: StaticPrice + price: 5 + +- type: entity + parent: PlushieVulp + id: PlushieTrystan + name: office vulp plushie + description: The ones who yeeps! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: plushie_trystan + +- type: entity + parent: ToySword + id: DBToySword + name: toy double-esword + components: + - type: Sprite + sprite: Objects/Weapons/Melee/e_sword_double.rsi + layers: + - state: e_sword_double + - state: e_sword_double_blade + color: "#FFFFFF" + visible: false + shader: unshaded + map: [ "blade" ] + - type: Item + size: 5 + sprite: Objects/Weapons/Melee/e_sword_double.rsi + +- type: entity + parent: BaseItem + id: PetRock + name: pet rock + description: Your new and only best friend! + components: + - type: Sprite + sprite: _NF/Objects/Fun/petrock.rsi + state: rock + - type: StaticPrice + price: 5 + +- type: entity + parent: BaseItem + id: PetRockFred + name: fred + components: + - type: Sprite + sprite: _NF/Objects/Fun/petrock.rsi + state: fred + +- type: entity + parent: BaseItem + id: PetRockRoxie + name: roxie + components: + - type: Sprite + sprite: _NF/Objects/Fun/petrock.rsi + state: roxie + +- type: entity + parent: BasePlushie + id: PlushieGnome + name: gnome plushie + description: A stuffed toy that resembles a gnome! or a drawf... + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: gnome + +- type: entity + parent: BasePlushie + id: PlushieLoveable + name: loveable plushie + description: A stuffed toy that resembles... a creature. + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: loveable + +- type: entity + parent: BasePlushie + id: PlushieDeer + name: deer plushie + description: A stuffed toy that resembles a deer! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: deer + +- type: entity + parent: BasePlushie + id: PlushieIpc + name: ipc plushie + description: A stuffed toy that resembles a ipc! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: ipc + +- type: entity + parent: BasePlushie + id: PlushieGrey + name: grey plushie + description: A stuffed toy that resembles a grey! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: grey + +- type: entity + parent: BasePlushie + id: PlushieAbductor + name: abductor plushie + description: A stuffed toy that resembles an abductor! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: abductor + +- type: entity + parent: BasePlushie + id: PlushieAbductorAgent + name: abductor agent plushie + description: A stuffed toy that resembles an abductor agent! + components: + - type: Sprite + sprite: _NF/Objects/Fun/toys.rsi + state: abductor_agent + +- type: entity + parent: BasePlushie + id: PlushieRedFox + name: red fox plushie + description: A cute plushie that look like a red foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: red + +- type: entity + parent: BasePlushie + id: PlushiePurpleFox + name: purple fox plushie + description: A cute plushie that look like a purple foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: purple + +- type: entity + parent: BasePlushie + id: PlushiePinkFox + name: pink fox plushie + description: A cute plushie that look like a pink foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: pink + +- type: entity + parent: BasePlushie + id: PlushieOrangeFox + name: orange fox plushie + description: A cute plushie that look like a orange foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: orange + +- type: entity + parent: BasePlushie + id: PlushieMarbleFox + name: marble fox plushie + description: A cute plushie that look like a marble foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: marble + +- type: entity + parent: BasePlushie + id: PlushieCrimsonFox + name: crimson fox plushie + description: A cute plushie that look like a crimson foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: crimson + +- type: entity + parent: BasePlushie + id: PlushieCoffeeFox + name: coffee fox plushie + description: A cute plushie that look like a coffee foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: coffee + +- type: entity + parent: BasePlushie + id: PlushieBlueFox + name: blue fox plushie + description: A cute plushie that look like a blue foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: blue + +- type: entity + parent: BasePlushie + id: PlushieBlackFox + name: black fox plushie + description: A cute plushie that look like a black foxxo! + components: + - type: Sprite + sprite: _NF/Objects/Fun/foxplushie.rsi + state: black + +- type: entity + parent: PlushieVulp + id: PlushieCorgi + name: corgi plushie + description: The ian plushie edition! + components: + - type: Sprite + sprite: _NF/Objects/Fun/corgiplushie.rsi + state: corgi + +- type: entity + parent: PlushieVulp + id: PlushieGirlyCorgi + name: girly corgi plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/corgiplushie.rsi + state: girlycorgi + +- type: entity + parent: PlushieVulp + id: PlushieRobotCorgi + name: robot corgi plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/corgiplushie.rsi + state: robotcorgi + +- type: entity + parent: BasePlushie + id: PlushieCatBlack + name: black cat plushie + description: A stuffed toy that resembles a cute kitty! + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: black + - type: EmitSoundOnUse + sound: + path: /Audio/Nyanotrasen/Voice/Felinid/cat_meow1.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Nyanotrasen/Voice/Felinid/cat_meow1.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Nyanotrasen/Voice/Felinid/cat_meow1.ogg + - type: MeleeWeapon + soundHit: + path: /Audio/Nyanotrasen/Voice/Felinid/cat_meow1.ogg + +- type: entity + parent: PlushieCatBlack + id: PlushieCatGrey + name: grey cat plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: grey + +- type: entity + parent: PlushieCatBlack + id: PlushieCatOrange + name: orange cat plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: orange + +- type: entity + parent: PlushieCatBlack + id: PlushieCatSiames + name: siames cat plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: siames + +- type: entity + parent: PlushieCatBlack + id: PlushieCatTabby + name: tabby cat plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: tabby + +- type: entity + parent: PlushieCatBlack + id: PlushieCatTuxedo + name: tuxedo cat plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: tuxedo + +- type: entity + parent: PlushieCatBlack + id: PlushieCatWhite + name: white cat plushie + components: + - type: Sprite + sprite: _NF/Objects/Fun/catplushie.rsi + state: white diff --git a/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml index 0f0485a419d..c73d3584a13 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -127,3 +127,20 @@ - state: green_bit shader: unshaded - state: refill_lesslethal + +- type: entity + parent: SecuredVendingMachineRestock + id: VendingMachineRestockAutoTuneVend + name: AutoTuneVend restock box + description: A box containing music and stuff for the Auto Tune vending machine. A label reads THE BOX IS TAMPER PROOF AND WILL DESTROY IT'S CONTENT ON HARM. + components: + - type: VendingMachineRestock + canRestock: + - AutoTuneVendInventory + - type: Sprite + sprite: _NF/Objects/Specific/Service/vending_machine_restock.rsi + layers: + - state: base + - state: green_bit + shader: unshaded + - state: refill_autotune diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml index 07a1a5a83b2..356b4a065c6 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml @@ -20,3 +20,25 @@ - Fighter - Cleric - Rogue + +# The caduceus console +- type: entity + id: CaduceusMothershipComputer + name: Caduceus mothership console + parent: BaseMothershipComputer + components: + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_medical + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_medical + - map: ["computerLayerKeys"] + state: telesci_key + - type: ShipyardListing + shuttles: + - Pulse + - Searchlight diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml new file mode 100644 index 00000000000..8004e93820c --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml @@ -0,0 +1,153 @@ +- type: entity + parent: BaseLathe + id: PrizeCounter + name: prize counter + description: Claim your prize and win some toys and cute plushies! + components: + - type: Anchorable + delay: 999999 + - type: AmbientOnPowered + - type: AmbientSound + volume: -9 + range: 3 + enabled: false + sound: + path: /Audio/Ambience/Objects/vending_machine_hum.ogg + - type: LitOnPowered + - type: ApcPowerReceiver + powerLoad: 200 + priority: Low + - type: Advertise + pack: CuddlyCritterAds + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#4b93ad" + - type: Transform + noRot: false + - type: Sprite + sprite: _NF/Structures/Machines/prizecounter.rsi + snapCardinals: true + layers: + - state: icon + map: ["enum.LatheVisualLayers.IsRunning"] + - state: unlit + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: Lathe + idleState: icon + runningState: icon + staticRecipes: + - PrizeBallRecipe + - PlushieHampterRecipe + - PlushieVulpRecipe + - PlushieBeeRecipe + - PlushieLizardRecipe + - PlushieSpaceLizardRecipe + - PlushieVoxRecipe + - PlushieMoffRecipe + - PlushieMoffsicianRecipe + - PlushieMoffbarRecipe + - PlushieDionaRecipe + - PlushieSharkGreyRecipe + - PlushieSharkBlueRecipe + - PlushieSharkPinkRecipe + - PlushieRatvarRecipe + - PlushieNarRecipe + - PlushieSlimeRecipe + - PlushieSnakeRecipe + - PlushieCarpRecipe + - PlasticBananaRecipe + - BeachBallRecipe + - BasketballRecipe + - FootballRecipe + - ToyHammerRecipe + - WhoopieCushionRecipe + - ClownRecorderRecipe + - PonderingOrbRecipe + - CrayonBoxRecipe + - CrayonRainbowRecipe + - PlushieLampRecipe + - ToySwordRecipe + - PlushieAtmosianRecipe + - PlushieRounyRecipe + - PlushieXenoRecipe + - FoamCrossbowRecipe + - BoxDonkSoftBoxRecipe + - RevolverCapGunRecipe + - BoxCartridgeCapRecipe + - HarmonicaInstrumentRecipe + - OcarinaInstrumentRecipe + - RecorderInstrumentRecipe + - GunpetInstrumentRecipe + - BirdToyInstrumentRecipe + - ToyAmongPequenoRecipe + - FoamCutlassRecipe + - CrazyGlueRecipe + - SingularityToyRecipe + - FoamBladeRecipe + - ToyRubberDuckRecipe + - PlushieGhostRecipe + - ToyMouseRecipe + - ToyAiRecipe + - ToyGriffinRecipe + - ToyHonkRecipe + - ToyIanRecipe + - ToyMarauderRecipe + - ToyGygaxRecipe + - ToyOdysseusRecipe + - ToyOwlmanRecipe + - ToyPhazonRecipe + - ToyFireRipleyRecipe + - ToyReticenceRecipe + - ToyRipleyRecipe + - ToySeraphRecipe + - ToyDurandRecipe + - ToySkeletonRecipe + - FaceHuggerPlushieRecipe + - PetRockRecipe + - PetRockFredRecipe + - PetRockRoxieRecipe + - PlushieGnomeRecipe + - PlushieLoveableRecipe + - PlushieDeerRecipe + - PlushieIpcRecipe + - PlushieGreyRecipe + - PlushieRedFoxRecipe + - PlushiePurpleFoxRecipe + - PlushiePinkFoxRecipe + - PlushieOrangeFoxRecipe + - PlushieMarbleFoxRecipe + - PlushieCrimsonFoxRecipe + - PlushieCoffeeFoxRecipe + - PlushieBlueFoxRecipe + - PlushieBlackFoxRecipe + - PlushieCorgiRecipe + - PlushieGirlyCorgiRecipe + - PlushieRobotCorgiRecipe + - PlushieCatBlackRecipe + - PlushieCatOrangeRecipe + - PlushieCatSiamesRecipe + - PlushieCatTabbyRecipe + - PlushieCatTuxedoRecipe + - PlushieCatWhiteRecipe + - type: EmagLatheRecipes + emagStaticRecipes: + - PlushieJesterRecipe + - PlushieTrystanRecipe + - PlushieSlipsRecipe + - PlushieNukeRecipe + - PlushieRGBeeRecipe + - BalloonCorgiRecipe + - DBToySwordRecipe + - BalloonSynRecipe + - ToyNukeRecipe + - ToyMaulerRecipe + - PlushieAbductorRecipe + - PlushieAbductorAgentRecipe + - type: MaterialStorage + whitelist: + tags: + - PrizeTicket diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml index 657504d8563..f9f609fd474 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/vending_machines.yml @@ -77,8 +77,8 @@ normalState: normal-unshaded ejectState: eject-unshaded denyState: deny-unshaded - - type: Advertise - pack: AstroVendAds +# - type: Advertise +# pack: CircuitVendAds - type: Sprite sprite: _NF/Structures/Machines/VendingMachines/circuitvend.rsi layers: @@ -150,8 +150,8 @@ brokenState: broken normalState: normal-unshaded # ejectState: eject-unshaded No sprite, see chefvend/dinnerware/BODA/etc for expamples - - type: Advertise - pack: AstroVendAds +# - type: Advertise +# pack: BountyVendAds - type: Sprite sprite: _NF/Structures/bountyvend.rsi layers: @@ -232,3 +232,56 @@ radius: 1.5 energy: 1.6 color: "#ff033e" + +- type: entity + parent: VendingMachine + id: VendingMachineAutoTuneVend + name: AutoTune + description: feeling BASSed? time to TUNE into AutoVend! Take NOTES and let your audience TREBLE + components: + - type: Anchorable + delay: 999999 + - type: VendingMachine + pack: AutoTuneVendInventory + offState: off + brokenState: broken + normalState: normal-unshaded + ejectState: eject-unshaded + denyState: deny-unshaded +# - type: Advertise +# pack: AutoTuneVendAds + - type: Sprite + sprite: _NF/Structures/Machines/VendingMachines/autotunevend.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#4b93ad" + - type: MarketModifier + mod: 10 +#Interface + - type: UserInterface + interfaces: + - key: enum.VendingMachineUiKey.Key + type: VendingMachineBoundUserInterface + - key: enum.WiresUiKey.Key + type: WiresBoundUserInterface + - key: enum.InstrumentUiKey.Key # Added + type: InstrumentBoundUserInterface # Added +#Music + - type: Instrument + allowPercussion: true + allowProgramChange: true + handheld: false +#Ghost + # - type: GhostRole + # makeSentient: true + # allowSpeech: true + # - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 8ad7ca3c39c..00d06fc3747 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -51,3 +51,31 @@ - state: welded visible: false map: ["enum.WeldableLayers.BaseWelded"] + +# Pilot +- type: entity + id: LockerPilot + parent: LockerBaseSecure + name: pilot's locker + components: + - type: Appearance + - type: EntityStorageVisuals + stateBaseClosed: pilot + stateDoorOpen: pilot_open + stateDoorClosed: pilot_door + - type: Sprite + sprite: _NF/Structures/Storage/closet.rsi + noRot: true + layers: + - state: generic + map: ["enum.StorageVisualLayers.Base"] + - state: generic_door + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.StorageVisualLayers.Lock"] + shader: unshaded + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - type: AccessReader + access: [["Captain"], ["Pilot"]] diff --git a/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml b/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml index 3a3ee396c10..08291492756 100644 --- a/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/_NF/Markers/Spawners/jobs.yml @@ -10,3 +10,16 @@ layers: - state: green - state: mercenary + +- type: entity + id: SpawnPointPilot + parent: SpawnPointJobBase + name: pilot + components: + - type: SpawnPoint + job_id: Pilot + - type: Sprite + sprite: _NF/Markers/jobs.rsi + layers: + - state: green + - state: pilot diff --git a/Resources/Prototypes/_NF/Reagents/Materials/prizeticket.yml b/Resources/Prototypes/_NF/Reagents/Materials/prizeticket.yml new file mode 100644 index 00000000000..e3ff4217d28 --- /dev/null +++ b/Resources/Prototypes/_NF/Reagents/Materials/prizeticket.yml @@ -0,0 +1,6 @@ +- type: material + id: PrizeTicket + stackEntity: PrizeTicket1 + name: prize ticket + icon: { sprite: _NF/Objects/Fun/prizeticket.rsi, state: ticket } + price: 0. diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/prizecounter.yml b/Resources/Prototypes/_NF/Recipes/Lathes/prizecounter.yml new file mode 100644 index 00000000000..a7f881bc68d --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Lathes/prizecounter.yml @@ -0,0 +1,849 @@ +- type: latheRecipe + id: PrizeBallRecipe + result: PrizeBall + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PlushieHampterRecipe + result: PlushieHampter + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieVulpRecipe + result: PlushieVulp + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieMothRecipe + result: PlushieMoth + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieBeeRecipe + result: PlushieBee + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieLizardRecipe + result: PlushieLizard + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieSpaceLizardRecipe + result: PlushieSpaceLizard + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieVoxRecipe + result: PlushieVox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieMoffRecipe + result: PlushieMoff + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieMoffsicianRecipe + result: PlushieMoffsician + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieMoffbarRecipe + result: PlushieMoffbar + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieDionaRecipe + result: PlushieDiona + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieSharkGreyRecipe + result: PlushieSharkGrey + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieSharkBlueRecipe + result: PlushieSharkBlue + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieSharkPinkRecipe + result: PlushieSharkPink + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieRatvarRecipe + result: PlushieRatvar + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieNarRecipe + result: PlushieNar + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieSlimeRecipe + result: PlushieSlime + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieSnakeRecipe + result: PlushieSnake + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCarpRecipe + result: PlushieCarp + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlasticBananaRecipe + result: PlasticBanana + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: BeachBallRecipe + result: BeachBall + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: BasketballRecipe + result: Basketball + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: FootballRecipe + result: Football + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: ToyHammerRecipe + result: ToyHammer + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: WhoopieCushionRecipe + result: WhoopieCushion + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 25 + +- type: latheRecipe + id: ClownRecorderRecipe + result: ClownRecorder + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 25 + +- type: latheRecipe + id: PonderingOrbRecipe + result: PonderingOrb + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: CrayonBoxRecipe + result: CrayonBox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: CrayonRainbowRecipe + result: CrayonRainbow + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: PlushieLampRecipe + result: PlushieLamp + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 35 + +- type: latheRecipe + id: ToySwordRecipe + result: ToySword + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 40 + +- type: latheRecipe + id: PlushieAtmosianRecipe + result: PlushieAtmosian + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieRounyRecipe + result: PlushieRouny + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieXenoRecipe + result: PlushieXeno + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: FoamCrossbowRecipe + result: FoamCrossbow + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: BoxDonkSoftBoxRecipe + result: BoxDonkSoftBox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: RevolverCapGunRecipe + result: RevolverCapGun + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 80 + +- type: latheRecipe + id: BoxCartridgeCapRecipe + result: BoxCartridgeCap + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: HarmonicaInstrumentRecipe + result: HarmonicaInstrument + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: OcarinaInstrumentRecipe + result: OcarinaInstrument + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: RecorderInstrumentRecipe + result: RecorderInstrument + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: GunpetInstrumentRecipe + result: GunpetInstrument + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: BirdToyInstrumentRecipe + result: BirdToyInstrument + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: ToyAmongPequenoRecipe + result: ToyAmongPequeno + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 100 + +- type: latheRecipe + id: FoamCutlassRecipe + result: FoamCutlass + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 30 + +- type: latheRecipe + id: CrazyGlueRecipe + result: CrazyGlue + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 80 + +- type: latheRecipe + id: SingularityToyRecipe + result: SingularityToy + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 100 + +- type: latheRecipe + id: FoamBladeRecipe + result: FoamBlade + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 20 + +- type: latheRecipe + id: ToyRubberDuckRecipe + result: ToyRubberDuck + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: PlushieGhostRecipe + result: PlushieGhost + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: ToyMouseRecipe + result: ToyMouse + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyAiRecipe + result: ToyAi + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyGriffinRecipe + result: ToyGriffin + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyHonkRecipe + result: ToyHonk + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyIanRecipe + result: ToyIan + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyMarauderRecipe + result: ToyMarauder + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyGygaxRecipe + result: ToyGygax + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyOdysseusRecipe + result: ToyOdysseus + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyOwlmanRecipe + result: ToyOwlman + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyPhazonRecipe + result: ToyPhazon + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyFireRipleyRecipe + result: ToyFireRipley + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyReticenceRecipe + result: ToyReticence + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyRipleyRecipe + result: ToyRipley + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToySeraphRecipe + result: ToySeraph + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyDurandRecipe + result: ToyDurand + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToySkeletonRecipe + result: ToySkeleton + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: FaceHuggerPlushieRecipe + result: FaceHuggerPlushie + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PetRockRecipe + result: PetRock + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 5 + +- type: latheRecipe + id: PetRockFredRecipe + result: PetRockFred + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: PetRockRoxieRecipe + result: PetRockRoxie + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: PlushieGnomeRecipe + result: PlushieGnome + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieLoveableRecipe + result: PlushieLoveable + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieDeerRecipe + result: PlushieDeer + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieIpcRecipe + result: PlushieIpc + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieGreyRecipe + result: PlushieGrey + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieRedFoxRecipe + result: PlushieRedFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushiePurpleFoxRecipe + result: PlushiePurpleFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushiePinkFoxRecipe + result: PlushiePinkFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieOrangeFoxRecipe + result: PlushieOrangeFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieMarbleFoxRecipe + result: PlushieMarbleFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCrimsonFoxRecipe + result: PlushieCrimsonFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCoffeeFoxRecipe + result: PlushieCoffeeFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieBlueFoxRecipe + result: PlushieBlueFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieBlackFoxRecipe + result: PlushieBlackFox + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCorgiRecipe + result: PlushieCorgi + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieGirlyCorgiRecipe + result: PlushieGirlyCorgi + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieRobotCorgiRecipe + result: PlushieRobotCorgi + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCatBlackRecipe + result: PlushieCatBlack + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCatOrangeRecipe + result: PlushieCatOrange + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCatSiamesRecipe + result: PlushieCatSiames + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCatTabbyRecipe + result: PlushieCatTabby + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCatTuxedoRecipe + result: PlushieCatTuxedo + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +- type: latheRecipe + id: PlushieCatWhiteRecipe + result: PlushieCatWhite + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 15 + +# EMAG + +- type: latheRecipe + id: PlushieJesterRecipe + result: PlushieJester + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PlushieTrystanRecipe + result: PlushieTrystan + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PlushieSlipsRecipe + result: PlushieSlips + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PlushieNukeRecipe + result: PlushieNuke + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PlushieRGBeeRecipe + result: PlushieRGBee + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: BalloonCorgiRecipe + result: BalloonCorgi + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 30 + +- type: latheRecipe + id: DBToySwordRecipe + result: DBToySword + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 60 + +- type: latheRecipe + id: BalloonSynRecipe + result: BalloonSyn + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 30 + +- type: latheRecipe + id: ToyNukeRecipe + result: ToyNuke + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: ToyMaulerRecipe + result: ToyMauler + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 10 + +- type: latheRecipe + id: PlushieAbductorRecipe + result: PlushieAbductor + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 + +- type: latheRecipe + id: PlushieAbductorAgentRecipe + result: PlushieAbductorAgent + applyMaterialDiscount: false + completetime: 0.1 + materials: + PrizeTicket: 50 diff --git a/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml b/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml new file mode 100644 index 00000000000..60a333a6826 --- /dev/null +++ b/Resources/Prototypes/_NF/Roles/Jobs/Wildcards/pilot.yml @@ -0,0 +1,37 @@ +- type: job + id: Pilot + name: job-name-pilot + description: job-description-pilot + playTimeTracker: JobPilot + requirements: + - !type:OverallPlaytimeRequirement + time: 120 + startingGear: PilotGear + canBeAntag: true + icon: "JobIconPilot" + supervisors: job-supervisors-captain + setPreference: true + access: + - Maintenance + - External + - Pilot + +- type: startingGear + id: PilotGear + equipment: + jumpsuit: ClothingUniformJumpsuitPilot + back: ClothingBackpackPilotFilled + shoes: ClothingShoesBootsPilot +# mask: ClothingMaskGasPilot # Doesn't exist yet + neck: ClothingNeckScarfPilot + eyes: ClothingEyesGlassesPilot + gloves: ClothingHandsGlovesPilot + head: ClothingHeadHatPilot + outerClothing: ClothingOuterCoatBomber + id: PilotPDA + ears: ClothingHeadsetAltPilot +# belt: ClothingBeltSalvageWebbing + pocket1: CrowbarRed +# innerClothingSkirt: ClothingUniformJumpskirtPilot # Doesn't exist yet + satchel: ClothingBackpackSatchelPilotFilled + duffelbag: ClothingBackpackDuffelPilotFilled diff --git a/Resources/Prototypes/_NF/Roles/play_time_trackers.yml b/Resources/Prototypes/_NF/Roles/play_time_trackers.yml index 07543a4e0fe..d71b8812e11 100644 --- a/Resources/Prototypes/_NF/Roles/play_time_trackers.yml +++ b/Resources/Prototypes/_NF/Roles/play_time_trackers.yml @@ -3,3 +3,6 @@ - type: playTimeTracker id: JobStc + +- type: playTimeTracker + id: JobPilot diff --git a/Resources/Prototypes/_NF/Shipyard/bazaar.yml b/Resources/Prototypes/_NF/Shipyard/bazaar.yml index 80cc563113a..8343d71f607 100644 --- a/Resources/Prototypes/_NF/Shipyard/bazaar.yml +++ b/Resources/Prototypes/_NF/Shipyard/bazaar.yml @@ -2,15 +2,15 @@ id: Bazaar name: SLI Bazaar description: The Bazaar is a personal service vessel designed to provide a platform for merchants to sell their goods, it features two locking cargo docks, a spacious cargo hold, and a mercenary post for shop security. - price: 55000 + price: 65000 category: Medium group: Civilian - shuttlePath: /Maps/Shuttles/bazaar.yml + shuttlePath: /Maps/_NF/Shuttles/bazaar.yml - type: gameMap id: Bazaar mapName: 'SLI Bazaar' - mapPath: /Maps/Shuttles/bazaar.yml + mapPath: /Maps/_NF/Shuttles/bazaar.yml minPlayers: 0 stations: Bazaar: diff --git a/Resources/Prototypes/_NF/Shipyard/gourd.yml b/Resources/Prototypes/_NF/Shipyard/gourd.yml index b5a7fc8ed39..77ee0fa5417 100644 --- a/Resources/Prototypes/_NF/Shipyard/gourd.yml +++ b/Resources/Prototypes/_NF/Shipyard/gourd.yml @@ -2,15 +2,15 @@ id: gourd name: SLI Gourd description: The Gourd is a Science/Salvo-Expo vessel with a dedicated blast chamber, and a proper bar/grill. - price: 160000 + price: 225000 category: Large group: Expedition - shuttlePath: /Maps/Shuttles/gourd.yml + shuttlePath: /Maps/_NF/Shuttles/gourd.yml - type: gameMap id: gourd mapName: 'SLI Gourd' - mapPath: /Maps/Shuttles/gourd.yml + mapPath: /Maps/_NF/Shuttles/gourd.yml minPlayers: 0 stations: gourd: diff --git a/Resources/Prototypes/_NF/Shipyard/mayflower.yml b/Resources/Prototypes/_NF/Shipyard/mayflower.yml index 8c61e56b543..ae8f0b3cca1 100644 --- a/Resources/Prototypes/_NF/Shipyard/mayflower.yml +++ b/Resources/Prototypes/_NF/Shipyard/mayflower.yml @@ -5,19 +5,19 @@ price: 50000 category: Medium group: Scrap - shuttlePath: /Maps/Shuttles/mayflower.yml + shuttlePath: /Maps/_NF/Shuttles/mayflower.yml - type: gameMap id: Mayflower mapName: 'USS Mayflower' - mapPath: /Maps/Shuttles/mayflower.yml + mapPath: /Maps/_NF/Shuttles/mayflower.yml minPlayers: 0 stations: Mayflower: stationProto: StandardFrontierExpeditionVessel components: - type: StationNameSetup - mapNameTemplate: 'USS Mayflower {1}' + mapNameTemplate: 'Mayflower {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: '14' diff --git a/Resources/Prototypes/_NF/Shipyard/searchlight.yml b/Resources/Prototypes/_NF/Shipyard/searchlight.yml index 4b1e01ccb0b..ff6bd638501 100644 --- a/Resources/Prototypes/_NF/Shipyard/searchlight.yml +++ b/Resources/Prototypes/_NF/Shipyard/searchlight.yml @@ -1,5 +1,5 @@ - type: vessel - id: searchlight + id: Searchlight name: NM Searchlight description: A small vessel outfitted for the search and recovery of wounded NT personnel. Primarily for recovery. Search though? Well. You got that medical tracker implanted, right? price: 29500 @@ -8,12 +8,12 @@ shuttlePath: /Maps/Shuttles/searchlight.yml - type: gameMap - id: searchlight + id: Searchlight mapName: 'NM Searchlight' mapPath: /Maps/Shuttles/searchlight.yml minPlayers: 0 stations: - searchlight: + Searchlight: stationProto: StandardFrontierVessel components: - type: StationNameSetup diff --git a/Resources/Prototypes/_NF/Shipyard/stellaris.yml b/Resources/Prototypes/_NF/Shipyard/stellaris.yml new file mode 100644 index 00000000000..8db5fe43c3d --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/stellaris.yml @@ -0,0 +1,30 @@ +- type: vessel + id: Stellaris + name: NT Stellaris + description: A mobile theatre perfect for putting on any show. + price: 45000 + category: Medium + group: Civilian + shuttlePath: /Maps/_NF/Shuttles/stellaris.yml + +- type: gameMap + id: Stellaris + mapName: 'NT Stellaris' + mapPath: /Maps/_NF/Shuttles/stellaris.yml + minPlayers: 0 + stations: + Stellaris: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: '{0} Stellaris {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: + Clown: [ 0, 0 ] + Mime: [ 0, 0 ] + Musician: [ 0, 0 ] + Chef: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Stacks/prizeticket.yml b/Resources/Prototypes/_NF/Stacks/prizeticket.yml new file mode 100644 index 00000000000..842d8e8c4bb --- /dev/null +++ b/Resources/Prototypes/_NF/Stacks/prizeticket.yml @@ -0,0 +1,7 @@ +- type: stack + id: PrizeTicket + name: prize ticket + icon: { sprite: _NF/Objects/Fun/prizeticket.rsi, state: ticket } + spawn: PrizeTicket1 + maxCount: 100 + itemSize: 1 diff --git a/Resources/Prototypes/_NF/StatusEffects/job.yml b/Resources/Prototypes/_NF/StatusEffects/job.yml index 009494cb1bc..7b5dea47389 100644 --- a/Resources/Prototypes/_NF/StatusEffects/job.yml +++ b/Resources/Prototypes/_NF/StatusEffects/job.yml @@ -12,6 +12,13 @@ sprite: _NF/Interface/Misc/job_icons.rsi state: Mercenary +- type: statusIcon + parent: JobIcon + id: JobIconPilot + icon: + sprite: _NF/Interface/Misc/job_icons.rsi + state: Pilot + - type: statusIcon parent: JobIcon id: JobIconStc diff --git a/Resources/Prototypes/_NF/tags.yml b/Resources/Prototypes/_NF/tags.yml index 83713aaa500..db873d25a7e 100644 --- a/Resources/Prototypes/_NF/tags.yml +++ b/Resources/Prototypes/_NF/tags.yml @@ -1,6 +1,6 @@ - type: Tag id: CaveFactory - + - type: Tag id: DockTransit @@ -45,3 +45,6 @@ - type: Tag id: Mustard + +- type: Tag + id: PrizeTicket diff --git a/Resources/Textures/Objects/Fun/toys.rsi/nuketoy.png b/Resources/Textures/Objects/Fun/toys.rsi/nuketoy.png index dfeb0d01659..47674427616 100644 Binary files a/Resources/Textures/Objects/Fun/toys.rsi/nuketoy.png and b/Resources/Textures/Objects/Fun/toys.rsi/nuketoy.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..51369caa8db Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/icon.png new file mode 100644 index 00000000000..fc13917e8d5 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-left.png new file mode 100644 index 00000000000..f796464c6cd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-right.png new file mode 100644 index 00000000000..02abc0397f0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/meta.json new file mode 100644 index 00000000000..476ad27435d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Backpacks/pilot_backpack.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..f4afc77b5b3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/icon.png new file mode 100644 index 00000000000..90c48dda60f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-left.png new file mode 100644 index 00000000000..42f511fd073 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-right.png new file mode 100644 index 00000000000..ad972018d58 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/meta.json new file mode 100644 index 00000000000..476ad27435d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Duffels/pilot_duffel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..b791f34885c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/icon.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/icon.png new file mode 100644 index 00000000000..4f3a9c6b509 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-left.png new file mode 100644 index 00000000000..052273ccee0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-right.png new file mode 100644 index 00000000000..cc7b2ad06bd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/meta.json b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/meta.json new file mode 100644 index 00000000000..476ad27435d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Back/Satchels/pilot_satchel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/alt-equipped-EARS.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/alt-equipped-EARS.png new file mode 100644 index 00000000000..c002f274861 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/alt-equipped-EARS.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/icon_alt.png b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/icon_alt.png new file mode 100644 index 00000000000..62b0e1ccd88 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/icon_alt.png differ diff --git a/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/meta.json b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/meta.json new file mode 100644 index 00000000000..50a61173da6 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Ears/Headsets/pilot_headset.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon_alt" + }, + { + "name": "alt-equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/equipped-EYES.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/equipped-EYES.png new file mode 100644 index 00000000000..3675555f35d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/icon.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/icon.png new file mode 100644 index 00000000000..51f81d6eebf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-left.png new file mode 100644 index 00000000000..fbacab702d9 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-right.png new file mode 100644 index 00000000000..941a0d95095 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/meta.json b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/meta.json new file mode 100644 index 00000000000..e978c719de8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Eyes/Glasses/pilot_glasses.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EYES", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/equipped-HAND.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/equipped-HAND.png new file mode 100644 index 00000000000..bd1b11bf166 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/icon.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/icon.png new file mode 100644 index 00000000000..20d31294525 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-left.png new file mode 100644 index 00000000000..fe5f356b274 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-right.png new file mode 100644 index 00000000000..535677138ae Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/meta.json b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/meta.json new file mode 100644 index 00000000000..ac12215020b --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Hands/Gloves/pilot_gloves.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HAND", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon-flash.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon-flash.png new file mode 100644 index 00000000000..55eca98cc6e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon-flash.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon.png new file mode 100644 index 00000000000..57cb694ed7e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/meta.json new file mode 100644 index 00000000000..0b6f1703ff0 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-inhand-left", + "directions": 4 + }, + { + "name": "off-inhand-right", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-inhand-left", + "directions": 4 + }, + { + "name": "on-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..585afa78f3b Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET.png new file mode 100644 index 00000000000..373ac3a6b7e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-left.png new file mode 100644 index 00000000000..20969c7b418 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-right.png new file mode 100644 index 00000000000..6e2a28d9156 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/off-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..410a3171fff Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET.png new file mode 100644 index 00000000000..8aface7b739 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-left.png new file mode 100644 index 00000000000..097111b9592 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-right.png new file mode 100644 index 00000000000..eb3517bb0bc Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/pilot_helmet.rsi/on-inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..c3c44663f31 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/icon.png new file mode 100644 index 00000000000..7ba5d07b58e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-left.png new file mode 100644 index 00000000000..a976a2ad8f1 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-right.png new file mode 100644 index 00000000000..c3369fe7107 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/meta.json new file mode 100644 index 00000000000..f1ff6cc9ecc --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hats/pilot_hat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "SS14 ushanka.rsi resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/equipped-MASK.png b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/equipped-MASK.png new file mode 100644 index 00000000000..3d894beeb80 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/icon.png b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/icon.png new file mode 100644 index 00000000000..dbf3f21fd7d Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/inhand-left.png new file mode 100644 index 00000000000..0360a6204f4 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/inhand-right.png new file mode 100644 index 00000000000..3359f5280fd Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/meta.json b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/meta.json new file mode 100644 index 00000000000..0a494d1f2a8 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Masks/facehuggerplushie.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-MASK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/equipped-NECK.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/equipped-NECK.png new file mode 100644 index 00000000000..41076d0fca0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/icon.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/icon.png new file mode 100644 index 00000000000..142630c55c6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-left.png new file mode 100644 index 00000000000..31e4dab831c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-right.png new file mode 100644 index 00000000000..73c27052542 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/meta.json b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/meta.json new file mode 100644 index 00000000000..684ee895b2d --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Neck/Scarfs/pilot_scarf.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by MrGreen06#0618 (discord) | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING-monkey.png new file mode 100644 index 00000000000..95e552a63de Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..00fae058bf3 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/icon.png new file mode 100644 index 00000000000..a0901f6da6f Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-left.png new file mode 100644 index 00000000000..1968061fe9c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-right.png new file mode 100644 index 00000000000..2afc7b745df Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/meta.json new file mode 100644 index 00000000000..8ef51232293 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/pilot_hardsuit.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/equipped-FEET.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/equipped-FEET.png new file mode 100644 index 00000000000..beaef0b87f8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/equipped-FEET.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/icon.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/icon.png new file mode 100644 index 00000000000..39d04a6c814 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-left.png new file mode 100644 index 00000000000..d3091640380 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-right.png new file mode 100644 index 00000000000..41ff5d0a614 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/meta.json b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/meta.json new file mode 100644 index 00000000000..6b37732ecaf --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Shoes/Boots/pilot_boots.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6236a0ddd1bd3c4e5574eb9fdebf4d79ccad2d2f | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-FEET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-monkey.png new file mode 100644 index 00000000000..b8d98ea68b0 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-vox.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-vox.png new file mode 100644 index 00000000000..515d1677eef Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING-vox.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..b5d3ea0cf5c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/icon.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/icon.png new file mode 100644 index 00000000000..3d848cf8d58 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-left.png new file mode 100644 index 00000000000..aa710a72ef8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-right.png new file mode 100644 index 00000000000..0bf05f815d8 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/meta.json b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/meta.json new file mode 100644 index 00000000000..f36da39d0e7 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Uniforms/Jumpsuit/pilot_jumpsuit.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14 | Resprited for pilot by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-vox", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png new file mode 100644 index 00000000000..1e16481383b Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json index ff2f94199b2..26c853e7dc6 100644 --- a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Mercenary icon made by erhardsteinhauer (discord)", + "copyright": "Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Mercenary and Pilot icons made by erhardsteinhauer (discord)", "size": { "x": 8, @@ -10,6 +10,9 @@ "states": [ { "name": "Mercenary" + }, + { + "name": "Pilot" } ] } diff --git a/Resources/Textures/_NF/Markers/jobs.rsi/meta.json b/Resources/Textures/_NF/Markers/jobs.rsi/meta.json index 8a700a31d51..388f334486b 100644 --- a/Resources/Textures/_NF/Markers/jobs.rsi/meta.json +++ b/Resources/Textures/_NF/Markers/jobs.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by dvir001 (GitHub)", + "copyright": "Made by dvir001 (GitHub), Pilot marker made by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -12,6 +12,9 @@ }, { "name": "mercenary" + }, + { + "name": "pilot" } ] } diff --git a/Resources/Textures/_NF/Markers/jobs.rsi/pilot.png b/Resources/Textures/_NF/Markers/jobs.rsi/pilot.png new file mode 100644 index 00000000000..b37b69bb78f Binary files /dev/null and b/Resources/Textures/_NF/Markers/jobs.rsi/pilot.png differ diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json index 5bf212ce625..55b6e3af171 100644 --- a/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Devices/pda.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord)", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord) | Resprited for pilot and mercenary by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -30,6 +30,9 @@ }, { "name": "pda-mercenary" + }, + { + "name": "pda-pilot" } ] } diff --git a/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-pilot.png b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-pilot.png new file mode 100644 index 00000000000..356b4c8c9cf Binary files /dev/null and b/Resources/Textures/_NF/Objects/Devices/pda.rsi/pda-pilot.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/black.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/black.png new file mode 100644 index 00000000000..e62cb62916e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/black.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/grey.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/grey.png new file mode 100644 index 00000000000..b941adbf781 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/grey.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/meta.json new file mode 100644 index 00000000000..878f438f4ec --- /dev/null +++ b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "black" + }, + { + "name": "grey" + }, + { + "name": "orange" + }, + { + "name": "siames" + }, + { + "name": "tabby" + }, + { + "name": "tuxedo" + }, + { + "name": "white" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/orange.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/orange.png new file mode 100644 index 00000000000..0f4cad131f7 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/orange.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/siames.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/siames.png new file mode 100644 index 00000000000..6f27a86343a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/siames.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/tabby.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/tabby.png new file mode 100644 index 00000000000..38575cc0de2 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/tabby.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/tuxedo.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/tuxedo.png new file mode 100644 index 00000000000..327f8b455ea Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/tuxedo.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/white.png b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/white.png new file mode 100644 index 00000000000..e16a9ed29db Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/catplushie.rsi/white.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/corgi.png b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/corgi.png new file mode 100644 index 00000000000..83eaa3bb860 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/corgi.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/girlycorgi.png b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/girlycorgi.png new file mode 100644 index 00000000000..bf8be50eeaf Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/girlycorgi.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/meta.json new file mode 100644 index 00000000000..06c0cf9ed4a --- /dev/null +++ b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "corgi" + }, + { + "name": "girlycorgi" + }, + { + "name": "robotcorgi" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/robotcorgi.png b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/robotcorgi.png new file mode 100644 index 00000000000..a8dfdfb3f32 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/corgiplushie.rsi/robotcorgi.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/black.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/black.png new file mode 100644 index 00000000000..b314043924a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/black.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/blue.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/blue.png new file mode 100644 index 00000000000..ccc9b2d7e4a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/blue.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/coffee.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/coffee.png new file mode 100644 index 00000000000..81650c1b6f6 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/coffee.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/crimson.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/crimson.png new file mode 100644 index 00000000000..02575061768 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/crimson.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/marble.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/marble.png new file mode 100644 index 00000000000..b6f1cb9032d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/marble.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/meta.json new file mode 100644 index 00000000000..5842b1ad07a --- /dev/null +++ b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "black" + }, + { + "name": "blue" + }, + { + "name": "coffee" + }, + { + "name": "crimson" + }, + { + "name": "marble" + }, + { + "name": "orange" + }, + { + "name": "pink" + }, + { + "name": "purple" + }, + { + "name": "red" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/orange.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/orange.png new file mode 100644 index 00000000000..5bd3098c0d2 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/orange.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/pink.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/pink.png new file mode 100644 index 00000000000..c07cdac4e7f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/pink.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/purple.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/purple.png new file mode 100644 index 00000000000..18aa47315d6 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/purple.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/red.png b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/red.png new file mode 100644 index 00000000000..966108f7abe Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/foxplushie.rsi/red.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/petrock.rsi/fred.png b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/fred.png new file mode 100644 index 00000000000..daa36c12fce Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/fred.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/petrock.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/meta.json new file mode 100644 index 00000000000..d39a58e623d --- /dev/null +++ b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "rock" + }, + { + "name": "fred" + }, + { + "name": "roxie" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/petrock.rsi/rock.png b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/rock.png new file mode 100644 index 00000000000..4f97dfeba6f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/rock.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/petrock.rsi/roxie.png b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/roxie.png new file mode 100644 index 00000000000..f0a2f48c6d6 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/petrock.rsi/roxie.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/meta.json new file mode 100644 index 00000000000..bf0f0d3224d --- /dev/null +++ b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ticket" + }, + { + "name": "ticket_2" + }, + { + "name": "ticket_3" + }, + { + "name": "ticket_4" + }, + { + "name": "prizeball" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/prizeball.png b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/prizeball.png new file mode 100644 index 00000000000..fd8290de147 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/prizeball.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket.png b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket.png new file mode 100644 index 00000000000..c52f243e9f5 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_2.png b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_2.png new file mode 100644 index 00000000000..7e59f474e6a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_2.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_3.png b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_3.png new file mode 100644 index 00000000000..00b58dcdf22 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_3.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_4.png b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_4.png new file mode 100644 index 00000000000..fd4b9f5e6e4 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/prizeticket.rsi/ticket_4.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/abductor.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/abductor.png new file mode 100644 index 00000000000..f3efecc00e1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/abductor.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/abductor_agent.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/abductor_agent.png new file mode 100644 index 00000000000..59aefaca07e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/abductor_agent.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/deer.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/deer.png new file mode 100644 index 00000000000..d9bc621422f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/deer.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/gnome.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/gnome.png new file mode 100644 index 00000000000..7fdb97a688d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/gnome.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/grey.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/grey.png new file mode 100644 index 00000000000..6253fb8ca45 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/grey.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/ipc.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/ipc.png new file mode 100644 index 00000000000..ed8aac5cea8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/ipc.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/loveable.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/loveable.png new file mode 100644 index 00000000000..0011a2e8311 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/loveable.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/toys.rsi/meta.json index bb19d688c11..5af85ef91bc 100644 --- a/Resources/Textures/_NF/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Fun/toys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "plushie_jester: gentlejester-148196053781315584", + "copyright": "plushie_jester, plushie_trystan, plushie_vulp: gentlejester-148196053781315584 / plushie_slips: mintymoo-449394523089403905 / gnome/ipc/grey/loveable/abductor/abductor_agent/deer - Taken from Paradise Station", "size": { "x": 32, "y": 32 @@ -9,6 +9,36 @@ "states": [ { "name": "plushie_jester" + }, + { + "name": "plushie_slips" + }, + { + "name": "plushie_trystan" + }, + { + "name": "plushie_vulp" + }, + { + "name": "ipc" + }, + { + "name": "deer" + }, + { + "name": "grey" + }, + { + "name": "loveable" + }, + { + "name": "abductor" + }, + { + "name": "abductor_agent" + }, + { + "name": "gnome" } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_slips.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_slips.png new file mode 100644 index 00000000000..55b389ab568 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_slips.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_trystan.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_trystan.png new file mode 100644 index 00000000000..e822d59265b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_trystan.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_vulp.png b/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_vulp.png new file mode 100644 index 00000000000..5b715fe7346 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/toys.rsi/plushie_vulp.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png new file mode 100644 index 00000000000..3859da6b22b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json index 66724e44df2..b73324fd115 100644 --- a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github) | Resprited for mercenary and pilot by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -18,6 +18,9 @@ }, { "name": "idstationtrafficcontroller" + }, + { + "name": "idpilot" } ] } diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json index 0ac580f8d77..fbe9b13029e 100644 --- a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/meta.json @@ -15,7 +15,9 @@ }, { "name": "refill_lesslethal" + }, + { + "name": "refill_autotune" } - ] } diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png new file mode 100644 index 00000000000..92770e83842 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/broken.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/broken.png new file mode 100644 index 00000000000..3aee7813c3f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/broken.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/deny-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/deny-unshaded.png new file mode 100644 index 00000000000..6010dd6e2f3 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/deny-unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/eject-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/eject-unshaded.png new file mode 100644 index 00000000000..480970937d6 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/eject-unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/meta.json new file mode 100644 index 00000000000..6de92701347 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/meta.json @@ -0,0 +1,53 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by [Data_Redacted]", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "normal-unshaded", + "delays": [ + [ + 2.5, + 0.05, + 3.4, + 0.05 + ] + ] + }, + { + "name": "broken" + }, + { + "name": "deny-unshaded", + "delays": [ + [ + 0.5, + 2, + 2 + ] + ] + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "eject-unshaded", + "delays": [ + [ + 0.1, + 0.1, + 0.8, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/normal-unshaded.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/normal-unshaded.png new file mode 100644 index 00000000000..db051e3335b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/off.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/off.png new file mode 100644 index 00000000000..3359afaf292 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/off.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/panel.png b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/panel.png new file mode 100644 index 00000000000..4c92e1fe2e2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/VendingMachines/autotunevend.rsi/panel.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_medical.png b/Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_medical.png new file mode 100644 index 00000000000..bb79dfb822b Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computers.rsi/computer_medical.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json index 9555971c55b..afe7311d10c 100644 --- a/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Machines/computers.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "shipyard_security and shipyard made by Potato1234_x, black market versions by terezi4real on github", + "copyright": "shipyard_security and shipyard made by Potato1234_x, black market versions by terezi4real on github, medical versions by sungyandy", "size": { "x": 32, "y": 32 @@ -15,6 +15,10 @@ "name": "computer_blackmarket", "directions": 4 }, + { + "name": "computer_medical", + "directions": 4 + }, { "name": "generic_keyboard", "directions": 4 @@ -113,6 +117,36 @@ ] ] }, + { + "name": "shipyard_medical", + "directions": 4, + "delays": [ + [ + 1.0, + 0.3, + 1.0, + 0.3 + ], + [ + 1.0, + 0.3, + 1.0, + 0.3 + ], + [ + 1.0, + 0.3, + 1.0, + 0.3 + ], + [ + 1.0, + 0.3, + 1.0, + 0.3 + ] + ] + }, { "name": "telesci_key", "directions": 4 diff --git a/Resources/Textures/_NF/Structures/Machines/computers.rsi/shipyard_medical.png b/Resources/Textures/_NF/Structures/Machines/computers.rsi/shipyard_medical.png new file mode 100644 index 00000000000..7753510f1e3 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/computers.rsi/shipyard_medical.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/icon.png b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/icon.png new file mode 100644 index 00000000000..4a2e7df7335 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/meta.json new file mode 100644 index 00000000000..da3e71ecf47 --- /dev/null +++ b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise Station", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "unlit" + }, + { + "name": "panel" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/panel.png b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/panel.png new file mode 100644 index 00000000000..65dce282de0 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/panel.png differ diff --git a/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/unlit.png b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/unlit.png new file mode 100644 index 00000000000..45074c1ac4a Binary files /dev/null and b/Resources/Textures/_NF/Structures/Machines/prizecounter.rsi/unlit.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json index 53980c8fa3a..29037a14845 100644 --- a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from tgstation, mercenary locker is a resprited armory locker by erhardsteinhauer (discord), janitor is by SungYandy", + "copyright": "Taken from tgstation, mercenary and pilot lockers are resprited armory locker by erhardsteinhauer (discord), janitor is by SungYandy", "license": "CC-BY-SA-3.0", "states": [ { @@ -34,6 +34,15 @@ { "name": "mercenary_open" }, + { + "name": "pilot" + }, + { + "name": "pilot_door" + }, + { + "name": "pilot_open" + }, { "name": "unlocked" }, diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot.png new file mode 100644 index 00000000000..9c64d730958 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_door.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_door.png new file mode 100644 index 00000000000..3430dbe59a6 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_open.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_open.png new file mode 100644 index 00000000000..35d9e7fd8b2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/pilot_open.png differ