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 9f5bd596d76..d6490b8697b 100644 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs @@ -1,5 +1,9 @@ +using Content.Server.Actions; +using Content.Server.Bed.Sleep; 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; @@ -18,6 +22,8 @@ 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 ActionsSystem _actions = default!; // Frontier + [Dependency] private readonly PopupSystem _popup = default!; // Frontier [ValidatePrototypeId] private const string PreventTag = "PreventLabel"; @@ -32,6 +38,7 @@ public override void Initialize() SubscribeLocalEvent(OnDropAttempt); SubscribeLocalEvent(OnDoAfter); SubscribeLocalEvent(OnInsertAttempt); + SubscribeLocalEvent(OnTrySleeping); // Frontier } private void AddInsertVerb(EntityUid uid, PseudoItemComponent component, GetVerbsEvent args) @@ -96,6 +103,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, @@ -142,6 +153,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; } @@ -171,4 +186,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 2e8cdb63857..c70d1e74232 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -2815,3 +2815,72 @@ Entries: 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' +- author: dvir01 + changes: + - type: Add + message: >- + Added the McDelivery to the McCargo on ship shipyard, now you can do + your fast food delivery with your very own fast food delivery ship. + id: 4754 + time: '2024-01-21T18:52:29.0000000+00:00' +- author: MagnusCrowe + changes: + - type: Add + message: Added plasteel arming sword! + id: 4755 + time: '2024-01-22T12:14:42.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/_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/_NF/Shuttles/mccargo.yml b/Resources/Maps/_NF/Shuttles/mccargo.yml index 66f0f231d06..546ecb74b40 100644 --- a/Resources/Maps/_NF/Shuttles/mccargo.yml +++ b/Resources/Maps/_NF/Shuttles/mccargo.yml @@ -28,7 +28,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAA version: 6 -1,-1: ind: -1,-1 @@ -40,7 +40,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 @@ -70,558 +70,566 @@ entities: color: '#FFFFFFFF' id: Box decals: - 337: -9,14 - 338: -9,13 - 339: -9,12 - 340: -8,12 - 341: -8,13 - 342: -8,14 - 343: -7,14 - 344: -7,13 - 345: -7,12 + 309: -9,14 + 310: -9,13 + 311: -9,12 + 312: -8,12 + 313: -8,13 + 314: -8,14 + 315: -7,14 + 316: -7,13 + 317: -7,12 - node: color: '#A4610696' id: CheckerNWSE decals: - 289: 6,9 - 290: 7,9 - 291: 9,9 - 292: 6,8 - 293: 7,8 - 294: 6,7 - 295: 7,7 - 296: 9,7 - 297: 6,6 - 298: 7,6 - 299: 6,5 - 300: 7,5 - 301: 9,5 - 302: 8,5 - 303: 7,4 - 304: 8,7 - 305: 8,9 + 266: 6,9 + 267: 7,9 + 268: 9,9 + 269: 6,8 + 270: 7,8 + 271: 6,7 + 272: 7,7 + 273: 9,7 + 274: 6,6 + 275: 7,6 + 276: 6,5 + 277: 7,5 + 278: 9,5 + 279: 8,5 + 280: 7,4 + 281: 8,7 + 282: 8,9 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 205: -4,3 - 206: -6,3 - 208: -8,3 - 212: -8,8 - 216: -6,8 - 219: -5,10 - 222: -5,12 - 225: -2,12 - 226: 0,12 - 236: -5,15 - 286: 7,14 - 287: 6,11 - 288: -1,10 - 330: -5,3 - 331: -7,3 + 190: -4,3 + 191: -6,3 + 193: -8,3 + 196: -8,8 + 200: -6,8 + 203: -5,10 + 206: -5,12 + 209: -2,12 + 210: 0,12 + 263: 7,14 + 264: 6,11 + 265: -1,10 + 305: -5,3 + 306: -7,3 + 351: -1,11 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 4: 7,13 - 5: 7,12 - 215: -7,8 - 221: -3,10 - 224: -3,12 - 229: 0,14 - 232: -3,14 - 239: 0,15 - 240: 0,13 - 282: 6,12 - 327: -5,4 - 329: -8,5 + 3: 7,13 + 4: 7,12 + 199: -7,8 + 205: -3,10 + 208: -3,12 + 212: 0,14 + 214: -3,14 + 218: 0,15 + 219: 0,13 + 259: 6,12 + 302: -5,4 + 304: -8,5 + 348: -4,6 + 349: -5,6 + 350: -4,5 + 353: -1,14 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: 0: -8,3 - 1: -1,12 - 207: -4,4 - 209: -4,5 - 210: -8,6 - 213: -8,9 - 228: 0,13 - 231: -2,14 - 233: -4,14 - 237: -1,15 - 332: -6,3 - 333: -5,4 + 192: -4,4 + 194: -8,6 + 197: -8,9 + 211: 0,13 + 213: -2,14 + 215: -4,14 + 216: -1,15 + 307: -6,3 + 308: -5,4 + 347: -5,5 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 2: 7,12 - 3: 9,11 - 211: -8,7 - 214: -7,9 - 217: -6,9 - 218: -5,9 - 220: -4,10 - 223: -4,12 - 227: -1,13 - 230: -1,14 - 234: -5,14 - 235: -4,15 - 238: -2,15 - 283: 6,14 - 284: 6,13 - 285: 7,11 - 328: -8,4 - 334: -5,5 + 1: 7,12 + 2: 9,11 + 195: -8,7 + 198: -7,9 + 201: -6,9 + 202: -5,9 + 204: -4,10 + 207: -4,12 + 217: -2,15 + 260: 6,14 + 261: 6,13 + 262: 7,11 + 303: -8,4 + 352: -1,12 - node: color: '#A46106FF' id: MiniTileWhiteCornerNe decals: - 252: 4,8 - 264: 4,12 + 231: 4,8 + 243: 4,12 - node: color: '#A46106FF' id: MiniTileWhiteCornerNw decals: - 253: -2,8 - 265: 2,12 + 232: -2,8 + 244: 2,12 - node: color: '#A46106FF' id: MiniTileWhiteCornerSe decals: - 255: 4,3 - 266: 4,10 + 234: 4,3 + 245: 4,10 - node: color: '#A46106FF' id: MiniTileWhiteCornerSw decals: - 254: -2,3 - 267: 2,10 + 233: -2,3 + 246: 2,10 - node: color: '#A46106FF' id: MiniTileWhiteInnerNe decals: - 193: 4,-4 - 194: 0,-3 - 195: -4,-3 - 196: -8,-4 + 178: 4,-4 + 179: 0,-3 + 180: -4,-3 + 181: -8,-4 - node: color: '#A46106FF' id: MiniTileWhiteInnerNw decals: - 197: -4,-4 - 198: 0,-3 - 199: 4,-3 - 200: 8,-4 + 182: -4,-4 + 183: 0,-3 + 184: 4,-3 + 185: 8,-4 - node: color: '#A46106FF' id: MiniTileWhiteInnerSe decals: - 201: 4,-1 - 202: 0,0 - 203: -4,0 - 204: -8,-1 + 186: 4,-1 + 187: 0,0 + 188: -4,0 + 189: -8,-1 - node: color: '#A46106FF' id: MiniTileWhiteInnerSw decals: - 189: -4,-1 - 190: 0,0 - 191: 4,0 - 192: 8,-1 + 174: -4,-1 + 175: 0,0 + 176: 4,0 + 177: 8,-1 - node: color: '#A46106FF' id: MiniTileWhiteLineE decals: - 161: 4,-3 - 162: 4,-2 - 163: 0,-1 - 164: 0,-2 - 165: -4,-1 - 166: -4,-2 - 167: -8,-2 - 168: -8,-3 - 256: 4,4 - 257: 4,5 - 258: 4,6 - 259: 4,7 - 271: 4,11 + 146: 4,-3 + 147: 4,-2 + 148: 0,-1 + 149: 0,-2 + 150: -4,-1 + 151: -4,-2 + 152: -8,-2 + 153: -8,-3 + 235: 4,4 + 236: 4,5 + 237: 4,6 + 238: 4,7 + 250: 4,11 - node: color: '#A46106FF' id: MiniTileWhiteLineN decals: - 149: -5,-4 - 150: -6,-4 - 151: -7,-4 - 152: -3,-3 - 153: -2,-3 - 154: -1,-3 - 155: 1,-3 - 156: 2,-3 - 157: 3,-3 - 158: 5,-4 - 159: 6,-4 - 160: 7,-4 - 242: -1,8 - 243: 0,8 - 244: 1,8 - 245: 2,8 - 246: 3,8 - 270: 3,12 + 134: -5,-4 + 135: -6,-4 + 136: -7,-4 + 137: -3,-3 + 138: -2,-3 + 139: -1,-3 + 140: 1,-3 + 141: 2,-3 + 142: 3,-3 + 143: 5,-4 + 144: 6,-4 + 145: 7,-4 + 221: -1,8 + 222: 0,8 + 223: 1,8 + 224: 2,8 + 225: 3,8 + 249: 3,12 - node: color: '#A46106FF' id: MiniTileWhiteLineS decals: - 169: -7,-1 - 170: -6,-1 - 171: -5,-1 - 172: -3,0 - 173: -2,0 - 174: -1,0 - 175: 1,0 - 176: 2,0 - 177: 3,0 - 178: 5,-1 - 179: 6,-1 - 180: 7,-1 - 247: -1,3 - 248: 0,3 - 249: 1,3 - 250: 2,3 - 251: 3,3 - 269: 3,10 + 154: -7,-1 + 155: -6,-1 + 156: -5,-1 + 157: -3,0 + 158: -2,0 + 159: -1,0 + 160: 1,0 + 161: 2,0 + 162: 3,0 + 163: 5,-1 + 164: 6,-1 + 165: 7,-1 + 226: -1,3 + 227: 0,3 + 228: 1,3 + 229: 2,3 + 230: 3,3 + 248: 3,10 - node: color: '#A46106FF' id: MiniTileWhiteLineW decals: - 181: 8,-2 - 182: 8,-3 - 183: 4,-1 - 184: 4,-2 - 185: 0,-1 - 186: 0,-2 - 187: -4,-2 - 188: -4,-3 - 260: -2,4 - 261: -2,5 - 262: -2,6 - 263: -2,7 - 268: 2,11 + 166: 8,-2 + 167: 8,-3 + 168: 4,-1 + 169: 4,-2 + 170: 0,-1 + 171: 0,-2 + 172: -4,-2 + 173: -4,-3 + 239: -2,4 + 240: -2,5 + 241: -2,6 + 242: -2,7 + 247: 2,11 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 332: -3,15 - node: color: '#D381C996' id: WarnCornerGreyscaleNE decals: - 277: 7,14 + 254: 7,14 - node: color: '#D381C996' id: WarnCornerGreyscaleNW decals: - 276: 6,14 + 253: 6,14 - node: color: '#D381C996' id: WarnCornerGreyscaleSE decals: - 274: 7,11 + 251: 7,11 - node: color: '#D381C996' id: WarnCornerGreyscaleSW decals: - 275: 6,11 + 252: 6,11 - node: color: '#A4610696' id: WarnCornerNE decals: - 116: -4,5 - 144: 0,15 + 130: 0,15 + 343: -4,6 - node: color: '#A4610696' id: WarnCornerNW decals: - 109: -8,9 - 143: -5,15 + 104: -8,9 + 328: -5,14 + 331: -4,15 - node: color: '#A4610696' id: WarnCornerSE decals: - 98: -4,3 - 99: -1,10 - 100: 0,12 + 94: -4,3 + 95: -1,10 + 96: 0,12 - node: color: '#9FED5896' id: WarnCornerSW decals: - 142: -8,3 + 129: -8,3 - node: color: '#9FED5896' id: WarnCornerSmallNE decals: - 324: -8,4 + 300: -8,4 - node: color: '#A4610696' id: WarnCornerSmallNE decals: - 126: -5,10 - 127: -5,12 - 326: -5,5 + 118: -5,10 + 119: -5,12 + 344: -5,6 - node: color: '#9FED5896' id: WarnCornerSmallNW decals: - 325: -5,4 + 301: -5,4 - node: color: '#A4610696' id: WarnCornerSmallNW decals: - 128: -1,10 - 129: -1,12 - 138: -5,9 + 120: -1,10 + 125: -5,9 + 330: -4,14 + 335: 0,12 - node: color: '#A4610696' id: WarnCornerSmallSE decals: - 130: -8,8 - 131: -5,12 - 132: -5,14 - 136: -1,12 - 137: -5,10 + 121: -8,8 + 122: -5,12 + 124: -5,10 + 329: -5,14 + 334: -1,12 - node: color: '#A4610696' id: WarnCornerSmallSW decals: - 133: -1,14 - 134: -1,12 - 135: -5,8 + 123: -5,8 + 333: -1,12 + 336: 0,14 - node: color: '#B02E26FF' id: WarnFullGreyscale decals: - 241: 4,12 + 220: 4,12 - node: color: '#9FED5896' id: WarnLineE decals: - 321: -8,5 + 297: -8,5 - node: color: '#A4610696' id: WarnLineE decals: - 72: -6,-8 - 73: 8,-8 - 89: -5,9 - 90: -5,8 - 91: -5,7 - 92: -5,6 - 93: -4,4 - 94: -5,11 - 95: -5,13 - 96: 0,13 - 97: 0,14 - 110: -8,6 - 111: -8,7 - 123: -1,11 + 69: -6,-8 + 70: 8,-8 + 86: -5,9 + 87: -5,8 + 88: -5,7 + 89: -4,4 + 90: -5,11 + 91: -5,13 + 92: 0,13 + 93: 0,14 + 105: -8,6 + 106: -8,7 + 116: -1,11 + 342: -4,5 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 23: 11,-1 - 24: 11,-2 - 25: 11,-3 - 26: -11,-1 - 27: -11,-2 - 34: -13,-1 - 35: -13,-2 - 36: -13,-3 - 37: 13,-1 - 38: 13,-2 - 39: 13,-3 - 65: -3,3 - 66: 5,3 - 67: 8,3 - 68: 5,14 - 69: 1,14 - 309: 8,5 - 310: 8,7 - 311: 8,9 - 315: -11,-3 + 22: 11,-1 + 23: 11,-2 + 24: 11,-3 + 25: -11,-1 + 26: -11,-2 + 33: -13,-1 + 34: -13,-2 + 35: -13,-3 + 36: 13,-1 + 37: 13,-2 + 38: 13,-3 + 63: 5,3 + 64: 8,3 + 65: 5,14 + 66: 1,14 + 286: 8,5 + 287: 8,7 + 288: 8,9 + 292: -11,-3 + 341: -3,4 - node: color: '#D381C996' id: WarnLineGreyscaleE decals: - 278: 7,13 - 279: 7,12 + 255: 7,13 + 256: 7,12 - node: color: '#D381C996' id: WarnLineGreyscaleW decals: - 280: 6,12 - 281: 6,13 + 257: 6,12 + 258: 6,13 - node: color: '#9FED5896' id: WarnLineN decals: - 141: -6,3 - 317: -7,3 - 319: -5,3 + 128: -6,3 + 294: -7,3 + 296: -5,3 - node: color: '#A4610696' id: WarnLineN decals: - 78: 12,-3 - 79: -12,-3 - 80: -4,14 - 81: -3,14 - 82: -2,14 - 83: -4,12 - 84: -3,12 - 85: -2,12 - 86: -4,10 - 87: -3,10 - 88: -2,10 - 112: -7,8 - 113: -6,8 + 75: 12,-3 + 76: -12,-3 + 77: -4,14 + 78: -3,14 + 79: -2,14 + 80: -4,12 + 81: -3,12 + 82: -2,12 + 83: -4,10 + 84: -3,10 + 85: -2,10 + 107: -7,8 + 108: -6,8 + 338: -1,14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 17: -8,-7 - 18: -7,-7 - 19: -6,-7 - 20: 6,-7 - 21: 7,-7 - 22: 8,-7 - 40: -4,2 - 41: 6,10 - 47: 6,15 - 52: 3,9 - 59: -8,-9 - 60: -7,-9 - 61: -6,-9 - 62: 6,-9 - 63: 7,-9 - 64: 8,-9 - 70: -1,9 - 313: 7,4 + 16: -8,-7 + 17: -7,-7 + 18: -6,-7 + 19: 6,-7 + 20: 7,-7 + 21: 8,-7 + 39: -4,2 + 40: 6,10 + 45: 6,15 + 50: 3,9 + 57: -8,-9 + 58: -7,-9 + 59: -6,-9 + 60: 6,-9 + 61: 7,-9 + 62: 8,-9 + 67: -1,9 + 290: 7,4 + 327: -3,16 - node: color: '#9FED5896' id: WarnLineS decals: - 320: -5,5 - 322: -8,5 - 323: -8,4 + 298: -8,5 + 299: -8,4 + 346: -5,5 - node: color: '#A4610696' id: WarnLineS decals: - 76: -8,-8 - 77: 6,-8 - 101: -8,6 - 102: -8,7 - 103: -8,8 - 104: -5,10 - 105: -5,11 - 106: -5,12 - 107: -5,13 - 108: -5,14 - 114: -5,7 - 115: -5,6 - 124: -1,11 - 125: -1,13 + 73: -8,-8 + 74: 6,-8 + 97: -8,6 + 98: -8,7 + 99: -8,8 + 100: -5,10 + 101: -5,11 + 102: -5,12 + 103: -5,13 + 109: -5,7 + 117: -1,11 + 337: 0,13 + 345: -5,6 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 6: -11,-1 - 7: -11,-2 - 8: 11,-1 - 9: 11,-2 - 10: 11,-3 - 28: 13,-3 - 29: 13,-2 - 30: 13,-1 - 31: -13,-3 - 32: -13,-2 - 33: -13,-1 - 42: -3,3 - 43: 5,3 - 44: 8,3 - 45: 1,14 - 46: 5,14 - 306: 8,9 - 307: 8,7 - 308: 8,5 - 314: -11,-3 + 5: -11,-1 + 6: -11,-2 + 7: 11,-1 + 8: 11,-2 + 9: 11,-3 + 27: 13,-3 + 28: 13,-2 + 29: 13,-1 + 30: -13,-3 + 31: -13,-2 + 32: -13,-1 + 41: 5,3 + 42: 8,3 + 43: 1,14 + 44: 5,14 + 283: 8,9 + 284: 8,7 + 285: 8,5 + 291: -11,-3 + 340: -3,4 - node: color: '#9FED5896' id: WarnLineW decals: - 316: -6,4 - 318: -7,4 + 293: -6,4 + 295: -7,4 - node: color: '#A4610696' id: WarnLineW decals: - 74: -12,-1 - 75: 12,-1 - 117: -4,12 - 118: -3,12 - 119: -2,12 - 120: -2,10 - 121: -3,10 - 122: -4,10 - 139: -7,9 - 140: -6,9 - 145: -4,15 - 146: -3,15 - 147: -2,15 - 148: -1,15 + 71: -12,-1 + 72: 12,-1 + 110: -4,12 + 111: -3,12 + 112: -2,12 + 113: -2,10 + 114: -3,10 + 115: -4,10 + 126: -7,9 + 127: -6,9 + 131: -3,15 + 132: -2,15 + 133: -1,15 + 339: -1,12 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 11: 6,-7 - 12: 7,-7 - 13: 8,-7 - 14: -8,-7 - 15: -7,-7 - 16: -6,-7 - 48: 6,15 - 49: -4,2 - 50: 6,10 - 51: 3,9 - 53: 8,-9 - 54: 7,-9 - 55: 6,-9 - 56: -8,-9 - 57: -7,-9 - 58: -6,-9 - 71: -1,9 - 312: 7,4 + 10: 6,-7 + 11: 7,-7 + 12: 8,-7 + 13: -8,-7 + 14: -7,-7 + 15: -6,-7 + 46: 6,15 + 47: -4,2 + 48: 6,10 + 49: 3,9 + 51: 8,-9 + 52: 7,-9 + 53: 6,-9 + 54: -8,-9 + 55: -7,-9 + 56: -6,-9 + 68: -1,9 + 289: 7,4 + 326: -3,16 - node: angle: -1.5707963267948966 rad color: '#A4610696' id: food decals: - 352: -12,-1 - 353: -12,-3 + 324: -12,-1 + 325: -12,-3 - node: color: '#A4610696' id: food decals: - 346: 6,-8 - 347: 8,-8 - 350: -8,-8 - 351: -6,-8 + 318: 6,-8 + 319: 8,-8 + 322: -8,-8 + 323: -6,-8 - node: angle: 1.5707963267948966 rad color: '#A4610696' id: food decals: - 348: 12,-1 - 349: 12,-3 + 320: 12,-1 + 321: 12,-3 type: DecalGrid - version: 2 data: @@ -633,26 +641,32 @@ entities: 0,1: 0: 65535 0,2: - 0: 65535 + 0: 13311 + 1: 52224 0,3: - 0: 65535 + 0: 65523 + 1: 12 1,0: 0: 65535 1,1: 0: 65535 1,2: - 0: 65535 + 0: 61183 + 1: 4352 1,3: - 0: 65535 + 1: 1 + 0: 65534 2,0: - 0: 30719 + 0: 30591 + 2: 128 2,1: 0: 30583 2,2: - 0: 30583 + 0: 14199 + 2: 16384 2,3: - 1: 17 - 0: 30566 + 0: 13107 + 2: 17476 -2,0: 0: 65535 -2,1: @@ -678,38 +692,45 @@ entities: 2,-1: 0: 65535 -3,0: - 0: 52463 + 0: 52431 + 2: 32 -3,1: 0: 52428 -3,2: - 0: 50380 - 1: 2048 - -3,3: 0: 52428 + -3,3: + 0: 36044 + 2: 16384 -3,-2: - 0: 60616 + 2: 8256 + 0: 52360 -3,-1: 0: 65535 -2,-2: 0: 65535 -1,-2: - 0: 65296 + 2: 16 + 0: 65280 0,-2: 0: 65280 1,-2: - 0: 65534 + 2: 16 + 0: 65518 2,-2: - 0: 63347 + 0: 30515 + 2: 32832 -2,4: - 0: 12 + 0: 4 + 2: 8 -1,4: 0: 15 0,4: - 0: 15 + 0: 1 + 2: 14 1,4: - 0: 15 + 2: 15 2,4: - 0: 7 + 2: 7 3,0: 0: 3 -4,0: @@ -743,10 +764,25 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -773,18 +809,13 @@ entities: type: Physics - proto: AirlockCargo entities: - - uid: 8 - components: - - pos: -2.5,3.5 - parent: 1 - type: Transform - uid: 27 components: - pos: 1.5,14.5 parent: 1 type: Transform - links: - - 691 + - 805 type: DeviceLinkSink - uid: 193 components: @@ -793,7 +824,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 173 type: DeviceLinkSink - uid: 300 components: @@ -802,13 +833,19 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 301 components: - pos: -0.5,9.5 parent: 1 type: Transform + - uid: 843 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform - proto: AirlockExternalGlass entities: - uid: 838 @@ -999,6 +1036,12 @@ entities: - pos: 7.5,-8.5 parent: 1 type: Transform + - uid: 819 + components: + - rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + type: Transform - uid: 923 components: - pos: 8.5,-8.5 @@ -1138,15 +1181,15 @@ entities: type: Transform - proto: APCBasic entities: - - uid: 392 + - uid: 123 components: - - rot: -1.5707963267948966 rad - pos: -2.5,6.5 + - pos: 0.5,9.5 parent: 1 type: Transform - - uid: 405 + - uid: 186 components: - - pos: 1.5,9.5 + - rot: 3.141592653589793 rad + pos: -2.5,9.5 parent: 1 type: Transform - uid: 406 @@ -1232,6 +1275,11 @@ entities: - pos: 3.5,9.5 parent: 1 type: Transform + - uid: 702 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform - uid: 905 components: - rot: 1.5707963267948966 rad @@ -1244,30 +1292,190 @@ entities: pos: 6.5,-8.5 parent: 1 type: Transform -- proto: BannerCargo +- proto: AtmosFixBlockerMarker entities: - - uid: 14 + - uid: 890 components: - - pos: 4.5,-4.5 + - pos: 1.5,16.5 parent: 1 type: Transform - - uid: 258 + - uid: 891 components: - - pos: -3.5,-4.5 + - pos: 2.5,16.5 + parent: 1 + type: Transform + - uid: 892 + components: + - pos: 3.5,16.5 + parent: 1 + type: Transform + - uid: 893 + components: + - pos: 4.5,16.5 + parent: 1 + type: Transform + - uid: 1040 + components: + - pos: 5.5,16.5 + parent: 1 + type: Transform + - uid: 1041 + components: + - pos: 6.5,16.5 + parent: 1 + type: Transform + - uid: 1042 + components: + - pos: 7.5,16.5 + parent: 1 + type: Transform + - uid: 1043 + components: + - pos: 8.5,16.5 + parent: 1 + type: Transform + - uid: 1044 + components: + - pos: 9.5,16.5 + parent: 1 + type: Transform + - uid: 1045 + components: + - pos: 10.5,16.5 + parent: 1 + type: Transform + - uid: 1046 + components: + - pos: 10.5,15.5 + parent: 1 + type: Transform + - uid: 1047 + components: + - pos: 10.5,14.5 + parent: 1 + type: Transform + - uid: 1048 + components: + - pos: 10.5,13.5 + parent: 1 + type: Transform + - uid: 1049 + components: + - pos: 10.5,12.5 + parent: 1 + type: Transform + - uid: 1050 + components: + - pos: 10.5,11.5 + parent: 1 + type: Transform + - uid: 1051 + components: + - pos: -3.5,-6.5 + parent: 1 + type: Transform + - uid: 1052 + components: + - pos: -10.5,-4.5 + parent: 1 + type: Transform + - uid: 1053 + components: + - pos: -9.5,-6.5 + parent: 1 + type: Transform + - uid: 1054 + components: + - pos: -10.5,1.5 parent: 1 type: Transform -- proto: Bed + - uid: 1055 + components: + - pos: 4.5,-6.5 + parent: 1 + type: Transform + - uid: 1056 + components: + - pos: 10.5,-6.5 + parent: 1 + type: Transform + - uid: 1057 + components: + - pos: 11.5,-4.5 + parent: 1 + type: Transform + - uid: 1058 + components: + - pos: 11.5,1.5 + parent: 1 + type: Transform + - uid: 1059 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform + - uid: 1060 + components: + - pos: -9.5,15.5 + parent: 1 + type: Transform +- proto: AtmosFixFreezerMarker entities: - - uid: 555 + - uid: 404 components: - - pos: -8.5,8.5 + - pos: 3.5,12.5 + parent: 1 + type: Transform + - uid: 866 + components: + - pos: 2.5,12.5 + parent: 1 + type: Transform + - uid: 874 + components: + - pos: 4.5,12.5 + parent: 1 + type: Transform + - uid: 1014 + components: + - pos: 4.5,11.5 + parent: 1 + type: Transform + - uid: 1016 + components: + - pos: 3.5,11.5 + parent: 1 + type: Transform + - uid: 1023 + components: + - pos: 2.5,11.5 parent: 1 type: Transform -- proto: BedsheetQM + - uid: 1028 + components: + - pos: 2.5,10.5 + parent: 1 + type: Transform + - uid: 1063 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform + - uid: 1064 + components: + - pos: 4.5,10.5 + parent: 1 + type: Transform +- proto: BannerCargo entities: - - uid: 729 + - uid: 14 components: - - pos: -8.5,8.5 + - pos: 4.5,-4.5 + parent: 1 + type: Transform + - uid: 258 + components: + - pos: -3.5,-4.5 parent: 1 type: Transform - proto: BenchSofaLeft @@ -1416,33 +1624,45 @@ entities: components: - flags: InContainer type: MetaData - - parent: 123 + - parent: 405 type: Transform - canCollide: False type: Physics - type: InsideEntityStorage +- proto: BoxPaperOffice + entities: + - uid: 729 + components: + - pos: -8.511633,9.621821 + parent: 1 + type: Transform - proto: BrbSign entities: - uid: 755 components: - - pos: -6.0586023,7.0368977 + - pos: -6.444375,7.512438 parent: 1 type: Transform - uid: 756 components: - - pos: -6.2252693,6.8702307 + - pos: -6.6110415,7.6791043 parent: 1 type: Transform - proto: Bucket entities: - - uid: 768 + - uid: 17 components: - - pos: -3.7585487,6.0110874 + - pos: -3.4331908,7.0847335 parent: 1 type: Transform - - uid: 769 + - uid: 1070 + components: + - pos: -3.6727743,7.15765 + parent: 1 + type: Transform + - uid: 1073 components: - - pos: -3.2481322,6.0215044 + - pos: -3.2248573,7.1680665 parent: 1 type: Transform - proto: ButchCleaver @@ -1479,6 +1699,21 @@ entities: - pos: -5.5,-3.5 parent: 1 type: Transform + - uid: 80 + components: + - pos: -3.5,10.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: -2.5,10.5 + parent: 1 + type: Transform - uid: 120 components: - pos: -0.5,12.5 @@ -1579,16 +1814,6 @@ entities: - pos: 4.5,14.5 parent: 1 type: Transform - - uid: 449 - components: - - pos: -2.5,6.5 - parent: 1 - type: Transform - - uid: 450 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - uid: 451 components: - pos: -4.5,6.5 @@ -1631,7 +1856,7 @@ entities: type: Transform - uid: 467 components: - - pos: 1.5,9.5 + - pos: 0.5,9.5 parent: 1 type: Transform - uid: 468 @@ -1659,21 +1884,6 @@ entities: - pos: 3.5,8.5 parent: 1 type: Transform - - uid: 473 - components: - - pos: 1.5,10.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: 1.5,11.5 - parent: 1 - type: Transform - - uid: 475 - components: - - pos: 2.5,11.5 - parent: 1 - type: Transform - uid: 476 components: - pos: 3.5,11.5 @@ -2094,6 +2304,16 @@ entities: - pos: 7.5,15.5 parent: 1 type: Transform + - uid: 1074 + components: + - pos: 3.5,9.5 + parent: 1 + type: Transform + - uid: 1075 + components: + - pos: 3.5,10.5 + parent: 1 + type: Transform - proto: CableHV entities: - uid: 196 @@ -2128,69 +2348,74 @@ entities: type: Transform - proto: CableMV entities: + - uid: 19 + components: + - pos: -2.5,9.5 + parent: 1 + type: Transform - uid: 25 components: - pos: 4.5,7.5 parent: 1 type: Transform - - uid: 159 + - uid: 34 components: - - pos: -4.5,9.5 + - pos: -0.5,6.5 parent: 1 type: Transform - - uid: 169 + - uid: 38 components: - - pos: -4.5,10.5 + - pos: -0.5,9.5 parent: 1 type: Transform - - uid: 264 + - uid: 67 components: - - pos: -8.5,11.5 + - pos: -0.5,8.5 parent: 1 type: Transform - - uid: 267 + - uid: 79 components: - - pos: -8.5,10.5 + - pos: -0.5,7.5 parent: 1 type: Transform - - uid: 393 + - uid: 85 components: - - pos: -4.5,6.5 + - pos: -0.5,10.5 parent: 1 type: Transform - - uid: 394 + - uid: 99 components: - - pos: -7.5,10.5 + - pos: -3.5,10.5 parent: 1 type: Transform - - uid: 395 + - uid: 105 components: - - pos: -4.5,7.5 + - pos: 0.5,9.5 parent: 1 type: Transform - - uid: 396 + - uid: 169 components: - - pos: -3.5,6.5 + - pos: -4.5,10.5 parent: 1 type: Transform - - uid: 397 + - uid: 183 components: - - pos: -2.5,6.5 + - pos: -2.5,10.5 parent: 1 type: Transform - - uid: 398 + - uid: 264 components: - - pos: 1.5,9.5 + - pos: -8.5,11.5 parent: 1 type: Transform - - uid: 399 + - uid: 267 components: - - pos: 1.5,8.5 + - pos: -8.5,10.5 parent: 1 type: Transform - - uid: 400 + - uid: 394 components: - - pos: 1.5,7.5 + - pos: -7.5,10.5 parent: 1 type: Transform - uid: 401 @@ -2203,16 +2428,6 @@ entities: - pos: 0.5,6.5 parent: 1 type: Transform - - uid: 403 - components: - - pos: -0.5,6.5 - parent: 1 - type: Transform - - uid: 404 - components: - - pos: -1.5,6.5 - parent: 1 - type: Transform - uid: 410 components: - pos: 5.5,9.5 @@ -2278,9 +2493,9 @@ entities: - pos: 6.5,2.5 parent: 1 type: Transform - - uid: 1028 + - uid: 807 components: - - pos: -4.5,8.5 + - pos: -1.5,10.5 parent: 1 type: Transform - uid: 1029 @@ -2329,6 +2544,12 @@ entities: pos: 7.5,16.5 parent: 1 type: Transform + - uid: 124 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform - uid: 197 components: - rot: 1.5707963267948966 rad @@ -2341,6 +2562,12 @@ entities: pos: -5.5,11.5 parent: 1 type: Transform + - uid: 269 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform - uid: 312 components: - rot: 3.141592653589793 rad @@ -2502,11 +2729,6 @@ entities: - pos: -5.5,5.5 parent: 1 type: Transform - - uid: 1016 - components: - - pos: -3.5,6.5 - parent: 1 - type: Transform - uid: 1017 components: - pos: -3.5,7.5 @@ -2537,11 +2759,6 @@ entities: - pos: -1.5,11.5 parent: 1 type: Transform - - uid: 1023 - components: - - pos: 0.5,11.5 - parent: 1 - type: Transform - uid: 1024 components: - pos: 0.5,10.5 @@ -2598,7 +2815,7 @@ entities: entities: - uid: 190 components: - - pos: -5.9440193,7.422314 + - pos: -5.978369,7.652311 parent: 1 type: Transform - proto: CigPackRed @@ -2607,7 +2824,7 @@ entities: components: - flags: InContainer type: MetaData - - parent: 703 + - parent: 1081 type: Transform - canCollide: False type: Physics @@ -2636,45 +2853,64 @@ entities: - 0 - 0 type: EntityStorage -- proto: ClosetWallFireFilledRandom - entities: - - uid: 249 - components: - - rot: 3.141592653589793 rad - pos: -2.5,9.5 - parent: 1 - type: Transform - proto: ClothingBeltPlantFilled entities: - uid: 765 components: - - pos: -5.817134,6.56853 + - pos: -5.5230618,6.6331215 parent: 1 type: Transform - proto: ClothingBeltUtilityEngineering entities: - uid: 192 components: - - pos: -5.533075,6.638674 + - pos: -5.8251452,6.872705 parent: 1 type: Transform -- proto: ComputerShuttle +- proto: ClothingHeadHatMcCrown entities: - - uid: 873 + - uid: 128 + components: + - pos: 4.4425836,2.6006465 + parent: 1 + type: Transform + - uid: 705 + components: + - pos: 4.61538,2.741904 + parent: 1 + type: Transform + - uid: 708 + components: + - pos: 4.220203,2.741904 + parent: 1 + type: Transform + - uid: 1079 + components: + - pos: 4.6165376,2.4320714 + parent: 1 + type: Transform + - uid: 1080 + components: + - pos: 4.213417,2.4443965 + parent: 1 + type: Transform +- proto: ComputerTabletopShuttle + entities: + - uid: 1061 components: - pos: -6.5,10.5 parent: 1 type: Transform -- proto: ComputerStationRecords +- proto: ComputerTabletopStationRecords entities: - - uid: 872 + - uid: 1062 components: - pos: -5.5,10.5 parent: 1 type: Transform -- proto: ComputerSurveillanceCameraMonitor +- proto: ComputerTabletopSurveillanceCameraMonitor entities: - - uid: 874 + - uid: 1082 components: - pos: -7.5,10.5 parent: 1 @@ -2706,16 +2942,16 @@ entities: - type: ItemSlots - proto: CrateFoodBarSupply entities: - - uid: 195 + - uid: 106 components: - - pos: 0.5805821,10.414998 + - pos: 0.5,11.5 parent: 1 type: Transform - proto: CrateFoodCooking entities: - - uid: 748 + - uid: 349 components: - - pos: 0.5849985,11.125421 + - pos: 2.5,10.5 parent: 1 type: Transform - proto: CrateFreezer @@ -2725,13 +2961,6 @@ entities: - pos: 4.5,11.5 parent: 1 type: Transform -- proto: CrateFunMysteryFigurines - entities: - - uid: 1014 - components: - - pos: 0.58529973,11.835589 - parent: 1 - type: Transform - proto: CrateFunParty entities: - uid: 230 @@ -2739,13 +2968,6 @@ entities: - pos: 4.5,10.5 parent: 1 type: Transform -- proto: CrateHydroponicsTools - entities: - - uid: 105 - components: - - pos: -5.5,5.5 - parent: 1 - type: Transform - proto: CrateTrashCartJani entities: - uid: 671 @@ -2783,12 +3005,12 @@ entities: entities: - uid: 753 components: - - pos: -6.4043546,7.0158014 + - pos: -6.4547915,7.106188 parent: 1 type: Transform - uid: 754 components: - - pos: -6.6647716,7.067885 + - pos: -6.7047915,7.2103543 parent: 1 type: Transform - proto: DisposalBend @@ -3061,9 +3283,9 @@ entities: type: Transform - proto: DogBed entities: - - uid: 804 + - uid: 844 components: - - pos: -8.5,9.5 + - pos: -3.5,5.5 parent: 1 type: Transform - proto: DrinkGlass @@ -3108,44 +3330,130 @@ entities: - pos: 1.7190523,4.7299657 parent: 1 type: Transform - - uid: 106 + - uid: 131 components: - - pos: -7.36764,1.8236554 + - pos: 1.291969,4.584132 parent: 1 type: Transform - - uid: 131 + - uid: 231 components: - - pos: 1.291969,4.584132 + - pos: -7.91405,1.8492602 parent: 1 type: Transform - - uid: 269 + - uid: 304 components: - - pos: -7.6488905,1.8132387 + - pos: -7.6328,1.8492602 parent: 1 type: Transform - - uid: 759 + - uid: 403 components: - - pos: -7.9197235,1.8028221 + - pos: -7.361967,1.8492602 parent: 1 type: Transform -- proto: DrinkSodaWaterCan - entities: - - uid: 705 + - uid: 1083 components: - flags: InContainer + desc: A sweet, carbonated soft drink. Caffeine free. + name: cola glass type: MetaData - - parent: 703 + - parent: 1081 type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 30 + reagents: + - data: null + ReagentId: Cola + Quantity: 30 + type: SolutionContainerManager + - transformed: True + currentReagent: + metamorphicSprite: null + footstepSound: !type:SoundCollectionSpecifier + params: + variation: null + playoffset: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxdistance: 25 + busname: Master + pitchscale: 1 + volume: 0 + attenuation: Default + collection: FootstepWater + flavor: soda + flavorMinimum: 0.1 + slippery: True + viscosity: 0 + metabolisms: + Drink: + effects: + - !type:SatiateThirst + shouldLog: False + logImpact: Low + factor: 2 + probability: 1 + conditions: null + metabolismRate: 0.5 + reactiveEffects: + Extinguish: + effects: + - !type:ExtinguishReaction + shouldLog: False + logImpact: Low + probability: 1 + conditions: null + methods: + - Touch + tileReactions: + - !type:ExtinguishTileReaction + coolingTemperature: 2 + - !type:SpillIfPuddlePresentTileReaction {} + plantMetabolism: + - !type:PlantAdjustNutrition + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.1 + probability: 1 + conditions: null + - !type:PlantAdjustWater + shouldLog: False + logImpact: Low + prob: 1 + amount: 0.1 + probability: 1 + conditions: null + - !type:PlantAdjustHealth + shouldLog: False + logImpact: Low + prob: 1 + amount: -0.1 + probability: 1 + conditions: null + pricePerUnit: 0 + id: Cola + meltingPoint: null + name: reagent-name-cola + group: Drinks + parent: + - BaseSoda + abstract: False + desc: reagent-desc-cola + physicalDesc: reagent-physical-desc-fizzy + color: '#422912FF' + specificHeat: 1 + boilingPoint: null + recognizable: True + type: TransformableContainer - canCollide: False type: Physics - proto: EmergencyLight entities: - - uid: 67 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - type: Transform - uid: 208 components: - rot: 1.5707963267948966 rad @@ -3173,6 +3481,12 @@ entities: - pos: 5.5,1.5 parent: 1 type: Transform + - uid: 396 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + type: Transform - uid: 425 components: - rot: -1.5707963267948966 rad @@ -3219,9 +3533,15 @@ entities: - pos: 8.5,2.5 parent: 1 type: Transform - - uid: 194 + - uid: 392 components: - - pos: 0.5,9.5 + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 + type: Transform + - uid: 473 + components: + - pos: 1.5,9.5 parent: 1 type: Transform - uid: 714 @@ -3238,9 +3558,9 @@ entities: type: Transform - proto: FaxMachineShip entities: - - uid: 232 + - uid: 873 components: - - pos: -6.5,7.5 + - pos: -8.5,10.5 parent: 1 type: Transform - proto: FireAlarm @@ -3254,7 +3574,6 @@ entities: - 39 - 41 - 70 - - 79 - 646 - 647 - 644 @@ -3314,6 +3633,12 @@ entities: type: DeviceList - proto: Firelock entities: + - uid: 8 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + type: Transform - uid: 39 components: - pos: 3.5,9.5 @@ -3330,12 +3655,6 @@ entities: pos: 5.5,3.5 parent: 1 type: Transform - - uid: 79 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - type: Transform - uid: 171 components: - rot: 1.5707963267948966 rad @@ -3476,7 +3795,7 @@ entities: components: - flags: InContainer type: MetaData - - parent: 703 + - parent: 1081 type: Transform - canCollide: False type: Physics @@ -3507,7 +3826,7 @@ entities: components: - flags: InContainer type: MetaData - - parent: 703 + - parent: 1081 type: Transform - canCollide: False type: Physics @@ -3565,6 +3884,16 @@ entities: - pos: -0.10305256,2.6391692 parent: 1 type: Transform +- proto: FoodMealFries + entities: + - uid: 902 + components: + - flags: InContainer + type: MetaData + - parent: 1081 + type: Transform + - canCollide: False + type: Physics - proto: FoodPlatePlastic entities: - uid: 89 @@ -3577,16 +3906,6 @@ entities: - pos: 9.511152,1.7718108 parent: 1 type: Transform - - uid: 124 - components: - - pos: 9.507014,1.948894 - parent: 1 - type: Transform - - uid: 125 - components: - - pos: -5.5395737,1.917644 - parent: 1 - type: Transform - uid: 763 components: - pos: -5.529157,1.605144 @@ -4339,21 +4658,11 @@ entities: - pos: 7.5,15.5 parent: 1 type: Transform - - uid: 642 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - uid: 643 components: - pos: -3.5,16.5 parent: 1 type: Transform - - uid: 696 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - uid: 697 components: - pos: -1.5,16.5 @@ -4423,11 +4732,14 @@ entities: type: Transform - proto: GunSafeShuttleCaptain entities: - - uid: 123 + - uid: 405 components: - - pos: -8.5,10.5 + - anchored: True + pos: -8.5,8.5 parent: 1 type: Transform + - bodyType: Static + type: Physics - air: volume: 200 immutable: False @@ -4469,76 +4781,67 @@ entities: entities: - uid: 147 components: - - pos: 0.61389744,5.578879 + - pos: 0.63235265,5.615782 parent: 1 type: Transform + - assignedLabel: McMeal + type: HandLabeler + - type: ItemCooldown - uid: 710 components: - - pos: -5.5434914,7.0192184 + - pos: -5.5050435,7.2214174 parent: 1 type: Transform -- proto: HappyHonk +- proto: HappyHonkCargo entities: - - uid: 128 - components: - - pos: 0.70903397,4.7924657 - parent: 1 - type: Transform - uid: 129 components: - - pos: 0.36528397,4.938299 + - pos: 0.362599,4.8363476 parent: 1 type: Transform - uid: 130 components: - - pos: 0.70903397,4.9487157 + - pos: 0.38343233,4.9509306 parent: 1 type: Transform - uid: 136 components: - - pos: 0.35486734,4.8028827 + - pos: 0.6959323,4.9509306 parent: 1 type: Transform - uid: 137 components: - - pos: 0.33403397,4.657049 + - pos: 0.7271823,4.815514 parent: 1 type: Transform - uid: 176 components: - - pos: 0.69861734,4.657049 + - pos: 0.33134896,4.7321806 parent: 1 type: Transform - uid: 703 components: - - name: happy honk meal (McCargo Meal) - type: MetaData - - pos: -1.4680494,4.705127 + - pos: 0.74801564,4.721764 + parent: 1 + type: Transform + - uid: 1081 + components: + - pos: -1.4760247,3.7039404 parent: 1 type: Transform - - storageUsed: 21 + - storageUsed: 25 type: Storage - containers: storagebase: !type:Container showEnts: False occludes: True ents: - - 704 - - 705 - - 706 - 707 - - 708 + - 706 + - 704 + - 1083 + - 902 type: ContainerContainer - - originalName: happy honk meal - currentLabel: McCargo Meal - type: Label -- proto: HospitalCurtainsOpen - entities: - - uid: 902 - components: - - pos: -8.5,8.5 - parent: 1 - type: Transform - proto: hydroponicsTrayAnchored entities: - uid: 62 @@ -4619,17 +4922,9 @@ entities: type: Transform - proto: Lighter entities: - - uid: 708 - components: - - flags: InContainer - type: MetaData - - parent: 703 - type: Transform - - canCollide: False - type: Physics - uid: 828 components: - - pos: -5.829664,7.266064 + - pos: -6.071316,7.3206215 parent: 1 type: Transform - proto: MaterialReclaimer @@ -4639,6 +4934,23 @@ entities: - pos: 8.5,14.5 parent: 1 type: Transform +- proto: McCargoMothershipComputer + entities: + - uid: 806 + components: + - pos: -3.5,15.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: Mirror entities: - uid: 865 @@ -4665,11 +4977,19 @@ entities: pos: 5.5,8.5 parent: 1 type: Transform -- proto: OilJarGhee +- proto: NoticeBoardNF entities: - - uid: 45 + - uid: 872 components: - - pos: 4.7203918,4.6294155 + - rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + type: Transform +- proto: OilJarGhee + entities: + - uid: 45 + components: + - pos: 4.7203918,4.6294155 parent: 1 type: Transform - uid: 160 @@ -4687,13 +5007,6 @@ entities: - pos: 4.3558083,4.650249 parent: 1 type: Transform -- proto: PaperBin10 - entities: - - uid: 341 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - proto: PartRodMetal entities: - uid: 861 @@ -4705,14 +5018,14 @@ entities: entities: - uid: 204 components: - - pos: -5.9083214,7.6910467 + - pos: -8.387869,10.03673 parent: 1 type: Transform - stampedName: Unknown type: Stamp - uid: 205 components: - - pos: -5.91171,7.5681477 + - pos: -8.625716,10.012696 parent: 1 type: Transform - stampedName: Unknown @@ -4721,7 +5034,18 @@ entities: entities: - uid: 9 components: - - pos: 4.5,12.5 + - anchored: True + pos: 4.5,12.5 + parent: 1 + type: Transform + - canCollide: True + bodyType: Static + type: Physics +- proto: PosterContrabandEAT + entities: + - uid: 1076 + components: + - pos: -2.5,7.5 parent: 1 type: Transform - proto: PosterContrabandSpaceUp @@ -4741,10 +5065,10 @@ entities: type: Transform - proto: Poweredlight entities: - - uid: 60 + - uid: 33 components: - - rot: 3.141592653589793 rad - pos: 9.5,9.5 + - rot: 1.5707963267948966 rad + pos: -8.5,3.5 parent: 1 type: Transform - uid: 110 @@ -4753,27 +5077,15 @@ entities: pos: -1.5,10.5 parent: 1 type: Transform - - uid: 173 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - type: Transform - - uid: 200 - components: - - pos: 7.5,9.5 - parent: 1 - type: Transform - uid: 207 components: - - rot: 3.141592653589793 rad - pos: 3.5,14.5 + - rot: 1.5707963267948966 rad + pos: 6.5,12.5 parent: 1 type: Transform - uid: 227 components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 + - pos: 9.5,1.5 parent: 1 type: Transform - uid: 262 @@ -4790,20 +5102,14 @@ entities: type: Transform - uid: 287 components: - - rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 1 - type: Transform - - uid: 304 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,13.5 + - rot: 3.141592653589793 rad + pos: 3.5,14.5 parent: 1 type: Transform - - uid: 333 + - uid: 397 components: - - rot: 3.141592653589793 rad - pos: 9.5,7.5 + - rot: 1.5707963267948966 rad + pos: -8.5,8.5 parent: 1 type: Transform - uid: 428 @@ -4817,21 +5123,15 @@ entities: - pos: 3.5,12.5 parent: 1 type: Transform - - uid: 445 - components: - - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 1 - type: Transform - uid: 448 components: - pos: -8.5,1.5 parent: 1 type: Transform - - uid: 688 + - uid: 691 components: - rot: -1.5707963267948966 rad - pos: -3.5,6.5 + pos: -3.5,8.5 parent: 1 type: Transform - uid: 720 @@ -4858,6 +5158,12 @@ entities: pos: 9.5,3.5 parent: 1 type: Transform + - uid: 804 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + type: Transform - uid: 833 components: - rot: 3.141592653589793 rad @@ -4888,23 +5194,41 @@ entities: pos: 12.5,-2.5 parent: 1 type: Transform -- proto: Rack +- proto: PoweredlightColoredBlack entities: - - uid: 64 + - uid: 60 components: - - pos: 0.5,4.5 + - rot: 3.141592653589793 rad + pos: 9.5,9.5 parent: 1 type: Transform - - uid: 80 + - uid: 200 components: - - rot: 1.5707963267948966 rad - pos: -1.5,4.5 + - pos: 7.5,9.5 parent: 1 type: Transform - - uid: 86 + - uid: 333 components: - - rot: -1.5707963267948966 rad - pos: -3.5,7.5 + - rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + type: Transform + - uid: 445 + components: + - rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + type: Transform +- proto: Rack + entities: + - uid: 23 + components: + - pos: -5.5,5.5 + parent: 1 + type: Transform + - uid: 64 + components: + - pos: 0.5,4.5 parent: 1 type: Transform - uid: 87 @@ -4937,6 +5261,12 @@ entities: - pos: 2.5,4.5 parent: 1 type: Transform + - uid: 145 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + type: Transform - uid: 152 components: - pos: -1.5,11.5 @@ -4957,6 +5287,12 @@ entities: - pos: -5.5,12.5 parent: 1 type: Transform + - uid: 395 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + type: Transform - uid: 884 components: - pos: -1.5,13.5 @@ -4978,10 +5314,10 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 730 + - uid: 125 components: - - rot: 1.5707963267948966 rad - pos: 2.5,10.5 + - rot: 3.141592653589793 rad + pos: 0.5,10.5 parent: 1 type: Transform - proto: RandomArcade @@ -5093,21 +5429,11 @@ entities: pos: -2.5,-5.5 parent: 1 type: Transform - - uid: 700 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - uid: 701 components: - pos: -3.5,16.5 parent: 1 type: Transform - - uid: 702 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - uid: 745 components: - pos: -1.5,16.5 @@ -5214,6 +5540,22 @@ entities: - links: - 751 type: DeviceLinkSink + - uid: 151 + components: + - pos: -3.5,2.5 + parent: 1 + type: Transform + - links: + - 173 + type: DeviceLinkSink + - uid: 170 + components: + - pos: 0.5,16.5 + parent: 1 + type: Transform + - links: + - 455 + type: DeviceLinkSink - uid: 336 components: - pos: 10.5,7.5 @@ -5264,6 +5606,38 @@ entities: - links: - 885 type: DeviceLinkSink + - uid: 475 + components: + - pos: 1.5,14.5 + parent: 1 + type: Transform + - links: + - 805 + type: DeviceLinkSink + - uid: 560 + components: + - pos: -2.5,16.5 + parent: 1 + type: Transform + - links: + - 455 + type: DeviceLinkSink + - uid: 640 + components: + - pos: -1.5,16.5 + parent: 1 + type: Transform + - links: + - 455 + type: DeviceLinkSink + - uid: 642 + components: + - pos: -0.5,16.5 + parent: 1 + type: Transform + - links: + - 455 + type: DeviceLinkSink - uid: 669 components: - pos: 9.5,12.5 @@ -5286,7 +5660,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 677 components: @@ -5294,7 +5668,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 678 components: @@ -5302,7 +5676,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 679 components: @@ -5310,7 +5684,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 680 components: @@ -5318,7 +5692,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 681 components: @@ -5326,7 +5700,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 682 components: @@ -5334,15 +5708,7 @@ entities: parent: 1 type: Transform - links: - - 675 - type: DeviceLinkSink - - uid: 683 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - links: - - 675 + - 859 type: DeviceLinkSink - uid: 684 components: @@ -5350,7 +5716,7 @@ entities: parent: 1 type: Transform - links: - - 675 + - 859 type: DeviceLinkSink - uid: 689 components: @@ -5360,6 +5726,14 @@ entities: - links: - 885 type: DeviceLinkSink + - uid: 696 + components: + - pos: -3.5,16.5 + parent: 1 + type: Transform + - links: + - 455 + type: DeviceLinkSink - uid: 758 components: - pos: 8.5,15.5 @@ -5432,54 +5806,6 @@ entities: - links: - 885 type: DeviceLinkSink - - uid: 839 - components: - - pos: -4.5,16.5 - parent: 1 - type: Transform - - links: - - 116 - type: DeviceLinkSink - - uid: 840 - components: - - pos: -3.5,16.5 - parent: 1 - type: Transform - - links: - - 116 - type: DeviceLinkSink - - uid: 841 - components: - - pos: -2.5,16.5 - parent: 1 - type: Transform - - links: - - 116 - type: DeviceLinkSink - - uid: 842 - components: - - pos: -1.5,16.5 - parent: 1 - type: Transform - - links: - - 116 - type: DeviceLinkSink - - uid: 843 - components: - - pos: -0.5,16.5 - parent: 1 - type: Transform - - links: - - 116 - type: DeviceLinkSink - - uid: 844 - components: - - pos: 0.5,16.5 - parent: 1 - type: Transform - - links: - - 116 - type: DeviceLinkSink - uid: 854 components: - pos: 9.5,11.5 @@ -5560,33 +5886,26 @@ entities: type: DeviceLinkSink - proto: SignalButton entities: - - uid: 116 + - uid: 150 components: - - pos: -5.5,15.5 + - pos: 9.5,6.5 parent: 1 type: Transform - linkedPorts: - 839: - - Pressed: Toggle - 840: - - Pressed: Toggle - 841: - - Pressed: Toggle - 842: - - Pressed: Toggle - 843: - - Pressed: Toggle - 844: + 337: - Pressed: Toggle type: DeviceLinkSource - - uid: 150 + - uid: 173 components: - - pos: 9.5,6.5 + - rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 type: Transform - linkedPorts: - 337: + 151: - Pressed: Toggle + 193: + - Pressed: DoorBolt type: DeviceLinkSource - uid: 331 components: @@ -5597,45 +5916,22 @@ entities: 336: - Pressed: Toggle type: DeviceLinkSource - - uid: 675 + - uid: 455 components: - - rot: 1.5707963267948966 rad - pos: -2.5,4.5 + - pos: -4.5,15.5 parent: 1 type: Transform - linkedPorts: - 683: - - Pressed: Toggle - 676: - - Pressed: Toggle - 677: - - Pressed: Toggle - 678: + 696: - Pressed: Toggle - 679: - - Pressed: Toggle - 680: + 560: - Pressed: Toggle - 681: + 640: - Pressed: Toggle - 682: + 642: - Pressed: Toggle - 684: + 170: - Pressed: Toggle - 193: - - Pressed: DoorBolt - 300: - - Pressed: DoorBolt - type: DeviceLinkSource - - uid: 691 - components: - - rot: -1.5707963267948966 rad - pos: 1.4849963,15.219261 - parent: 1 - type: Transform - - linkedPorts: - 27: - - Pressed: DoorBolt type: DeviceLinkSource - uid: 749 components: @@ -5695,6 +5991,44 @@ entities: 777: - Pressed: Toggle type: DeviceLinkSource + - uid: 805 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + type: Transform + - linkedPorts: + 27: + - Pressed: DoorBolt + 475: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 859 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + type: Transform + - linkedPorts: + 676: + - Pressed: Toggle + 677: + - Pressed: Toggle + 684: + - Pressed: Toggle + 678: + - Pressed: Toggle + 679: + - Pressed: Toggle + 680: + - Pressed: Toggle + 681: + - Pressed: Toggle + 682: + - Pressed: Toggle + 300: + - Pressed: DoorBolt + type: DeviceLinkSource - uid: 885 components: - rot: 1.5707963267948966 rad @@ -5791,6 +6125,13 @@ entities: 958: - Pressed: Toggle type: DeviceLinkSource +- proto: SignCargo + entities: + - uid: 474 + components: + - pos: 1.5,10.5 + parent: 1 + type: Transform - proto: SignDirectionalFood entities: - uid: 738 @@ -5819,10 +6160,10 @@ entities: type: Transform - proto: SignDirectionalHydro entities: - - uid: 740 + - uid: 159 components: - rot: -1.5707963267948966 rad - pos: -2.4910388,4.210334 + pos: -2.5,5.5 parent: 1 type: Transform - proto: SignDirectionalJanitor @@ -5892,23 +6233,23 @@ entities: type: Transform - proto: soda_dispenser entities: - - uid: 231 + - uid: 232 components: - - rot: 1.5707963267948966 rad - pos: -1.5,6.5 + - pos: -8.5,1.5 parent: 1 type: Transform - - uid: 608 + - uid: 449 components: - - pos: -8.5,1.5 + - rot: 1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 type: Transform - proto: SpawnMobCow entities: - - uid: 859 + - uid: 140 components: - - rot: 1.5707963267948966 rad - pos: 2.5,10.5 + - rot: -1.5707963267948966 rad + pos: 0.5,10.5 parent: 1 type: Transform - proto: SpawnPointBorg @@ -5932,16 +6273,16 @@ entities: type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 17 + - uid: 793 components: - - pos: 0.5,8.5 + - pos: -5.5,8.5 parent: 1 type: Transform - proto: SpawnPointChef entities: - - uid: 23 + - uid: 1071 components: - - pos: 2.5,8.5 + - pos: 2.5,6.5 parent: 1 type: Transform - proto: SpawnPointJanitor @@ -5953,16 +6294,16 @@ entities: type: Transform - proto: SpawnPointLatejoin entities: - - uid: 177 + - uid: 81 components: - - pos: 1.5,8.5 + - pos: 0.5,6.5 parent: 1 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 800 + - uid: 177 components: - - pos: -6.5,9.5 + - pos: -6.5,8.5 parent: 1 type: Transform - proto: StoolBar @@ -6028,27 +6369,27 @@ entities: nameSet: True id: Storage 2 type: SurveillanceCamera - - uid: 636 + - uid: 393 components: - - rot: 3.141592653589793 rad - pos: 8.5,14.5 + - rot: 1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 type: Transform - setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True - id: Janitor + id: Storage 1 type: SurveillanceCamera - - uid: 723 + - uid: 636 components: - - rot: 1.5707963267948966 rad - pos: -3.5,4.5 + - rot: 3.141592653589793 rad + pos: 8.5,14.5 parent: 1 type: Transform - setupAvailableNetworks: - SurveillanceCameraSupply nameSet: True - id: Storage 1 + id: Janitor type: SurveillanceCamera - uid: 724 components: @@ -6106,52 +6447,24 @@ entities: - pos: -0.5,2.5 parent: 1 type: Transform - - uid: 4 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 5 - components: - - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 6 - components: - - pos: 2.5,2.5 - parent: 1 - type: Transform - - uid: 7 - components: - - pos: 3.5,2.5 - parent: 1 - type: Transform - - uid: 19 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - type: Transform - - uid: 32 + - uid: 4 components: - - pos: 1.5,7.5 + - pos: 0.5,2.5 parent: 1 type: Transform - - uid: 33 + - uid: 5 components: - - rot: -1.5707963267948966 rad - pos: 0.5,5.5 + - pos: 1.5,2.5 parent: 1 type: Transform - - uid: 38 + - uid: 6 components: - - pos: 1.5,5.5 + - pos: 2.5,2.5 parent: 1 type: Transform - - uid: 44 + - uid: 7 components: - - rot: -1.5707963267948966 rad - pos: 2.5,7.5 + - pos: 3.5,2.5 parent: 1 type: Transform - uid: 100 @@ -6160,19 +6473,8 @@ entities: pos: 4.5,2.5 parent: 1 type: Transform - - uid: 145 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 1 - type: Transform - proto: TableReinforced entities: - - uid: 94 - components: - - pos: -5.5,7.5 - parent: 1 - type: Transform - uid: 121 components: - pos: -5.5,6.5 @@ -6190,23 +6492,6 @@ entities: pos: 4.5,6.5 parent: 1 type: Transform - - uid: 140 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 183 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - type: Transform - - uid: 186 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - type: Transform - uid: 187 components: - pos: -6.5,1.5 @@ -6222,6 +6507,11 @@ entities: - pos: -8.5,1.5 parent: 1 type: Transform + - uid: 194 + components: + - pos: -8.5,9.5 + parent: 1 + type: Transform - uid: 233 components: - pos: 9.5,1.5 @@ -6232,15 +6522,31 @@ entities: - pos: -5.5,1.5 parent: 1 type: Transform + - uid: 249 + components: + - pos: -6.5,10.5 + parent: 1 + type: Transform + - uid: 277 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + type: Transform - uid: 307 components: - rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 1 type: Transform + - uid: 341 + components: + - pos: -5.5,10.5 + parent: 1 + type: Transform - uid: 343 components: - - pos: -6.5,7.5 + - pos: -7.5,10.5 parent: 1 type: Transform - uid: 389 @@ -6248,11 +6554,62 @@ entities: - pos: 6.5,5.5 parent: 1 type: Transform + - uid: 399 + components: + - pos: -8.5,10.5 + parent: 1 + type: Transform + - uid: 400 + components: + - pos: -5.5,7.5 + parent: 1 + type: Transform + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + type: Transform + - uid: 555 + components: + - pos: -6.5,7.5 + parent: 1 + type: Transform + - uid: 576 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + type: Transform + - uid: 581 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 608 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + type: Transform - uid: 649 components: - pos: -6.5,6.5 parent: 1 type: Transform + - uid: 675 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + type: Transform + - uid: 683 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform - uid: 692 components: - rot: 3.141592653589793 rad @@ -6265,6 +6622,12 @@ entities: pos: 6.5,8.5 parent: 1 type: Transform + - uid: 723 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + type: Transform - proto: TableWood entities: - uid: 11 @@ -6424,6 +6787,20 @@ entities: pos: 9.5,9.5 parent: 1 type: Transform +- proto: ToyFigurineCargoTech + entities: + - uid: 1077 + components: + - pos: -5.64046,7.7318344 + parent: 1 + type: Transform +- proto: ToyFigurineQuartermaster + entities: + - uid: 1078 + components: + - pos: -5.35921,7.836001 + parent: 1 + type: Transform - proto: ToySpawner entities: - uid: 764 @@ -6454,23 +6831,23 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 81 + - uid: 740 components: - - pos: 4.5,8.5 + - pos: 4.5,7.5 parent: 1 type: Transform - proto: VendingMachineCigs entities: - - uid: 455 + - uid: 700 components: - - pos: -4.5,15.5 + - pos: -1.5,15.5 parent: 1 type: Transform - proto: VendingMachineColaBlack entities: - - uid: 851 + - uid: 826 components: - - pos: -1.5,15.5 + - pos: -0.5,15.5 parent: 1 type: Transform - proto: VendingMachineCondiments @@ -6480,25 +6857,11 @@ entities: - pos: -1.5,2.5 parent: 1 type: Transform -- proto: VendingMachineCuddlyCritterVend - entities: - - uid: 852 - components: - - pos: -0.5,15.5 - parent: 1 - type: Transform - proto: VendingMachineDinnerware entities: - - uid: 146 - components: - - pos: 4.5,7.5 - parent: 1 - type: Transform -- proto: VendingMachineDonut - entities: - - uid: 819 + - uid: 398 components: - - pos: -2.5,15.5 + - pos: 4.5,8.5 parent: 1 type: Transform - proto: VendingMachineHappyHonk @@ -6529,15 +6892,18 @@ entities: - pos: -8.5,3.5 parent: 1 type: Transform -- proto: VendingMachinePride +- proto: VendingMachineRestockBooze entities: - - uid: 866 + - uid: 840 components: - - pos: 0.5,13.5 + - pos: -2.598885,13.865319 + parent: 1 + type: Transform + - uid: 841 + components: + - pos: -2.3384683,13.781985 parent: 1 type: Transform -- proto: VendingMachineRestockBooze - entities: - uid: 894 components: - pos: -2.606868,13.727668 @@ -6550,86 +6916,90 @@ entities: type: Transform - proto: VendingMachineRestockChefvend entities: - - uid: 349 + - uid: 748 components: - - pos: -3.3606324,7.799815 + - pos: -0.56509566,13.911346 parent: 1 type: Transform - - uid: 581 + - uid: 1065 components: - - pos: -3.589799,7.9143987 + - pos: -0.5755123,13.734262 parent: 1 type: Transform -- proto: VendingMachineRestockCondimentStation - entities: - - uid: 892 + - uid: 1066 components: - - pos: -2.5964513,13.863084 + - pos: -0.3255123,13.828012 parent: 1 type: Transform - - uid: 893 + - uid: 1067 components: - - pos: -2.325618,13.769334 + - pos: -0.30467892,13.671762 parent: 1 type: Transform -- proto: VendingMachineRestockCostumes +- proto: VendingMachineRestockClothes entities: - uid: 91 components: - - pos: -3.6016417,8.945648 + - pos: -3.6114817,8.886418 parent: 1 type: Transform - - uid: 793 + - uid: 146 components: - - pos: -3.3099751,8.851898 + - pos: -3.3718984,8.803084 parent: 1 type: Transform -- proto: VendingMachineRestockCuddlyCritterVend - entities: - - uid: 806 + - uid: 800 components: - - pos: -2.3244715,11.857673 + - pos: -3.4031484,8.678085 parent: 1 type: Transform - - uid: 826 + - uid: 1072 components: - - pos: -2.5848882,11.96184 + - pos: -3.6531487,8.730168 parent: 1 type: Transform -- proto: VendingMachineRestockDinnerware +- proto: VendingMachineRestockCondimentStation entities: - - uid: 306 + - uid: 839 components: - - pos: -3.631466,7.695648 + - pos: -3.5885057,13.942069 parent: 1 type: Transform - - uid: 576 + - uid: 842 components: - - pos: -3.3397992,7.633148 + - pos: -3.3593388,13.660819 parent: 1 type: Transform -- proto: VendingMachineRestockDonut - entities: - - uid: 170 + - uid: 851 components: - - pos: -3.5964513,13.915168 + - pos: -3.3801723,13.848319 parent: 1 type: Transform - - uid: 889 + - uid: 852 components: - - pos: -3.325618,13.811001 + - pos: -3.5989223,13.744152 parent: 1 type: Transform -- proto: VendingMachineRestockGetmoreChocolateCorp +- proto: VendingMachineRestockDinnerware entities: - - uid: 890 + - uid: 730 components: - - pos: -3.6277013,13.717251 + - pos: -2.3180861,11.673373 parent: 1 type: Transform - - uid: 891 + - uid: 759 + components: + - pos: -2.5680861,11.912956 + parent: 1 + type: Transform + - uid: 768 + components: + - pos: -2.391003,11.819206 + parent: 1 + type: Transform + - uid: 769 components: - - pos: -3.325618,13.633918 + - pos: -2.5680861,11.71504 parent: 1 type: Transform - proto: VendingMachineRestockHappyHonk @@ -6658,19 +7028,12 @@ entities: entities: - uid: 563 components: - - pos: -3.3308084,8.643565 - parent: 1 - type: Transform -- proto: VendingMachineRestockPride - entities: - - uid: 805 - components: - - pos: -2.6369717,11.753507 + - pos: -5.3109856,5.773668 parent: 1 type: Transform - - uid: 807 + - uid: 1069 components: - - pos: -2.3244715,11.670173 + - pos: -5.290152,5.6590843 parent: 1 type: Transform - proto: VendingMachineRestockRobustSoftdrinks @@ -6699,7 +7062,12 @@ entities: entities: - uid: 562 components: - - pos: -3.6433086,8.758148 + - pos: -5.6443186,5.8882513 + parent: 1 + type: Transform + - uid: 1068 + components: + - pos: -5.6859856,5.711168 parent: 1 type: Transform - proto: VendingMachineRestockSmokes @@ -6731,13 +7099,6 @@ entities: - pos: -8.5,4.5 parent: 1 type: Transform -- proto: VendingMachineSnackGreen - entities: - - uid: 560 - components: - - pos: -3.5,15.5 - parent: 1 - type: Transform - proto: WallmountTelevisionFrame entities: - uid: 737 @@ -7020,6 +7381,11 @@ entities: pos: -10.5,0.5 parent: 1 type: Transform + - uid: 889 + components: + - pos: -4.5,15.5 + parent: 1 + type: Transform - uid: 903 components: - pos: 9.5,-8.5 @@ -7062,11 +7428,6 @@ entities: - pos: -4.5,2.5 parent: 1 type: Transform - - uid: 34 - components: - - pos: -2.5,6.5 - parent: 1 - type: Transform - uid: 37 components: - pos: -2.5,9.5 @@ -7140,10 +7501,10 @@ entities: - pos: -8.5,2.5 parent: 1 type: Transform - - uid: 151 + - uid: 195 components: - rot: -1.5707963267948966 rad - pos: -2.5,4.5 + pos: -2.5,3.5 parent: 1 type: Transform - uid: 224 @@ -7263,6 +7624,12 @@ entities: - pos: 4.5,9.5 parent: 1 type: Transform + - uid: 688 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + type: Transform - uid: 694 components: - rot: 3.141592653589793 rad @@ -7301,6 +7668,11 @@ entities: - pos: 9.5,-5.5 parent: 1 type: Transform + - uid: 116 + components: + - pos: -4.5,16.5 + parent: 1 + type: Transform - uid: 256 components: - rot: 3.141592653589793 rad @@ -7393,11 +7765,6 @@ entities: - pos: -9.5,15.5 parent: 1 type: Transform - - uid: 640 - components: - - pos: -5.5,16.5 - parent: 1 - type: Transform - uid: 736 components: - rot: 3.141592653589793 rad @@ -7413,23 +7780,23 @@ entities: type: Transform - proto: WaterTankHighCapacity entities: - - uid: 277 + - uid: 306 components: - - pos: -3.5,6.5 + - pos: -3.5,7.5 parent: 1 type: Transform - proto: WindoorSecure entities: - - uid: 85 + - uid: 32 components: - rot: -1.5707963267948966 rad - pos: -2.5,5.5 + pos: -2.5,6.5 parent: 1 type: Transform - - uid: 99 + - uid: 44 components: - rot: 1.5707963267948966 rad - pos: -2.5,5.5 + pos: -2.5,6.5 parent: 1 type: Transform - uid: 141 diff --git a/Resources/Maps/_NF/Shuttles/mcdelivery.yml b/Resources/Maps/_NF/Shuttles/mcdelivery.yml new file mode 100644 index 00000000000..385ae8232c9 --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/mcdelivery.yml @@ -0,0 +1,963 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 97: FloorTechMaint + 113: Lattice + 114: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - name: grid + type: MetaData + - pos: -0.5104167,-0.46875 + parent: invalid + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: YQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA + version: 6 + type: MapGrid + - type: Broadphase + - bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + type: Physics + - fixtures: {} + type: Fixtures + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + type: Gravity + - chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 11: 1,2 + - node: + color: '#3C44AAFF' + id: DeliveryGreyscale + decals: + 10: 1,1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 0: 0,0 + - node: + color: '#A4610696' + id: WarnCornerNE + decals: + 8: 2,4 + - node: + color: '#A4610696' + id: WarnCornerNW + decals: + 4: 0,4 + - node: + color: '#A4610696' + id: WarnCornerSmallNE + decals: + 6: 1,4 + - node: + color: '#A4610696' + id: WarnCornerSmallNW + decals: + 7: 1,4 + 9: 0,2 + - node: + color: '#A4610696' + id: WarnEndN + decals: + 5: 1,5 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 2: 0,-1 + - node: + color: '#A4610696' + id: WarnLineS + decals: + 3: 0,3 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 1: 0,-1 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 30583 + 1: 34952 + 0,-1: + 0: 28672 + 1: 32768 + -1,0: + 0: 34952 + -1,-1: + 0: 32768 + 0,1: + 0: 2047 + 1: 2048 + -1,1: + 0: 136 + 1: 2048 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 32 + components: + - anchored: True + pos: 1.5,1.5 + parent: 1 + type: Transform + - bodyType: Static + type: Physics +- proto: AirlockGlassShuttle + entities: + - uid: 8 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: APCBasic + entities: + - uid: 49 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 7 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: AtmosFixBlockerMarker + entities: + - uid: 2 + components: + - pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 41 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 102 + components: + - pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 103 + components: + - pos: 3.5,1.5 + parent: 1 + type: Transform + - uid: 104 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform + - uid: 105 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 106 + components: + - pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: BoxPaperOffice + entities: + - uid: 39 + components: + - flags: InContainer + type: MetaData + - parent: 71 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: CableApcExtension + entities: + - uid: 20 + components: + - pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 22 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 33 + components: + - pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 43 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform + - uid: 48 + components: + - pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 51 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 53 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 54 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 79 + components: + - pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 80 + components: + - pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 81 + components: + - pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 82 + components: + - pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 83 + components: + - pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 84 + components: + - pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 85 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 86 + components: + - pos: 3.5,3.5 + parent: 1 + type: Transform + - uid: 88 + components: + - pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 94 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: CableHV + entities: + - uid: 21 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 95 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: CableMV + entities: + - uid: 4 + components: + - pos: 0.5,2.5 + parent: 1 + type: Transform + - uid: 19 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 98 + components: + - pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 99 + components: + - pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: ChairPilotSeat + entities: + - uid: 56 + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + type: Transform +- proto: ClosetWall + entities: + - uid: 23 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 91 + - 89 + - 67 + type: ContainerContainer + - uid: 71 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + type: Transform + - air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage + - containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 39 + type: ContainerContainer +- proto: ComputerTabletopShuttle + entities: + - uid: 13 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: ComputerTabletopStationRecords + entities: + - uid: 36 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + type: Transform +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 63 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + type: ContainerContainer + - type: ItemSlots +- proto: CrowbarRed + entities: + - uid: 89 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: DefibrillatorCabinetFilled + entities: + - uid: 34 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + type: Transform +- proto: EmergencyLight + entities: + - uid: 50 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 108 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform +- proto: FaxMachineShip + entities: + - uid: 55 + components: + - pos: 0.5,4.5 + parent: 1 + type: Transform +- proto: FirelockGlass + entities: + - uid: 9 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform +- proto: GasPassiveVent + entities: + - uid: 37 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 27 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 65 + components: + - pos: 1.5,1.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentPump + entities: + - uid: 45 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + type: Transform + - color: '#0055CCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 3 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + type: Transform + - color: '#990000FF' + type: AtmosPipeColor +- proto: GravityGeneratorMini + entities: + - uid: 90 + components: + - pos: 3.5,2.5 + parent: 1 + type: Transform +- proto: Grille + entities: + - uid: 6 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 17 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 28 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 30 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform + - uid: 31 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 57 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 61 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 64 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 70 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 76 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform +- proto: Gyroscope + entities: + - uid: 38 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + type: Transform +- proto: NoticeBoardNF + entities: + - uid: 96 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 52 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 44 + components: + - anchored: True + pos: 1.5,2.5 + parent: 1 + type: Transform + - storage: + Plasma: 3000 + type: MaterialStorage + - bodyType: Static + type: Physics + - type: InsertingMaterialStorage +- proto: PosterContrabandEAT + entities: + - uid: 93 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform +- proto: Poweredlight + entities: + - uid: 18 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 5 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + type: Transform + - uid: 25 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + type: Transform + - uid: 35 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + type: Transform + - uid: 40 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + type: Transform + - uid: 42 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + type: Transform + - uid: 58 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + type: Transform + - uid: 69 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + type: Transform + - uid: 74 + components: + - pos: 3.5,4.5 + parent: 1 + type: Transform + - uid: 77 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + type: Transform + - uid: 100 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + type: Transform +- proto: SheetPlasma1 + entities: + - uid: 91 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item + - canCollide: False + type: Physics + - type: InsideEntityStorage +- proto: ShuttersNormalOpen + entities: + - uid: 60 + components: + - pos: 0.5,-0.5 + parent: 1 + type: Transform + - links: + - 24 + type: DeviceLinkSink +- proto: SignalButton + entities: + - uid: 24 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + type: Transform + - linkedPorts: + 60: + - Pressed: Toggle + type: DeviceLinkSource +- proto: SpawnPointLatejoin + entities: + - uid: 72 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + type: Transform +- proto: SubstationWallBasic + entities: + - uid: 97 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + type: Transform +- proto: Table + entities: + - uid: 46 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform +- proto: TableReinforced + entities: + - uid: 16 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + type: Transform + - uid: 78 + components: + - pos: 2.5,4.5 + parent: 1 + type: Transform + - uid: 101 + components: + - pos: 1.5,5.5 + parent: 1 + type: Transform +- proto: Thruster + entities: + - uid: 29 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + type: Transform + - uid: 62 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + type: Transform + - uid: 68 + components: + - pos: 3.5,6.5 + parent: 1 + type: Transform + - uid: 75 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + type: Transform +- proto: WallReinforced + entities: + - uid: 10 + components: + - pos: 2.5,-0.5 + parent: 1 + type: Transform + - uid: 12 + components: + - pos: -0.5,0.5 + parent: 1 + type: Transform + - uid: 14 + components: + - pos: -0.5,1.5 + parent: 1 + type: Transform + - uid: 15 + components: + - pos: -0.5,2.5 + parent: 1 + type: Transform + - uid: 47 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + type: Transform + - uid: 59 + components: + - rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + type: Transform + - uid: 66 + components: + - pos: 2.5,3.5 + parent: 1 + type: Transform + - uid: 87 + components: + - pos: -0.5,-0.5 + parent: 1 + type: Transform + - uid: 107 + components: + - pos: -0.5,3.5 + parent: 1 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 73 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + type: Transform +- proto: WarpPointShip + entities: + - uid: 26 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + type: Transform +- proto: WindoorSecure + entities: + - uid: 11 + components: + - pos: 1.5,-0.5 + parent: 1 + type: Transform + - links: + - 92 + type: DeviceLinkSink + - linkedPorts: + 92: + - DoorStatus: Close + type: DeviceLinkSource + - uid: 92 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + type: Transform + - links: + - 11 + type: DeviceLinkSink + - linkedPorts: + 11: + - DoorStatus: Close + type: DeviceLinkSource +- proto: Wrench + entities: + - uid: 67 + components: + - flags: InContainer + type: MetaData + - parent: 23 + type: Transform + - canCollide: False + type: Physics + - type: InsideEntityStorage +... 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/Catalog/VendingMachines/Inventories/happyhonk.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml index df1432611ba..98c986fef13 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/happyhonk.yml @@ -3,7 +3,9 @@ startingInventory: HappyHonk: 10 HappyHonkMime: 4 - MysteryFigureBoxBulk: 5 + HappyHonkCargo: 10 # Frontier + ClothingHeadHatMcCrown: 10 # Frontier + MysteryFigureBoxBulk: 5 # Frontier emaggedInventory: HappyHonkCluwne: 1 HappyHonkNukie: 1 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..606ba5a530e 100644 --- a/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/_NF/Entities/Clothing/Head/hats.yml @@ -108,3 +108,32 @@ - type: Tag tags: - WhitelistChameleon + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatMcCrown + name: mccargo crown + description: 'Crowns and tiaras, McCargo King.' + components: + - type: Sprite + sprite: _NF/Clothing/Head/Hoods/mccargocrown.rsi + - type: Clothing + sprite: _NF/Clothing/Head/Hoods/mccargocrown.rsi + - 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/Consumable/Food/Containers/box.yml b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/Containers/box.yml new file mode 100644 index 00000000000..10538c960c5 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Consumable/Food/Containers/box.yml @@ -0,0 +1,19 @@ +- type: entity + id: HappyHonkCargo + parent: HappyHonk + name: mccargo meal + components: + - type: Sprite + sprite: _NF/Objects/Storage/Happyhonk/cargo.rsi + state: box + - type: Item + sprite: _NF/Objects/Storage/Happyhonk/cargo.rsi + heldPrefix: box + - type: StorageFill + contents: + - id: MysteryFigureBox + orGroup: GiftPool + - id: ClothingHeadHatMcCrown + orGroup: GiftPool + - type: StaticPrice + price: 40 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/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/sword.yml new file mode 100644 index 00000000000..091e5c57a72 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Weapons/Melee/sword.yml @@ -0,0 +1,34 @@ +- type: entity + name: plasteel arming sword + parent: CaptainSabre + id: PlasteelArmingSword + description: An ancient design manufactured with modern materials and machines for a very specific target demographic. + components: + - type: Sharp + - type: Sprite + sprite: _NF/Objects/Weapons/Melee/armingsword.rsi + state: icon + - type: MeleeWeapon + wideAnimationRotation: -135 + attackRate: 1.5 + damage: + types: + Slash: 15 + soundHit: + path: /Audio/Weapons/bladeslice.ogg + - type: Reflect + enabled: true + reflectProb: .1 + spread: 90 + - type: Item + sprite: _NF/Objects/Weapons/Melee/armingsword.rsi + - type: Tag + tags: + - WeaponMelee + - type: DisarmMalus + - type: Clothing + quickEquip: false + slots: + - back + - suitStorage + - belt 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 356b4a065c6..71dd1a4b2e7 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml @@ -20,6 +20,16 @@ - Fighter - Cleric - Rogue + +# The mccargo console +- type: entity + id: McCargoMothershipComputer + name: McCargo delivery ship console + parent: BaseMothershipComputer + components: + - type: ShipyardListing + shuttles: + - McDelivery # The caduceus console - type: entity 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/mccargo.yml b/Resources/Prototypes/_NF/Shipyard/mccargo.yml index 05a92d396d3..87d35fe561b 100644 --- a/Resources/Prototypes/_NF/Shipyard/mccargo.yml +++ b/Resources/Prototypes/_NF/Shipyard/mccargo.yml @@ -6,21 +6,21 @@ # - type: vessel - id: mccargo + id: McCargo name: DC McCargo description: "Your very own McCargo :tm: franchisee! comes fully stocked and ready for production of McCargo meals" - price: 72000 # 10% up from sell + price: 68900 # 10% up from sell category: Medium group: Civilian shuttlePath: /Maps/_NF/Shuttles/mccargo.yml - type: gameMap - id: mccargo + id: McCargo mapName: 'DC McCargo' mapPath: /Maps/_NF/Shuttles/mccargo.yml minPlayers: 0 stations: - mccargo: + McCargo: stationProto: StandardFrontierVessel components: - type: StationNameSetup diff --git a/Resources/Prototypes/_NF/Shipyard/mcdelivery.yml b/Resources/Prototypes/_NF/Shipyard/mcdelivery.yml new file mode 100644 index 00000000000..d60bb242643 --- /dev/null +++ b/Resources/Prototypes/_NF/Shipyard/mcdelivery.yml @@ -0,0 +1,33 @@ +# Maintainer Info +# GitHub: dvir001 +# Discord: dvir01 (84770870936997888) + +# Shuttle Notes: +# + +- type: vessel + id: McDelivery + name: DC McDelivery + description: "Fast food fast ship, bring the McCargo meals to the people" + price: 11300 + category: Small + group: None + shuttlePath: /Maps/_NF/Shuttles/mcdelivery.yml + +- type: gameMap + id: McDelivery + mapName: 'DC McDelivery' + mapPath: /Maps/_NF/Shuttles/mcdelivery.yml + minPlayers: 0 + stations: + McDelivery: + stationProto: StandardFrontierVessel + components: + - type: StationNameSetup + mapNameTemplate: 'McDelivery {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: {} 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/Head/Hoods/mccargocrown.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..b1081f212cf Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/icon.png new file mode 100644 index 00000000000..16460121610 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/inhand-left.png new file mode 100644 index 00000000000..6ef862d3bd6 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/inhand-right.png new file mode 100644 index 00000000000..91089ea1e32 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/meta.json new file mode 100644 index 00000000000..3111bdb74b2 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hoods/mccargocrown.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by gentlebutter", + "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/Objects/Storage/Happyhonk/cargo.rsi/box-inhand-left.png b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-inhand-left.png new file mode 100644 index 00000000000..b32610fd295 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-inhand-right.png b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-inhand-right.png new file mode 100644 index 00000000000..ee900a3a1e7 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-open.png b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-open.png new file mode 100644 index 00000000000..7e6163cc56f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box-open.png differ diff --git a/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box.png b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box.png new file mode 100644 index 00000000000..cea221cb920 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/box.png differ diff --git a/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/meta.json b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/meta.json new file mode 100644 index 00000000000..cfe7e8a6c9d --- /dev/null +++ b/Resources/Textures/_NF/Objects/Storage/Happyhonk/cargo.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by gentlebutter", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "box" + }, + { + "name": "box-open" + }, + { + "name": "box-inhand-left", + "directions": 4 + }, + { + "name": "box-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..67f678b3ffb Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/equipped-BELT.png b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/equipped-BELT.png new file mode 100644 index 00000000000..bb2885fb65e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/icon.png b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/icon.png new file mode 100644 index 00000000000..9d4538c052b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/inhand-left.png new file mode 100644 index 00000000000..bd5fe17307c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/inhand-right.png new file mode 100644 index 00000000000..e08f9f8a203 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/meta.json new file mode 100644 index 00000000000..2697b05d4e8 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Melee/armingsword.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by MagnusCrowe for use on Frontier Station 14.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + } + ] +} 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/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