diff --git a/.github/mapchecker/config.py b/.github/mapchecker/config.py index 46be72338d8..70950482608 100644 --- a/.github/mapchecker/config.py +++ b/.github/mapchecker/config.py @@ -38,13 +38,16 @@ "Plastitanium", # Plastitanium walls should only be appearing on security ships. "Kammerer", # Opportunity "HighSecDoor", + "ShuttleGun", ], "Syndicate": [ "Plastitanium", # And also on blackmarket ships cause syndicate. - "ButtonFrameCautionSecurity", # Decal. + "ButtonFrameCautionSecurity", # Decal. + "ShuttleGun", ], "BlackMarket": [ "Plastitanium", # And also on blackmarket ships cause syndicate. "ButtonFrameCautionSecurity", # Decal. + "ShuttleGun", ] } diff --git a/.github/mapchecker/whitelist.yml b/.github/mapchecker/whitelist.yml index 074857ab784..012f37b65e2 100644 --- a/.github/mapchecker/whitelist.yml +++ b/.github/mapchecker/whitelist.yml @@ -15,5 +15,5 @@ Trade: true # TECHNICAL DEBT BELOW. These ones were added to this list to ensure other PR's would not break upon merging. It is # the intention for this list to become empty in separate PR's. -#DartX: -# - HighSecDoor +Rogue: + - ShuttleGunFriendship diff --git a/Content.Client/Bank/UI/BankATMMenu.xaml.cs b/Content.Client/Bank/UI/BankATMMenu.xaml.cs index 4e62faef384..e60d878fa85 100644 --- a/Content.Client/Bank/UI/BankATMMenu.xaml.cs +++ b/Content.Client/Bank/UI/BankATMMenu.xaml.cs @@ -1,3 +1,8 @@ +/* + * New Frontiers - This file is licensed under AGPLv3 + * Copyright (c) 2024 New Frontiers Contributors + * See AGPLv3.txt for details. + */ using Content.Client.UserInterface.Controls; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; @@ -22,13 +27,16 @@ public BankATMMenu() public void SetBalance(int amount) { - BalanceLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", amount.ToString())); + BalanceLabel.Text = Loc.GetString("bank-atm-menu-cash-amount", ("amount", amount.ToString())); } public void SetDeposit(int amount) { DepositButton.Disabled = amount <= 0; - DepositLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", amount.ToString())); + if (amount >= 0) // Valid + DepositLabel.Text = Loc.GetString("bank-atm-menu-cash-amount", ("amount", amount.ToString())); + else + DepositLabel.Text = Loc.GetString("bank-atm-menu-cash-error"); } public void SetEnabled(bool enabled) diff --git a/Content.Client/Bank/UI/StationBankATMMenu.xaml.cs b/Content.Client/Bank/UI/StationBankATMMenu.xaml.cs index 0ddd66325a6..bbc0e9a55d2 100644 --- a/Content.Client/Bank/UI/StationBankATMMenu.xaml.cs +++ b/Content.Client/Bank/UI/StationBankATMMenu.xaml.cs @@ -1,3 +1,8 @@ +/* + * New Frontiers - This file is licensed under AGPLv3 + * Copyright (c) 2024 New Frontiers Contributors + * See AGPLv3.txt for details. + */ using Content.Client.UserInterface.Controls; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; @@ -36,13 +41,16 @@ private void OnReasonSelected(OptionButton.ItemSelectedEventArgs args) } public void SetBalance(int amount) { - BalanceLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", amount.ToString())); + BalanceLabel.Text = Loc.GetString("bank-atm-menu-cash-amount", ("amount", amount.ToString())); } public void SetDeposit(int amount) { DepositButton.Disabled = amount <= 0; - DepositLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", amount.ToString())); + if (amount >= 0) // Valid + DepositLabel.Text = Loc.GetString("bank-atm-menu-cash-amount", ("amount", amount.ToString())); + else + DepositLabel.Text = Loc.GetString("bank-atm-menu-cash-error"); } public void SetEnabled(bool enabled) diff --git a/Content.Client/Bank/UI/WithdrawBankATMMenu.cs b/Content.Client/Bank/UI/WithdrawBankATMMenu.cs index 1811e5d1992..4a5cbd41a55 100644 --- a/Content.Client/Bank/UI/WithdrawBankATMMenu.cs +++ b/Content.Client/Bank/UI/WithdrawBankATMMenu.cs @@ -1,3 +1,8 @@ +/* + * New Frontiers - This file is licensed under AGPLv3 + * Copyright (c) 2024 New Frontiers Contributors + * See AGPLv3.txt for details. + */ using Content.Client.UserInterface.Controls; using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.Controls; @@ -21,7 +26,7 @@ public WithdrawBankATMMenu() public void SetBalance(int amount) { - BalanceLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", amount.ToString())); + BalanceLabel.Text = Loc.GetString("bank-atm-menu-cash-amount", ("amount", amount.ToString())); } public void SetEnabled(bool enabled) diff --git a/Content.Client/Lathe/UI/LatheMenu.xaml.cs b/Content.Client/Lathe/UI/LatheMenu.xaml.cs index 9e15f8239e5..fbcad29f149 100644 --- a/Content.Client/Lathe/UI/LatheMenu.xaml.cs +++ b/Content.Client/Lathe/UI/LatheMenu.xaml.cs @@ -142,7 +142,7 @@ private string GenerateTooltipText(LatheRecipePrototype prototype) if (!_prototypeManager.TryIndex(id, out var proto)) continue; - var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, _entityManager.GetComponent(_owner).MaterialUseMultiplier); + var adjustedAmount = SharedLatheSystem.AdjustMaterial(amount, prototype.ApplyMaterialDiscount, _entityManager.GetComponent(_owner).FinalMaterialUseMultiplier); // Frontier: MaterialUseMultiplier SendMessage(new ItemSlotButtonPressedEvent("ShipyardConsole-targetId")); } - private void Populate(List prototypes, string name) + private void Populate(List prototypes, string name, bool freeListings) { if (_menu == null) return; - _menu.PopulateProducts(prototypes, name); + _menu.PopulateProducts(prototypes, name, freeListings); _menu.PopulateCategories(); } @@ -61,7 +61,7 @@ protected override void UpdateState(BoundUserInterfaceState state) Balance = cState.Balance; ShipSellValue = cState.ShipSellValue; var castState = (ShipyardConsoleInterfaceState) state; - Populate(castState.ShipyardPrototypes, castState.ShipyardName); + Populate(castState.ShipyardPrototypes, castState.ShipyardName, castState.FreeListings); _menu?.UpdateState(castState); } diff --git a/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs b/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs index 43814ba976f..091985b3293 100644 --- a/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs +++ b/Content.Client/Shipyard/UI/ShipyardConsoleMenu.xaml.cs @@ -25,6 +25,7 @@ public sealed partial class ShipyardConsoleMenu : FancyWindow private List _lastProtos = new(); private string _lastType = ""; + private bool _freeListings = false; public ShipyardConsoleMenu(ShipyardConsoleBoundUserInterface owner) { @@ -41,12 +42,12 @@ public ShipyardConsoleMenu(ShipyardConsoleBoundUserInterface owner) private void OnCategoryItemSelected(OptionButton.ItemSelectedEventArgs args) { SetCategoryText(args.Id); - PopulateProducts(_lastProtos, _lastType); + PopulateProducts(_lastProtos, _lastType, _freeListings); } private void OnSearchBarTextChanged(LineEdit.LineEditEventArgs args) { - PopulateProducts(_lastProtos, _lastType); + PopulateProducts(_lastProtos, _lastType, _freeListings); } private void SetCategoryText(int id) @@ -58,7 +59,7 @@ private void SetCategoryText(int id) /// /// Populates the list of products that will actually be shown, using the current filters. /// - public void PopulateProducts(List prototypes, string type) + public void PopulateProducts(List prototypes, string type, bool free) { Vessels.RemoveAllChildren(); @@ -80,12 +81,18 @@ public void PopulateProducts(List prototypes, string type) search.Length != 0 && prototype!.Name.ToLowerInvariant().Contains(search) || search.Length == 0 && _category != null && prototype!.Category.Equals(_category)) { + string priceText; + if (_freeListings) + priceText = Loc.GetString("shipyard-console-menu-listing-free"); + else + priceText = Loc.GetString("shipyard-console-menu-listing-amount", ("amount", prototype!.Price.ToString())); + var vesselEntry = new VesselRow { Vessel = prototype, VesselName = { Text = prototype!.Name }, Purchase = { ToolTip = prototype.Description, TooltipDelay = 0.2f }, - Price = { Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", prototype.Price.ToString())) }, + Price = { Text = priceText }, }; vesselEntry.Purchase.OnPressed += (args) => { OnOrderApproved?.Invoke(args); }; Vessels.AddChild(vesselEntry); @@ -125,8 +132,12 @@ public void PopulateCategories() public void UpdateState(ShipyardConsoleInterfaceState state) { - BalanceLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", state.Balance.ToString())); - ShipAppraisalLabel.Text = Loc.GetString("cargo-console-menu-points-amount", ("amount", state.ShipSellValue.ToString())); + BalanceLabel.Text = Loc.GetString("shipyard-console-menu-listing-amount", ("amount", state.Balance.ToString())); + int shipPrice = 0; + if (!state.FreeListings) + shipPrice = state.ShipSellValue; + + ShipAppraisalLabel.Text = Loc.GetString("shipyard-console-menu-listing-amount", ("amount", shipPrice.ToString())); SellShipButton.Disabled = state.ShipDeedTitle == null; TargetIdButton.Text = state.IsTargetIdPresent ? Loc.GetString("id-card-console-window-eject-button") @@ -139,5 +150,7 @@ public void UpdateState(ShipyardConsoleInterfaceState state) { DeedTitle.Text = $"None"; } + _freeListings = state.FreeListings; + PopulateProducts(_lastProtos, _lastType, _freeListings); } } diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml b/Content.Client/Shuttles/UI/NavScreen.xaml index 8d080f8d613..1a1d5747335 100644 --- a/Content.Client/Shuttles/UI/NavScreen.xaml +++ b/Content.Client/Shuttles/UI/NavScreen.xaml @@ -80,5 +80,16 @@ + + + + + + diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml.cs b/Content.Client/Shuttles/UI/NavScreen.xaml.cs index d9d86f8e984..fd033932e6a 100644 --- a/Content.Client/Shuttles/UI/NavScreen.xaml.cs +++ b/Content.Client/Shuttles/UI/NavScreen.xaml.cs @@ -35,6 +35,10 @@ public NavScreen() // Frontier - IFF search IffSearchCriteria.OnTextChanged += args => OnIffSearchChanged(args.Text); + + // Frontier - Maximum IFF Distance + MaximumIFFDistanceValue.GetChild(0).GetChild(1).Margin = new Thickness(8,0,0,0); + MaximumIFFDistanceValue.OnValueChanged += args => OnRangeFilterChanged(args); } // Frontier - IFF search @@ -51,6 +55,12 @@ private void OnIffSearchChanged(string text) }; } + // Frontier - Maximum IFF Distance + private void OnRangeFilterChanged(int value) + { + NavRadar.MaximumIFFDistance = (float) value; + } + public void SetShuttle(EntityUid? shuttle) { _shuttleEntity = shuttle; diff --git a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs index f6edb08ccff..19946875fb2 100644 --- a/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs +++ b/Content.Client/Shuttles/UI/ShuttleNavControl.xaml.cs @@ -38,6 +38,8 @@ public sealed partial class ShuttleNavControl : BaseShuttleControl public bool ShowIFFShuttles { get; set; } = true; public bool ShowDocks { get; set; } = true; + public float MaximumIFFDistance { get; set; } = -1f; // Frontier + /// /// If present, called for every IFF. Must determine if it should or should not be shown. /// @@ -224,6 +226,20 @@ protected override void Draw(DrawingHandleScreen handle) shouldDrawIFF &= ShowIFFShuttles; } + // New Frontiers - Maximum IFF Distance - checks distance to object, draws if closer than max range + // This code is licensed under AGPLv3. See AGPLv3.txt + if (shouldDrawIFF && MaximumIFFDistance >= 0.0f) + { + var gridCentre = Vector2.Transform(gridBody.LocalCenter, matty); + var distance = gridCentre.Length(); + + if (distance > MaximumIFFDistance) + { + shouldDrawIFF = false; + } + } + // End of modified code + if (shouldDrawIFF) { var gridCentre = Vector2.Transform(gridBody.LocalCenter, matty); diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs index 41f78096535..977d4abe3e6 100644 --- a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs +++ b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml.cs @@ -2,7 +2,6 @@ using Content.Client.UserInterface.Controls; using Content.Shared.VendingMachines; using Content.Shared.Cargo.Components; -using Content.Shared._NF.Cargo.Components; using Content.Shared.Stacks; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; @@ -150,9 +149,9 @@ public void Populate(List inventory, float priceMo } // This block exists to allow the VendPrice flag to set a vending machine item price. - if (prototype != null && prototype.TryGetComponent(out var vendPriceComponent) && vendPriceComponent.Price != 0 && cost <= (float) vendPriceComponent.Price) + if (prototype != null && prototype.TryGetComponent(out var vendPriceComponent) && vendPriceComponent.VendPrice != 0 && cost <= (float) vendPriceComponent.VendPrice) { - var price = (float) vendPriceComponent.Price; + var price = (float) vendPriceComponent.VendPrice; cost = (int) price; } // This block exists to allow the VendPrice flag to set a vending machine item price. diff --git a/Content.Server/Cargo/Systems/PricingSystem.cs b/Content.Server/Cargo/Systems/PricingSystem.cs index 46cd6453067..7d93fa7fa01 100644 --- a/Content.Server/Cargo/Systems/PricingSystem.cs +++ b/Content.Server/Cargo/Systems/PricingSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Administration; using Content.Shared.Body.Components; using Content.Shared.Cargo.Components; -using Content.Shared._NF.Cargo.Components; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.Reagent; using Content.Shared.Materials; @@ -385,10 +384,10 @@ private double GetVendPrice(EntityPrototype prototype) { var price = 0.0; - if (prototype.Components.TryGetValue(_factory.GetComponentName(typeof(VendPriceComponent)), out var vendProto)) + if (prototype.Components.TryGetValue(_factory.GetComponentName(typeof(StaticPriceComponent)), out var vendProto)) { - var vendPrice = (VendPriceComponent) vendProto.Component; - price += vendPrice.Price; + var vendPrice = (StaticPriceComponent) vendProto.Component; + price += vendPrice.VendPrice; } return price; diff --git a/Content.Server/Connection/ConnectionManager.cs b/Content.Server/Connection/ConnectionManager.cs index 9a32231d60f..ac50e258c1e 100644 --- a/Content.Server/Connection/ConnectionManager.cs +++ b/Content.Server/Connection/ConnectionManager.cs @@ -166,8 +166,12 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) } var adminData = await _dbManager.GetAdminDataForAsync(e.UserId); + // New Frontiers - Session Respector - Checks that a player was connected before applying panic bunker/baby jail/no whitelist on low pop checks + // This code is licensed under AGPLv3. See AGPLv3.txt + var wasInGame = EntitySystem.TryGet(out var ticker) && + ticker.PlayerGameStatuses.ContainsKey(userId); // Frontier: remove status.JoinedGame check, TryGetValue(out var ticker) && - ticker.PlayerGameStatuses.TryGetValue(userId, out var status) && - status == PlayerGameStatus.JoinedGame; + // Frontier: wasInGame previously calculated here. var adminBypass = _cfg.GetCVar(CCVars.AdminBypassMaxPlayers) && adminData != null; if ((_plyMgr.PlayerCount >= _cfg.GetCVar(CCVars.SoftMaxPlayers) && !adminBypass) && !wasInGame) { return (ConnectionDenyReason.Full, Loc.GetString("soft-player-cap-full"), null); } - if (_cfg.GetCVar(CCVars.WhitelistEnabled)) + if (_cfg.GetCVar(CCVars.WhitelistEnabled) && !wasInGame) // Frontier: allow users who joined before panic bunker was enforced to reconnect { var min = _cfg.GetCVar(CCVars.WhitelistMinPlayers); var max = _cfg.GetCVar(CCVars.WhitelistMaxPlayers); @@ -247,6 +249,7 @@ private async Task NetMgrOnConnecting(NetConnectingArgs e) return (ConnectionDenyReason.Whitelist, msg, null); } } + // End of modified code //Frontier //This is our little chunk that serves as a dAuth. It takes in a comma seperated list of IP:PORT, and chekcs diff --git a/Content.Server/Forensics/Components/FiberComponent.cs b/Content.Server/Forensics/Components/FiberComponent.cs index 2086c958702..d2fc3a4bd90 100644 --- a/Content.Server/Forensics/Components/FiberComponent.cs +++ b/Content.Server/Forensics/Components/FiberComponent.cs @@ -12,5 +12,8 @@ public sealed partial class FiberComponent : Component [DataField] public string? FiberColor; + + [DataField] + public string? Fiberprint; // DeltaV, unique glove fibers } } diff --git a/Content.Server/Forensics/Systems/ForensicsSystem.cs b/Content.Server/Forensics/Systems/ForensicsSystem.cs index cd4e2edaeca..c653fbb0627 100644 --- a/Content.Server/Forensics/Systems/ForensicsSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicsSystem.cs @@ -26,6 +26,7 @@ public sealed class ForensicsSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnInteract); + SubscribeLocalEvent(OnFiberInit); // DeltaV #1455 - unique glove fibers SubscribeLocalEvent(OnFingerprintInit); SubscribeLocalEvent(OnDNAInit); @@ -44,6 +45,13 @@ private void OnInteract(EntityUid uid, FingerprintComponent component, ContactIn ApplyEvidence(uid, args.Other); } + // DeltaV #1455 - unique glove fibers + private void OnFiberInit(EntityUid uid, FiberComponent component, MapInitEvent args) + { + component.Fiberprint = GenerateFingerprint(length: 7); + } + // End of DeltaV code + private void OnFingerprintInit(EntityUid uid, FingerprintComponent component, MapInitEvent args) { component.Fingerprint = GenerateFingerprint(); @@ -203,9 +211,9 @@ private void OnCleanForensicsDoAfter(EntityUid uid, ForensicsComponent component targetComp.Residues.Add(string.IsNullOrEmpty(residue.ResidueColor) ? Loc.GetString("forensic-residue", ("adjective", residue.ResidueAdjective)) : Loc.GetString("forensic-residue-colored", ("color", residue.ResidueColor), ("adjective", residue.ResidueAdjective))); } - public string GenerateFingerprint() + public string GenerateFingerprint(int length = 16) // DeltaV #1455 - allow changing the length of the fingerprint hash { - var fingerprint = new byte[16]; + var fingerprint = new byte[length]; // DeltaV #1455 - allow changing the length of the fingerprint hash _random.NextBytes(fingerprint); return Convert.ToHexString(fingerprint); } @@ -231,8 +239,15 @@ private void ApplyEvidence(EntityUid user, EntityUid target) var component = EnsureComp(target); if (_inventory.TryGetSlotEntity(user, "gloves", out var gloves)) { + // DeltaV #1455 - unique glove fibers if (TryComp(gloves, out var fiber) && !string.IsNullOrEmpty(fiber.FiberMaterial)) - component.Fibers.Add(string.IsNullOrEmpty(fiber.FiberColor) ? Loc.GetString("forensic-fibers", ("material", fiber.FiberMaterial)) : Loc.GetString("forensic-fibers-colored", ("color", fiber.FiberColor), ("material", fiber.FiberMaterial))); + { + var fiberLocale = string.IsNullOrEmpty(fiber.FiberColor) + ? Loc.GetString("forensic-fibers", ("material", fiber.FiberMaterial)) + : Loc.GetString("forensic-fibers-colored", ("color", fiber.FiberColor), ("material", fiber.FiberMaterial)); + component.Fibers.Add(fiberLocale + " ; " + fiber.Fiberprint); + } + // End of DeltaV code if (HasComp(gloves)) return; diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs index bc7ffcfc51a..d76123e38e9 100644 --- a/Content.Server/Lathe/LatheSystem.cs +++ b/Content.Server/Lathe/LatheSystem.cs @@ -173,7 +173,7 @@ public bool TryAddToQueue(EntityUid uid, LatheRecipePrototype recipe, LatheCompo foreach (var (mat, amount) in recipe.RequiredMaterials) { var adjustedAmount = recipe.ApplyMaterialDiscount - ? (int) (-amount * component.MaterialUseMultiplier) + ? (int) (-amount * component.FinalMaterialUseMultiplier) // Frontier: MaterialUseMultiplier(uid); lathe.StartTime = _timing.CurTime; - lathe.ProductionLength = time * component.TimeMultiplier; + lathe.ProductionLength = time * component.FinalTimeMultiplier; // Frontier: TimeMultiplier @@ -362,22 +367,24 @@ private void OnLatheSyncRequestMessage(EntityUid uid, LatheComponent component, } #endregion - // Frontier: Restore machine part upgrades + + // New Frontiers - Lathe Upgrades - upgrading lathe speed through machine parts + // This code is licensed under AGPLv3. See AGPLv3.txt private void OnPartsRefresh(EntityUid uid, LatheComponent component, RefreshPartsEvent args) { var printTimeRating = args.PartRatings[component.MachinePartPrintSpeed]; var materialUseRating = args.PartRatings[component.MachinePartMaterialUse]; - component.TimeMultiplier = MathF.Pow(component.PartRatingPrintTimeMultiplier, printTimeRating - 1); - component.MaterialUseMultiplier = MathF.Pow(component.PartRatingMaterialUseMultiplier, materialUseRating - 1); + component.FinalTimeMultiplier = component.TimeMultiplier * MathF.Pow(component.PartRatingPrintTimeMultiplier, printTimeRating - 1); + component.FinalMaterialUseMultiplier = component.MaterialUseMultiplier * MathF.Pow(component.PartRatingMaterialUseMultiplier, materialUseRating - 1); Dirty(component); } private void OnUpgradeExamine(EntityUid uid, LatheComponent component, UpgradeExamineEvent args) { - args.AddPercentageUpgrade("lathe-component-upgrade-speed", 1 / component.TimeMultiplier); - args.AddPercentageUpgrade("lathe-component-upgrade-material-use", component.MaterialUseMultiplier); + args.AddPercentageUpgrade("lathe-component-upgrade-speed", 1 / component.FinalTimeMultiplier); + args.AddPercentageUpgrade("lathe-component-upgrade-material-use", component.FinalMaterialUseMultiplier); } - // End Frontier: restore machine part upgrades + // End of modified code } } diff --git a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs index 10ec54c8954..18f09341e91 100644 --- a/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs +++ b/Content.Server/NPC/Systems/NPCCombatSystem.Ranged.cs @@ -203,6 +203,7 @@ private void UpdateRanged(float frameTime) return; } + _gun.SetTarget(gun, comp.Target); // Frontier - This ensures that the bullet won't fly over the target if it's downed _gun.AttemptShoot(uid, gunUid, gun, targetCordinates); } } diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 1862b4e19f1..def8c09ee2d 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -292,6 +292,8 @@ private void OnDoAfter(Entity entity, ref ConsumeDoAfterEvent arg args.Repeat = !forceFeed; + _solutionContainer.SetCapacity(soln.Value, soln.Value.Comp.Solution.MaxVolume - transferAmount); // Frontier: remove food capacity after taking a bite. + if (TryComp(entity, out var stack)) { //Not deleting whole stack piece will make troubles with grinding object diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index 021467d6d97..7d55a98ad7a 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -62,6 +62,8 @@ private bool TrySliceFood(EntityUid uid, EntityUid user, EntityUid usedItem, var lostSolution = _solutionContainerSystem.SplitSolution(soln.Value, solution.Volume / FixedPoint2.New(component.Count)); + _solutionContainerSystem.SetCapacity(soln.Value, soln.Value.Comp.Solution.MaxVolume - solution.MaxVolume / FixedPoint2.New(component.Count)); // Frontier: remove food capacity after taking a slice. + // Fill new slice FillSlice(sliceUid, lostSolution); diff --git a/Content.Server/Nyanotrasen/Abilities/Oni/OniSystem.cs b/Content.Server/Nyanotrasen/Abilities/Oni/OniSystem.cs index 90bba75897b..c1557cd3bb1 100644 --- a/Content.Server/Nyanotrasen/Abilities/Oni/OniSystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Oni/OniSystem.cs @@ -3,8 +3,9 @@ using Content.Shared.Damage.Events; using Content.Shared.Weapons.Melee.Events; using Content.Shared.Weapons.Ranged.Components; -using Robust.Shared.Containers; using Content.Shared.Weapons.Ranged.Systems; +using Content.Shared.Wieldable.Components; +using Robust.Shared.Containers; namespace Content.Server.Abilities.Oni { @@ -32,8 +33,8 @@ private void OnEntInserted(EntityUid uid, OniComponent component, EntInsertedInt if (TryComp(args.Entity, out var gun)) { - // Frontier: adjust penalty for wielded malus - if (TryComp(args.Entity, out var bonus)) + // Frontier: adjust penalty for wielded malus (ensuring it's actually wieldable) + if (TryComp(args.Entity, out var bonus) && HasComp(args.Entity)) { //GunWieldBonus values are stored as negative. heldComp.minAngleAdded = (gun.MinAngle + bonus.MinAngle) * GunInaccuracyFactor; diff --git a/Content.Server/Shipyard/Components/ShipyardVoucherComponent.cs b/Content.Server/Shipyard/Components/ShipyardVoucherComponent.cs new file mode 100644 index 00000000000..d445ae2c61a --- /dev/null +++ b/Content.Server/Shipyard/Components/ShipyardVoucherComponent.cs @@ -0,0 +1,30 @@ +using Content.Shared.Access; +using Robust.Shared.Prototypes; + +namespace Content.Server.Shipyard.Components; + +[RegisterComponent, AutoGenerateComponentPause] +public sealed partial class ShipyardVoucherComponent : Component +{ + /// + /// Number of redeemable ships that this voucher can still be used for. Decremented on purchase. + /// + [DataField] + public uint RedemptionsLeft = 1; + + /// + /// If true, card will be destroyed when no redemptions are left. Checked at time of sale. + /// + [DataField] + public bool DestroyOnEmpty = false; + + /// + /// Access tags and groups for shipyard access. + /// + [DataField("access")] + public IReadOnlyCollection> Access { get; private set; } = Array.Empty>(); + + [DataField("accessGroups")] + public IReadOnlyCollection> AccessGroups { get; private set; } = Array.Empty>(); + +} diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index dc141963498..6da3088fda7 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -2,6 +2,7 @@ using Content.Server.Popups; using Content.Server.Radio.EntitySystems; using Content.Server.Bank; +using Content.Server.Shipyard.Components; using Content.Shared.Bank.Components; using Content.Shared.Shipyard.Events; using Content.Shared.Shipyard.BUI; @@ -12,7 +13,6 @@ using Content.Shared.Shipyard; using Robust.Server.GameObjects; using Robust.Shared.Containers; -using Robust.Shared.Player; using Robust.Shared.Prototypes; using Content.Shared.Radio; using System.Linq; @@ -21,7 +21,6 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Content.Server.Maps; -using Content.Server.UserInterface; using Content.Shared.StationRecords; using Content.Server.Chat.Systems; using Content.Server.Forensics; @@ -39,6 +38,7 @@ using Content.Shared.UserInterface; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; +using Content.Shared.Access; namespace Content.Server.Shipyard.Systems; @@ -60,6 +60,7 @@ public sealed partial class ShipyardSystem : SharedShipyardSystem [Dependency] private readonly IAdminLogManager _adminLogger = default!; [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly UserInterfaceSystem _userInterface = default!; + [Dependency] private readonly EntityManager _entityManager = default!; public void InitializeConsole() { @@ -78,7 +79,9 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component return; } - if (!TryComp(targetId, out var idCard)) + TryComp(targetId, out var idCard); + TryComp(targetId, out var voucher); + if (idCard is null && voucher is null) { ConsolePopup(args.Actor, Loc.GetString("shipyard-console-no-idcard")); PlayDenySound(uid, component); @@ -106,7 +109,7 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component return; } - if (!GetAvailableShuttles(uid).Contains(vessel.ID)) + if (!GetAvailableShuttles(uid, targetId: targetId).Contains(vessel.ID)) { PlayDenySound(uid, component); _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(player):player} tried to purchase a vessel that was never available."); @@ -131,20 +134,38 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component return; } - if (bank.Balance <= vessel.Price) + // Keep track of whether or not a voucher was used. + // TODO: voucher purchase should be done in a separate function. + bool voucherUsed = false; + if (voucher is not null) { - ConsolePopup(args.Actor, Loc.GetString("cargo-console-insufficient-funds", ("cost", vessel.Price))); - PlayDenySound(uid, component); - return; + if (voucher!.RedemptionsLeft <= 0) + { + ConsolePopup(args.Actor, Loc.GetString("shipyard-console-no-voucher-redemptions")); + PlayDenySound(uid, component); + return; + } + voucher.RedemptionsLeft--; + voucherUsed = true; } - - if (!_bank.TryBankWithdraw(player, vessel.Price)) + else { - ConsolePopup(args.Actor, Loc.GetString("cargo-console-insufficient-funds", ("cost", vessel.Price))); - PlayDenySound(uid, component); - return; + if (bank.Balance <= vessel.Price) + { + ConsolePopup(args.Actor, Loc.GetString("cargo-console-insufficient-funds", ("cost", vessel.Price))); + PlayDenySound(uid, component); + return; + } + + if (!_bank.TryBankWithdraw(player, vessel.Price)) + { + ConsolePopup(args.Actor, Loc.GetString("cargo-console-insufficient-funds", ("cost", vessel.Price))); + PlayDenySound(uid, component); + return; + } } + if (!TryPurchaseShuttle((EntityUid) station, vessel.ShuttlePath.ToString(), out var shuttle)) { PlayDenySound(uid, component); @@ -184,8 +205,11 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component var deedShuttle = EnsureComp(shuttle.Owner); AssignShuttleDeedProperties(deedShuttle, shuttle.Owner, name, player); - if (!string.IsNullOrEmpty(component.NewJobTitle)) - _idSystem.TryChangeJobTitle(targetId, component.NewJobTitle, idCard, player); + if (!voucherUsed) + { + if (!string.IsNullOrEmpty(component.NewJobTitle)) + _idSystem.TryChangeJobTitle(targetId, component.NewJobTitle, idCard, player); + } // The following block of code is entirely to do with trying to sanely handle moving records from station to station. // it is ass. @@ -228,18 +252,25 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component // EnsureComp(shuttle.Owner); Enable in the case we force this on every security ship int sellValue = 0; - if (TryComp(targetId, out var deed)) - sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); + if (!voucherUsed) + { + if (TryComp(targetId, out var deed)) + sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); - sellValue -= CalculateSalesTax(component, sellValue); + sellValue -= CalculateSalesTax(component, sellValue); + } SendPurchaseMessage(uid, player, name, component.ShipyardChannel, secret: false); if (component.SecretShipyardChannel is { } secretChannel) SendPurchaseMessage(uid, player, name, secretChannel, secret: true); PlayConfirmSound(uid, component); - _adminLogger.Add(LogType.ShipYardUsage, LogImpact.Low, $"{ToPrettyString(player):actor} purchased shuttle {ToPrettyString(shuttle.Owner)} for {vessel.Price} credits via {ToPrettyString(component.Owner)}"); - RefreshState(uid, bank.Balance, true, name, sellValue, true, (ShipyardConsoleUiKey) args.UiKey); + if (voucherUsed) + _adminLogger.Add(LogType.ShipYardUsage, LogImpact.Low, $"{ToPrettyString(player):actor} purchased shuttle {ToPrettyString(shuttle.Owner)} with a voucher via {ToPrettyString(component.Owner)}"); + else + _adminLogger.Add(LogType.ShipYardUsage, LogImpact.Low, $"{ToPrettyString(player):actor} purchased shuttle {ToPrettyString(shuttle.Owner)} for {vessel.Price} credits via {ToPrettyString(component.Owner)}"); + + RefreshState(uid, bank.Balance, true, name, sellValue, targetId, (ShipyardConsoleUiKey) args.UiKey, voucherUsed); } private void TryParseShuttleName(ShuttleDeedComponent deed, string name) @@ -266,13 +297,17 @@ public void OnSellMessage(EntityUid uid, ShipyardConsoleComponent component, Shi return; } - if (!TryComp(targetId, out var idCard)) + TryComp(targetId, out var idCard); + TryComp(targetId, out var voucher); + if (idCard is null && voucher is null) { ConsolePopup(args.Actor, Loc.GetString("shipyard-console-no-idcard")); PlayDenySound(uid, component); return; } + bool voucherUsed = voucher is not null; + if (!TryComp(targetId, out var deed) || deed.ShuttleUid is not { Valid: true } shuttleUid) { ConsolePopup(args.Actor, Loc.GetString("shipyard-console-no-deed")); @@ -331,29 +366,47 @@ public void OnSellMessage(EntityUid uid, ShipyardConsoleComponent component, Shi RemComp(targetId); - var tax = CalculateSalesTax(component, bill); - if (tax != 0) + if (!voucherUsed) { - var query = EntityQueryEnumerator(); - - while (query.MoveNext(out _, out var comp)) + var tax = CalculateSalesTax(component, bill); + if (tax != 0) { - _cargo.DeductFunds(comp, -tax); + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out _, out var comp)) + { + _cargo.DeductFunds(comp, -tax); + } + + bill -= tax; } - bill -= tax; + _bank.TryBankDeposit(player, bill); + PlayConfirmSound(uid, component); } - _bank.TryBankDeposit(player, bill); - PlayConfirmSound(uid, component); - var name = GetFullName(deed); SendSellMessage(uid, deed.ShuttleOwner!, name, component.ShipyardChannel, player, secret: false); if (component.SecretShipyardChannel is { } secretChannel) SendSellMessage(uid, deed.ShuttleOwner!, name, secretChannel, player, secret: true); - _adminLogger.Add(LogType.ShipYardUsage, LogImpact.Low, $"{ToPrettyString(player):actor} sold {shuttleName} for {bill} credits via {ToPrettyString(component.Owner)}"); - RefreshState(uid, bank.Balance, true, null, 0, true, (ShipyardConsoleUiKey) args.UiKey); + EntityUid? refreshId = targetId; + + if (voucherUsed) + { + _adminLogger.Add(LogType.ShipYardUsage, LogImpact.Low, $"{ToPrettyString(player):actor} sold {shuttleName} (purchased with voucher) via {ToPrettyString(component.Owner)}"); + + // No uses on the voucher left, destroy it. + if (voucher!.RedemptionsLeft <= 0 && voucher!.DestroyOnEmpty) + { + _entityManager.DeleteEntity(targetId); + refreshId = null; + } + } + else + _adminLogger.Add(LogType.ShipYardUsage, LogImpact.Low, $"{ToPrettyString(player):actor} sold {shuttleName} for {bill} credits via {ToPrettyString(component.Owner)}"); + + RefreshState(uid, bank.Balance, true, null, 0, refreshId, (ShipyardConsoleUiKey) args.UiKey, voucherUsed); } private void OnConsoleUIOpened(EntityUid uid, ShipyardConsoleComponent component, BoundUIOpenedEvent args) @@ -385,6 +438,8 @@ private void OnConsoleUIOpened(EntityUid uid, ShipyardConsoleComponent component } } + var voucherUsed = HasComp(targetId); + int sellValue = 0; if (deed?.ShuttleUid != null) sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); @@ -392,7 +447,7 @@ private void OnConsoleUIOpened(EntityUid uid, ShipyardConsoleComponent component sellValue -= CalculateSalesTax(component, sellValue); var fullName = deed != null ? GetFullName(deed) : null; - RefreshState(uid, bank.Balance, true, fullName, sellValue, targetId.HasValue, (ShipyardConsoleUiKey) args.UiKey); + RefreshState(uid, bank.Balance, true, fullName, sellValue, targetId, (ShipyardConsoleUiKey) args.UiKey, voucherUsed); } private void ConsolePopup(EntityUid uid, string text) @@ -475,6 +530,8 @@ private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component } } + var voucherUsed = HasComp(targetId); + int sellValue = 0; if (deed?.ShuttleUid != null) sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); @@ -482,7 +539,15 @@ private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component sellValue -= CalculateSalesTax(component, sellValue); var fullName = deed != null ? GetFullName(deed) : null; - RefreshState(uid, bank.Balance, true, fullName, sellValue, targetId.HasValue, (ShipyardConsoleUiKey) uiComp.Key); + RefreshState(uid, + bank.Balance, + true, + fullName, + sellValue, + targetId, + (ShipyardConsoleUiKey) uiComp.Key, + voucherUsed); + } } @@ -516,10 +581,17 @@ private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component return null; } + private struct IDShipAccesses + { + public IReadOnlyCollection> Tags; + public IReadOnlyCollection> Groups; + } + /// /// Returns all shuttle prototype IDs the given shipyard console can offer. /// - public List GetAvailableShuttles(EntityUid uid, ShipyardConsoleUiKey? key = null, ShipyardListingComponent? listing = null) + public List GetAvailableShuttles(EntityUid uid, ShipyardConsoleUiKey? key = null, + ShipyardListingComponent? listing = null, EntityUid? targetId = null) { var availableShuttles = new List(); @@ -536,42 +608,85 @@ public List GetAvailableShuttles(EntityUid uid, ShipyardConsoleUiKey? ke } } - // Add all prototypes matching the ui key - if (key != null && key != ShipyardConsoleUiKey.Custom && ShipyardGroupMapping.TryGetValue(key.Value, out var group)) + + // No listing provided, try to get the current one from the console being used as a default. + if (listing is null) + TryComp(uid, out listing); + + // Construct access set from input type (voucher or ID card) + IDShipAccesses accesses; + if (TryComp(targetId, out var voucher)) { - var protos = _prototypeManager.EnumeratePrototypes(); - foreach (var proto in protos) - { - if (proto.Group == group) - availableShuttles.Add(proto.ID); - } + accesses.Tags = voucher.Access; + accesses.Groups = voucher.AccessGroups; + } + else if (TryComp(targetId, out var accessComponent)) + { + accesses.Tags = accessComponent.Tags; + accesses.Groups = accessComponent.Groups; + } + else + { + accesses.Tags = new HashSet>(); + accesses.Groups = new HashSet>(); } - // Add all prototypes specified in ShipyardListing - if (listing != null || TryComp(uid, out listing)) + foreach (var vessel in _prototypeManager.EnumeratePrototypes()) { - foreach (var shuttle in listing.Shuttles) + // If the vessel needs access to be bought, check the user's access. + if (!string.IsNullOrEmpty(vessel.Access)) { - availableShuttles.Add(shuttle); + bool hasAccess = false; + // Check tags + if (accesses.Tags.Contains(vessel.Access)) + hasAccess = true; + + // Check each group if we haven't found access already. + if (!hasAccess) + { + foreach (var groupId in accesses.Groups) + { + var groupProto = _prototypeManager.Index(groupId); + if (groupProto?.Tags.Contains(vessel.Access) ?? false) + { + hasAccess = true; + break; + } + } + } + + // No access to this vessel, skip to the next one. + if (!hasAccess) + continue; + } + + // Check that the listing contains the shuttle or that the shuttle is in the group that the console is looking for + if ((listing?.Shuttles.Contains(vessel.ID) ?? false) || + // if the listing contains the shuttle, add it to the list or + + // if the shuttle is in the group that the console is looking for + (key != null && key != ShipyardConsoleUiKey.Custom && + ShipyardGroupMapping.TryGetValue(key.Value, out var group) && vessel.Group == group)) + { + availableShuttles.Add(vessel.ID); } } return availableShuttles; } - private void RefreshState(EntityUid uid, int balance, bool access, string? shipDeed, int shipSellValue, bool isTargetIdPresent, ShipyardConsoleUiKey uiKey) + private void RefreshState(EntityUid uid, int balance, bool access, string? shipDeed, int shipSellValue, EntityUid? targetId, ShipyardConsoleUiKey uiKey, bool freeListings) { - var listing = TryComp(uid, out var comp) ? comp : null; - var newState = new ShipyardConsoleInterfaceState( balance, access, shipDeed, shipSellValue, - isTargetIdPresent, + targetId.HasValue, ((byte)uiKey), - GetAvailableShuttles(uid, uiKey, listing), - uiKey.ToString()); + GetAvailableShuttles(uid, uiKey, targetId: targetId), + uiKey.ToString(), + freeListings); _ui.SetUiState(uid, uiKey, newState); } diff --git a/Content.Server/Shuttles/Components/ThrusterComponent.cs b/Content.Server/Shuttles/Components/ThrusterComponent.cs index d60a275f992..1f6a8e2b675 100644 --- a/Content.Server/Shuttles/Components/ThrusterComponent.cs +++ b/Content.Server/Shuttles/Components/ThrusterComponent.cs @@ -68,19 +68,10 @@ public sealed partial class ThrusterComponent : Component [DataField("partRatingThrustMultiplier")] public float PartRatingThrustMultiplier = 1.15f; // Frontier - PR #1292 1.5f<1.15f - [DataField("thrusterIgnoreEmp")] - public bool ThrusterIgnoreEmp = false; - /// - /// While disabled by EMP - /// - [DataField("timeoutFromEmp", customTypeSerializer: typeof(TimeOffsetSerializer))] - public TimeSpan TimeoutFromEmp = TimeSpan.Zero; - - /// Amount of charge this needs from an APC per second to function. + /// Frontier - Amount of charge this needs from an APC per second to function. /// - [DataField("originalPowerLoad")] - public float OriginalLoad = 0; + public float OriginalLoad { get; set; } = 0; } public enum ThrusterType diff --git a/Content.Server/Shuttles/Systems/ThrusterSystem.cs b/Content.Server/Shuttles/Systems/ThrusterSystem.cs index 224c63ced74..0ac3d0ca493 100644 --- a/Content.Server/Shuttles/Systems/ThrusterSystem.cs +++ b/Content.Server/Shuttles/Systems/ThrusterSystem.cs @@ -19,8 +19,6 @@ using Robust.Shared.Timing; using Robust.Shared.Utility; using Content.Server.Construction; // Frontier -using Content.Server.Popups; // Frontier -using Content.Server.Emp; // Frontier namespace Content.Server.Shuttles.Systems; @@ -58,7 +56,6 @@ public override void Initialize() SubscribeLocalEvent(OnRefreshParts); SubscribeLocalEvent(OnUpgradeExamine); - //SubscribeLocalEvent(OnEmpPulse); } private void OnThrusterExamine(EntityUid uid, ThrusterComponent component, ExaminedEvent args) @@ -286,13 +283,6 @@ public void EnableThruster(EntityUid uid, ThrusterComponent component, Transform return; } - // Frontier: Why? This does nothing. - if (TryComp(uid, out var apcPower)) - { - //apcPower.NeedsPower = true; - } - // End Frontier - component.IsOn = true; if (!EntityManager.TryGetComponent(xform.GridUid, out ShuttleComponent? shuttleComponent)) @@ -396,13 +386,6 @@ public void DisableThruster(EntityUid uid, ThrusterComponent component, EntityUi if (!EntityManager.TryGetComponent(gridId, out ShuttleComponent? shuttleComponent)) return; - // Frontier: Why? This does nothing. - if (TryComp(uid, out var apcPower)) - { - //apcPower.NeedsPower = false; - } - // End Frontier - // Logger.DebugS("thruster", $"Disabled thruster {uid}"); switch (component.Type) diff --git a/Content.Server/Station/Systems/StationSpawningSystem.cs b/Content.Server/Station/Systems/StationSpawningSystem.cs index 2e53ed04c8c..7dfda170c3c 100644 --- a/Content.Server/Station/Systems/StationSpawningSystem.cs +++ b/Content.Server/Station/Systems/StationSpawningSystem.cs @@ -54,6 +54,7 @@ public sealed class StationSpawningSystem : SharedStationSpawningSystem [Dependency] private readonly MetaDataSystem _metaSystem = default!; [Dependency] private readonly PdaSystem _pdaSystem = default!; [Dependency] private readonly SharedAccessSystem _accessSystem = default!; + [Dependency] private readonly IDependencyCollection _dependencyCollection = default!; // Frontier private bool _randomizeCharacters; @@ -211,6 +212,7 @@ public EntityUid SpawnPlayerMob( // Order loadout selections by the order they appear on the prototype. foreach (var group in loadout.SelectedLoadouts.OrderBy(x => roleProto.Groups.FindIndex(e => e == x.Key))) { + List> equippedItems = new(); //Frontier - track purchased items (list: few items) foreach (var items in group.Value) { if (!_prototypeManager.TryIndex(items.Prototype, out var loadoutProto)) @@ -228,12 +230,53 @@ public EntityUid SpawnPlayerMob( //Frontier - we handle bank stuff so we are wrapping each item spawn inside our own cached check. //This way, we will spawn every item we can afford in the order that they were originally sorted. - if (loadoutProto.Price < bankBalance) + if (loadoutProto.Price <= bankBalance) { bankBalance -= loadoutProto.Price; EquipStartingGear(entity.Value, startingGear, raiseEvent: false); + equippedItems.Add(loadoutProto.ID); } } + + // New Frontiers - Loadout Fallbacks - if a character cannot afford their current job loadout, ensure they have fallback items for mandatory categories. + // This code is licensed under AGPLv3. See AGPLv3.txt + if (_prototypeManager.TryIndex(group.Key, out var groupPrototype) && + equippedItems.Count < groupPrototype.MinLimit) + { + foreach (var fallback in groupPrototype.Fallbacks) + { + // Do not duplicate items in loadout + if (equippedItems.Contains(fallback)) + { + continue; + } + + if (!_prototypeManager.TryIndex(fallback, out var loadoutProto)) + { + Log.Error($"Unable to find loadout prototype for fallback {fallback}"); + continue; + } + + // Validate effects against the current character. + if (!loadout.IsValid(profile!, _actors.GetSession(entity!), fallback, _dependencyCollection, out var _)) + { + continue; + } + + if (!_prototypeManager.TryIndex(loadoutProto.Equipment, out var startingGear)) + { + Log.Error($"Unable to find starting gear {loadoutProto.Equipment} for fallback loadout {loadoutProto}"); + continue; + } + + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); + equippedItems.Add(fallback); + // Minimum number of items equipped, no need to load more prototypes. + if (equippedItems.Count >= groupPrototype.MinLimit) + break; + } + } + // End of modified code. } // Frontier: do not re-equip roleLoadout. diff --git a/Content.Server/StationEvents/Events/BluespaceErrorRule.cs b/Content.Server/StationEvents/Events/BluespaceErrorRule.cs index e924b7ac83a..e39d09d7d33 100644 --- a/Content.Server/StationEvents/Events/BluespaceErrorRule.cs +++ b/Content.Server/StationEvents/Events/BluespaceErrorRule.cs @@ -11,6 +11,7 @@ using Content.Shared.Humanoid; using Content.Shared.Mobs.Components; using Robust.Shared.Random; +using Content.Server._NF.Salvage; namespace Content.Server.StationEvents.Events; @@ -75,6 +76,17 @@ protected override void Ended(EntityUid uid, BluespaceErrorRuleComponent compone var gridValue = _pricing.AppraiseGrid(gridUid, null); + // Handle mobrestrictions getting deleted + var query = AllEntityQuery(); + + while (query.MoveNext(out var salvUid, out var salvMob)) + { + if (gridTransform.GridUid == salvMob.LinkedGridEntity) + { + QueueDel(salvUid); + } + } + var mobQuery = AllEntityQuery(); _playerMobs.Clear(); @@ -96,8 +108,8 @@ protected override void Ended(EntityUid uid, BluespaceErrorRuleComponent compone _transform.SetCoordinates(mob.Entity.Owner, new EntityCoordinates(mob.MapUid, mob.LocalPosition)); } - var query = EntityQuery(); - foreach (var account in query) + var queryBank = EntityQuery(); + foreach (var account in queryBank) { _cargo.DeductFunds(account, (int)-(gridValue * component.RewardFactor)); } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.AutoFire.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.AutoFire.cs index 39cd2486ed7..cdf56ead37f 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.AutoFire.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.AutoFire.cs @@ -1,4 +1,8 @@ using Content.Shared.Weapons.Ranged.Components; +using Content.Server.Power.Components; // Frontier +using Content.Server.Power.EntitySystems; // Frontier +using Content.Shared.Interaction; // Frontier +using Content.Shared.Examine; // Frontier namespace Content.Server.Weapons.Ranged.Systems; @@ -26,4 +30,111 @@ public override void Update(float frameTime) AttemptShoot(uid, gun); } } + + // New Frontiers - Shuttle Gun Power Draw - makes shuttle guns require power if they + // have an ApcPowerReceiverComponent + // This code is licensed under AGPLv3. See AGPLv3.txt + private void OnGunExamine(EntityUid uid, AutoShootGunComponent component, ExaminedEvent args) + { + if (!HasComp(uid)) + return; + + // Powered is already handled by other power components + var enabled = Loc.GetString(component.On ? "gun-comp-enabled" : "gun-comp-disabled"); + + args.PushMarkup(enabled); + } + + private void OnActivateGun(EntityUid uid, AutoShootGunComponent component, ActivateInWorldEvent args) + { + if (args.Handled || !args.Complex) + return; + + component.On ^= true; + + if (!component.On) + { + if (TryComp(uid, out var apcPower) && component.OriginalLoad != 0) + apcPower.Load = 1; + + DisableGun(uid, component); + args.Handled = true; + } + else if (CanEnable(uid, component)) + { + if (TryComp(uid, out var apcPower) && component.OriginalLoad != apcPower.Load) + apcPower.Load = component.OriginalLoad; + + EnableGun(uid, component); + args.Handled = true; + } + } + + /// + /// Tries to disable the AutoShootGun. + /// + public void DisableGun(EntityUid uid, AutoShootGunComponent component) + { + if (component.CanFire) + component.CanFire = false; + } + + public bool CanEnable(EntityUid uid, AutoShootGunComponent component) + { + var xform = Transform(uid); + + // Must be anchored to fire. + if (!xform.Anchored) + return false; + + // No power needed? Always works. + if (!HasComp(uid)) + return true; + + // Not switched on? Won't work. + if (!component.On) + return false; + + return this.IsPowered(uid, EntityManager); + } + + public void EnableGun(EntityUid uid, AutoShootGunComponent component, TransformComponent? xform = null) + { + if (!component.CanFire) + component.CanFire = true; + } + + private void OnAnchorChange(EntityUid uid, AutoShootGunComponent component, ref AnchorStateChangedEvent args) + { + if (args.Anchored && CanEnable(uid, component)) + EnableGun(uid, component); + else + DisableGun(uid, component); + } + + private void OnGunInit(EntityUid uid, AutoShootGunComponent component, ComponentInit args) + { + if (TryComp(uid, out var apcPower) && component.OriginalLoad == 0) + component.OriginalLoad = apcPower.Load; + + if (!component.On) + return; + + if (CanEnable(uid, component)) + EnableGun(uid, component); + } + + private void OnGunShutdown(EntityUid uid, AutoShootGunComponent component, ComponentShutdown args) + { + DisableGun(uid, component); + } + + private void OnPowerChange(EntityUid uid, AutoShootGunComponent component, ref PowerChangedEvent args) + { + if (args.Powered && CanEnable(uid, component)) + EnableGun(uid, component); + else + DisableGun(uid, component); + } + // End of modified code } diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index 7f7c7ba8557..404a0b01202 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -24,6 +24,9 @@ using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using Content.Shared.Interaction; // Frontier +using Content.Shared.Examine; // Frontier +using Content.Server.Power.Components; // Frontier namespace Content.Server.Weapons.Ranged.Systems; @@ -46,6 +49,12 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnBallisticPrice); + SubscribeLocalEvent(OnActivateGun); // Frontier + SubscribeLocalEvent(OnGunInit); // Frontier + SubscribeLocalEvent(OnGunShutdown); // Frontier + SubscribeLocalEvent(OnGunExamine); // Frontier + SubscribeLocalEvent(OnPowerChange); // Frontier + SubscribeLocalEvent(OnAnchorChange); // Frontier } private void OnBallisticPrice(EntityUid uid, BallisticAmmoProviderComponent component, ref PriceCalculationEvent args) diff --git a/Content.Server/_NF/Bank/ATMSystem.cs b/Content.Server/_NF/Bank/ATMSystem.cs index e1c08c35a02..2017cfe811f 100644 --- a/Content.Server/_NF/Bank/ATMSystem.cs +++ b/Content.Server/_NF/Bank/ATMSystem.cs @@ -1,3 +1,8 @@ +/* + * New Frontiers - This file is licensed under AGPLv3 + * Copyright (c) 2024 New Frontiers Contributors + * See AGPLv3.txt for details. + */ using Content.Server.Popups; using Content.Server.Stack; using Content.Shared.Bank; @@ -229,13 +234,19 @@ private void GetInsertedCashAmount(BankATMComponent component, out int amount) { amount = 0; var cashEntity = component.CashSlot.ContainerSlot?.ContainedEntity; + // Nothing inserted: amount should be 0. + if (cashEntity is null) + return; + // Invalid item inserted (doubloons, FUC, telecrystals...): amount should be negative (to denote an error) if (!TryComp(cashEntity, out var cashStack) || cashStack.StackTypeId != component.CashType) { + amount = -1; return; } + // Valid amount: output the stack's value. amount = cashStack.Count; return; } diff --git a/Content.Server/_NF/Bank/StationATMSystem.cs b/Content.Server/_NF/Bank/StationATMSystem.cs index 31c4ffe30b7..2b0e3980d4e 100644 --- a/Content.Server/_NF/Bank/StationATMSystem.cs +++ b/Content.Server/_NF/Bank/StationATMSystem.cs @@ -1,3 +1,8 @@ +/* + * New Frontiers - This file is licensed under AGPLv3 + * Copyright (c) 2024 New Frontiers Contributors + * See AGPLv3.txt for details. + */ using Content.Shared.Bank; using Content.Shared.Bank.Components; using Content.Shared.Bank.Events; @@ -249,12 +254,19 @@ private void GetInsertedCashAmount(StationBankATMComponent component, out int am amount = 0; var cashEntity = component.CashSlot.ContainerSlot?.ContainedEntity; + // Nothing inserted: amount should be 0. + if (cashEntity == null) + return; + + // Invalid item inserted (doubloons, FUC, telecrystals...): amount should be negative (to denote an error) if (!TryComp(cashEntity, out var cashStack) || cashStack.StackTypeId != component.CashType) { + amount = -1; return; } + // Valid amount: output the stack's value. amount = cashStack.Count; return; } diff --git a/Content.Server/_NF/Construction/Components/PartExchangerSystem.cs b/Content.Server/_NF/Construction/Components/PartExchangerSystem.cs index 531b3bc5227..fd1c74a992e 100644 --- a/Content.Server/_NF/Construction/Components/PartExchangerSystem.cs +++ b/Content.Server/_NF/Construction/Components/PartExchangerSystem.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Server._NF.Construction.Components; using Content.Server.Construction; using Content.Server.Construction.Components; @@ -13,7 +12,6 @@ using Robust.Shared.Containers; using Robust.Shared.Utility; using Content.Shared.Wires; -using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Collections; using Robust.Shared.Prototypes; @@ -40,6 +38,13 @@ public override void Initialize() SubscribeLocalEvent(OnDoAfter); } + private struct UpgradePartState + { + public MachinePartComponent Part; + public StackComponent? Stack; + public bool InContainer; + } + private void OnDoAfter(EntityUid uid, PartExchangerComponent component, DoAfterEvent args) { if (args.Cancelled) @@ -52,40 +57,39 @@ private void OnDoAfter(EntityUid uid, PartExchangerComponent component, DoAfterE return; if (!TryComp(uid, out var storage) || storage.Container == null) - return; //the parts are stored in here + return; - var machinePartQuery = GetEntityQuery(); - var stackQuery = GetEntityQuery(); - var partsByType = new Dictionary, List<(EntityUid, MachinePartState)>>(); + var partsByType = new Dictionary, List<(EntityUid, UpgradePartState)>>(); - foreach (var item in storage.Container.ContainedEntities) //get parts in RPED + // Insert the contained parts into a dictionary for indexing. + // Note: these parts remain in the starting container. + foreach (var item in storage.Container.ContainedEntities) { - if (machinePartQuery.TryGetComponent(item, out var part)) + if (_construction.GetMachinePartState(item, out var partState)) { - MachinePartState partState = new MachinePartState - { - Part = part - }; - stackQuery.TryGetComponent(item, out partState.Stack); - if (!partsByType.ContainsKey(part.PartType)) - partsByType[part.PartType] = new List<(EntityUid, MachinePartState)>(); - partsByType[part.PartType].Add((item, partState)); + UpgradePartState upgrade; + upgrade.Part = partState.Part; + upgrade.Stack = partState.Stack; + upgrade.InContainer = true; + + var partType = upgrade.Part.PartType; + if (!partsByType.ContainsKey(partType)) + partsByType[partType] = new List<(EntityUid, UpgradePartState)>(); + partsByType[partType].Add((item, upgrade)); } } - TryExchangeMachineParts(args.Args.Target.Value, uid, partsByType); - TryConstructMachineParts(args.Args.Target.Value, uid, partsByType); + // Exchange machine parts with the machine or frame. + if (TryComp(args.Args.Target.Value, out var machine)) + TryExchangeMachineParts(machine, args.Args.Target.Value, uid, partsByType); + else if (TryComp(args.Args.Target.Value, out var machineFrame)) + TryConstructMachineParts(machineFrame, args.Args.Target.Value, uid, partsByType); args.Handled = true; } - private void TryExchangeMachineParts(EntityUid uid, EntityUid storageUid, Dictionary, List<(EntityUid part, MachinePartState state)>> partsByType) + private void TryExchangeMachineParts(MachineComponent machine, EntityUid uid, EntityUid storageUid, Dictionary, List<(EntityUid part, UpgradePartState state)>> partsByType) { - if (!TryComp(uid, out var machine)) - return; - - var machinePartQuery = GetEntityQuery(); - var stackQuery = GetEntityQuery(); var board = machine.BoardContainer.ContainedEntities.FirstOrNull(); if (board == null || !TryComp(board, out var macBoardComp)) @@ -94,98 +98,108 @@ private void TryExchangeMachineParts(EntityUid uid, EntityUid storageUid, Dictio // Add all components in the machine to form a complete set of available components. foreach (var item in new ValueList(machine.PartContainer.ContainedEntities)) //clone so don't modify during enumeration { - if (machinePartQuery.TryGetComponent(item, out var part)) + if (_construction.GetMachinePartState(item, out var partState)) { - MachinePartState partState = new MachinePartState - { - Part = part - }; - stackQuery.TryGetComponent(item, out partState.Stack); + UpgradePartState upgrade; + upgrade.Part = partState.Part; + upgrade.Stack = partState.Stack; + upgrade.InContainer = false; - if (!partsByType.ContainsKey(part.PartType)) - partsByType[part.PartType] = new List<(EntityUid, MachinePartState)>(); - partsByType[part.PartType].Add((item, partState)); + var partType = upgrade.Part.PartType; + if (!partsByType.ContainsKey(partType)) + partsByType[partType] = new List<(EntityUid, UpgradePartState)>(); + partsByType[partType].Add((item, upgrade)); _container.RemoveEntity(uid, item); } } - foreach (var partList in partsByType.Values) + // Sort by rating in descending order (highest rated parts first) + foreach (var (partKey, partList) in partsByType) partList.Sort((x, y) => y.state.Part.Rating.CompareTo(x.state.Part.Rating)); - var updatedParts = new List<(EntityUid id, MachinePartState state)>(); + var updatedParts = new List<(EntityUid id, MachinePartState state, int index)>(); foreach (var (type, amount) in macBoardComp.Requirements) { if (partsByType.ContainsKey(type)) { var partsNeeded = amount; + int index = 0; foreach ((var part, var state) in partsByType[type]) { // No more space for components if (partsNeeded <= 0) break; - // This part is stackable - either split off what we need, or add it entirely to the set to be moved. if (state.Stack is not null) { var count = state.Stack.Count; + // Entire stack is needed, add it to the things to bring over. if (count <= partsNeeded) { - updatedParts.Add((part, state)); + MachinePartState partState; + partState.Part = state.Part; + partState.Stack = state.Stack; + + updatedParts.Add((part, partState, index)); partsNeeded -= count; } else { + // Partial stack is needed, split off what we need, ensure the new entry is moved. EntityUid splitStack = _stack.Split(part, partsNeeded, Transform(uid).Coordinates, state.Stack) ?? EntityUid.Invalid; - // TODO: better error handling? Why would this fail? if (splitStack == EntityUid.Invalid) continue; // Create a new MachinePartState out of our new entity - MachinePartState splitState = new MachinePartState(); - if (TryComp(splitStack, out MachinePartComponent? splitPart) && splitPart is not null) // Nullable type - fix this. - splitState.Part = splitPart; - TryComp(splitStack, out splitState.Stack); - - updatedParts.Add((splitStack, splitState)); - partsNeeded = 0; + if (_construction.GetMachinePartState(splitStack, out var splitState)) + { + updatedParts.Add((splitStack, splitState, -1)); // Use -1 for index, nothing to remove + partsNeeded = 0; + } } } else { - updatedParts.Add((part, state)); + // Not a stack, move the single part. + MachinePartState partState; + partState.Part = state.Part; + partState.Stack = state.Stack; + + updatedParts.Add((part, partState, index)); partsNeeded--; } + // Adjust the index for parts being removed from the container. + index++; } } } - foreach (var part in updatedParts) + // Move selected parts to the machine, removing them from the dictionary of contained parts. + // Iterate through list backwards, remove later entries first (maintain validity of earlier indices). + for (int i = updatedParts.Count - 1; i >= 0; i--) { - _container.Insert(part.id, machine.PartContainer); - partsByType[part.state.Part.PartType].Remove(part); + var part = updatedParts[i]; + bool inserted = _container.Insert(part.id, machine.PartContainer); + if (part.index >= 0) + partsByType[part.state.Part.PartType].RemoveAt(part.index); } - //put the unused parts back into rped. (this also does the "swapping") - //NOTE: this may destroy removed parts if there is not enough space in the RPED (due to stacking issues) - foreach (var partSet in partsByType.Values) + //Put the unused parts back into the container (if they aren't already there) + foreach (var (partType, partSet) in partsByType) { foreach (var partState in partSet) { - _storage.Insert(storageUid, partState.part, out _, playSound: false); + if (!partState.state.InContainer) + _storage.Insert(storageUid, partState.part, out _, playSound: false); } } _construction.RefreshParts(uid, machine); } - private void TryConstructMachineParts(EntityUid uid, EntityUid storageEnt, Dictionary, List<(EntityUid part, MachinePartState state)>> partsByType) + private void TryConstructMachineParts(MachineFrameComponent machine, EntityUid uid, EntityUid storageEnt, Dictionary, List<(EntityUid part, UpgradePartState state)>> partsByType) { - if (!TryComp(uid, out var machine)) - return; - - var machinePartQuery = GetEntityQuery(); - var stackQuery = GetEntityQuery(); var board = machine.BoardContainer.ContainedEntities.FirstOrNull(); if (!machine.HasBoard || !TryComp(board, out var macBoardComp)) @@ -194,90 +208,108 @@ private void TryConstructMachineParts(EntityUid uid, EntityUid storageEnt, Dicti // Add all components in the machine to form a complete set of available components. foreach (var item in new ValueList(machine.PartContainer.ContainedEntities)) //clone so don't modify during enumeration { - if (machinePartQuery.TryGetComponent(item, out var part)) + if (_construction.GetMachinePartState(item, out var partState)) { - MachinePartState partState = new MachinePartState - { - Part = part - }; - stackQuery.TryGetComponent(item, out partState.Stack); - - if (!partsByType.ContainsKey(part.PartType)) - partsByType[part.PartType] = new List<(EntityUid, MachinePartState)>(); - partsByType[part.PartType].Add((item, partState)); - - machine.Progress[part.PartType] -= partState.Quantity(); - machine.Progress[part.PartType] = int.Max(0, machine.Progress[part.PartType]); // Ensure progress isn't negative. + // Construct our entry + UpgradePartState upgrade; + upgrade.Part = partState.Part; + upgrade.Stack = partState.Stack; + upgrade.InContainer = false; + + // Add it to the table + var partType = upgrade.Part.PartType; + if (!partsByType.ContainsKey(partType)) + partsByType[partType] = new List<(EntityUid, UpgradePartState)>(); + partsByType[partType].Add((item, upgrade)); + + // Make sure the construction status is consistent with the removed parts. + machine.Progress[partType] -= partState.Quantity(); + machine.Progress[partType] = int.Max(0, machine.Progress[partType]); // Ensure progress isn't negative. _container.RemoveEntity(uid, item); } } + // Sort parts in descending order of rating (highest rated parts first) foreach (var partList in partsByType.Values) partList.Sort((x, y) => y.state.Part.Rating.CompareTo(x.state.Part.Rating)); - var updatedParts = new List<(EntityUid id, MachinePartState state)>(); + var updatedParts = new List<(EntityUid id, MachinePartState state, int index)>(); foreach (var (type, amount) in macBoardComp.Requirements) { if (partsByType.ContainsKey(type)) { var partsNeeded = amount; + var index = 0; foreach ((var part, var state) in partsByType[type]) { // No more space for components if (partsNeeded <= 0) break; - // This part is stackable - either split off what we need, or add it entirely to the set to be moved. if (state.Stack is not null) { var count = state.Stack.Count; + // Entire stack is needed, add it to the things to bring over. if (count <= partsNeeded) { - updatedParts.Add((part, state)); + MachinePartState partState; + partState.Part = state.Part; + partState.Stack = state.Stack; + + updatedParts.Add((part, partState, index)); partsNeeded -= count; } else { + // Partial stack is needed, split off what we need, ensure the new entry is moved. EntityUid splitStack = _stack.Split(part, partsNeeded, Transform(uid).Coordinates, state.Stack) ?? EntityUid.Invalid; - // TODO: better error handling? Why would this fail? if (splitStack == EntityUid.Invalid) continue; // Create a new MachinePartState out of our new entity - MachinePartState splitState = new MachinePartState(); - if (TryComp(splitStack, out MachinePartComponent? splitPart) && splitPart is not null) // Nullable type - fix this. - splitState.Part = splitPart; - TryComp(splitStack, out splitState.Stack); - - updatedParts.Add((splitStack, splitState)); - partsNeeded = 0; + if (_construction.GetMachinePartState(splitStack, out var splitState)) + { + updatedParts.Add((splitStack, splitState, -1)); // New entity, nothing to remove, set index to -1 to flag this. + partsNeeded = 0; + } } } else { - updatedParts.Add((part, state)); + // Not a stack, move the single part. + MachinePartState partState; + partState.Part = state.Part; + partState.Stack = state.Stack; + + updatedParts.Add((part, partState, index)); partsNeeded--; } + // Adjust the index for parts being removed from the container. + index++; } } } - foreach (var element in updatedParts) + // Move selected parts to the machine, removing them from the dictionary of contained parts. + // Iterate through list backwards, remove later entries first (maintain validity of earlier indices). + for (int i = updatedParts.Count - 1; i >= 0; i--) { - _container.Insert(element.id, machine.PartContainer); - partsByType[element.state.Part.PartType].Remove(element); // Frontier: - machine.Progress[element.state.Part.PartType] += element.state.Quantity(); + var part = updatedParts[i]; + _container.Insert(part.id, machine.PartContainer, force: true); + if (part.index >= 0) + partsByType[part.state.Part.PartType].RemoveAt(part.index); + machine.Progress[part.state.Part.PartType] += part.state.Quantity(); } - //put the unused parts back into rped. (this also does the "swapping") - //NOTE: this may destroy removed parts if there is not enough space in the RPED (due to stacking issues) - foreach (var partSet in partsByType.Values) + //Put the unused parts back into the container (if they aren't already there) + foreach (var (partType, partSet) in partsByType) { foreach (var partState in partSet) { - _storage.Insert(storageEnt, partState.part, out _, playSound: false); + if (!partState.state.InContainer) + _storage.Insert(uid, partState.part, out _, playSound: false); } } } diff --git a/Content.Server/_NF/Construction/ConstructionSystem.Machine.Upgrades.cs b/Content.Server/_NF/Construction/ConstructionSystem.Machine.Upgrades.cs index 902c75bd3c5..08dc8a4cb40 100644 --- a/Content.Server/_NF/Construction/ConstructionSystem.Machine.Upgrades.cs +++ b/Content.Server/_NF/Construction/ConstructionSystem.Machine.Upgrades.cs @@ -77,21 +77,26 @@ public List GetAllParts(MachineComponent component) foreach (var entity in component.PartContainer.ContainedEntities) { - if (TryComp(entity, out var machinePart)) - { - var partState = new MachinePartState - { - Part = machinePart - }; - TryComp(entity, out partState.Stack); - + if (GetMachinePartState(entity, out var partState)) parts.Add(partState); - } } return parts; } + public bool GetMachinePartState(EntityUid uid, out MachinePartState state) + { + state = new MachinePartState(); + MachinePartComponent? part; + if (TryComp(uid, out part) && part is not null) + state.Part = part; + else + return false; + + TryComp(uid, out state.Stack); + return true; + } + public Dictionary GetPartsRatings(List partStates) { var output = new Dictionary(); diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 7b06122670d..9376457f075 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -3,6 +3,8 @@ using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; +using Robust.Shared.Prototypes; namespace Content.Shared.Access.Components; @@ -46,6 +48,7 @@ public WriteToTargetIdMessage(string fullName, string jobTitle, List [DataField("price", required: true)] public double Price; + + /// + /// Frontier - The price of the object this component is on when buying from a vending machine. + /// + [DataField] + public double VendPrice; } diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs index 76b7b9aa66d..cbc7cf724ca 100644 --- a/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FactionClothingSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Inventory.Events; using Content.Shared.NPC.Components; using Content.Shared.NPC.Systems; +using Robust.Shared.Player; // Frontier - Dont edit AI factions namespace Content.Shared.Clothing.EntitySystems; @@ -22,6 +23,9 @@ public override void Initialize() private void OnEquipped(Entity ent, ref GotEquippedEvent args) { + if (!HasComp(args.Equipee)) // Frontier - Dont edit AI factions + return; // Frontier - Dont edit AI factions + TryComp(args.Equipee, out var factionComp); var faction = (args.Equipee, factionComp); ent.Comp.AlreadyMember = _faction.IsMember(faction, ent.Comp.Faction); @@ -31,6 +35,9 @@ private void OnEquipped(Entity ent, ref GotEquippedEve private void OnUnequipped(Entity ent, ref GotUnequippedEvent args) { + if (!HasComp(args.Equipee)) // Frontier - Dont edit AI factions + return; // Frontier - Dont edit AI factions + if (ent.Comp.AlreadyMember) { ent.Comp.AlreadyMember = false; diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs index 3d5096e0051..d396a6b8463 100644 --- a/Content.Shared/Lathe/LatheComponent.cs +++ b/Content.Shared/Lathe/LatheComponent.cs @@ -60,8 +60,19 @@ public sealed partial class LatheComponent : Component [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public float MaterialUseMultiplier = 1; + /// + /// A modifier that changes how long it takes to print a recipe + /// + [DataField, ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] + public float FinalTimeMultiplier = 1; + + /// + /// A modifier that changes how much of a material is needed to print a recipe + /// + [DataField, ViewVariables(VVAccess.ReadOnly), AutoNetworkedField] + public float FinalMaterialUseMultiplier = 1; + public const float DefaultPartRatingMaterialUseMultiplier = 0.85f; // Frontier: restored for machine parts - #endregion //Frontier Upgrade Code Restore /// @@ -89,6 +100,7 @@ public sealed partial class LatheComponent : Component [DataField] public float PartRatingMaterialUseMultiplier = DefaultPartRatingMaterialUseMultiplier; // End Frontier + #endregion } public sealed class LatheGetRecipesEvent : EntityEventArgs diff --git a/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs b/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs index 0c787e965f1..d8e89cfd1a1 100644 --- a/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs +++ b/Content.Shared/Preferences/Loadouts/LoadoutGroupPrototype.cs @@ -37,4 +37,12 @@ public sealed partial class LoadoutGroupPrototype : IPrototype [DataField(required: true)] public List> Loadouts = new(); + + // Frontier: handle unaffordable loadouts + /// + /// Fallback loadouts to be selected in case a character cannot afford them. + /// + [DataField] + public List> Fallbacks = new(); + // End Frontier } diff --git a/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs b/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs index b1072735618..33d61243421 100644 --- a/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs +++ b/Content.Shared/Shipyard/BUI/ShipyardConsoleInterfaceState.cs @@ -14,6 +14,7 @@ public sealed class ShipyardConsoleInterfaceState : BoundUserInterfaceState public readonly List ShipyardPrototypes; public readonly string ShipyardName; + public readonly bool FreeListings; public ShipyardConsoleInterfaceState( int balance, @@ -23,7 +24,8 @@ public ShipyardConsoleInterfaceState( bool isTargetIdPresent, byte uiKey, List shipyardPrototypes, - string shipyardName) + string shipyardName, + bool freeListings) { Balance = balance; AccessGranted = accessGranted; @@ -33,5 +35,6 @@ public ShipyardConsoleInterfaceState( UiKey = uiKey; ShipyardPrototypes = shipyardPrototypes; ShipyardName = shipyardName; + FreeListings = freeListings; } } diff --git a/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs b/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs index c025c9feacc..8d206199d2e 100644 --- a/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs +++ b/Content.Shared/Shipyard/Prototypes/VesselPrototype.cs @@ -1,3 +1,4 @@ +using Content.Shared.Store; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -39,6 +40,12 @@ public sealed class VesselPrototype : IPrototype [DataField("group")] public string Group = string.Empty; + /// + /// The access required to buy the product. (e.g. Command, Mail, Bailiff, etc.) + /// + [DataField("access")] + public string Access = string.Empty; + /// Frontier - Add this field for the MapChecker script. /// /// The MapChecker override group for this vessel. @@ -51,4 +58,5 @@ public sealed class VesselPrototype : IPrototype /// [DataField("shuttlePath", required: true)] public ResPath ShuttlePath = default!; + } diff --git a/Content.Shared/Weapons/Ranged/Components/AutoShootGunComponent.cs b/Content.Shared/Weapons/Ranged/Components/AutoShootGunComponent.cs index 16b3110b85a..d7c4012f462 100644 --- a/Content.Shared/Weapons/Ranged/Components/AutoShootGunComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/AutoShootGunComponent.cs @@ -11,4 +11,21 @@ public sealed partial class AutoShootGunComponent : Component { [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] public bool Enabled; + + /// + /// Frontier - Whether the gun is switched on (e.g. through user interaction) + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool On { get; set; } = true; + + /// + /// Frontier - Whether or not the gun can actually fire (i.e. switched on and receiving power if needed) + /// + [ViewVariables(VVAccess.ReadWrite)] + public bool CanFire; + + /// + /// Frontier - Amount of power this gun needs from an APC in Watts to function. + /// + public float OriginalLoad { get; set; } = 0; } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs index 70cc2dcb40d..75aa3ab5027 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -205,6 +205,14 @@ private void StopShooting(EntityUid uid, GunComponent gun) Dirty(uid, gun); } + /// + /// Frontier - Sets the targeted entity of the gun. Should be called before attempting to shoot to avoid shooting over the target. + /// + public void SetTarget(GunComponent gun, EntityUid target) + { + gun.Target = target; + } + /// /// Attempts to shoot at the target coordinates. Resets the shot counter after every shot. /// @@ -228,6 +236,9 @@ public void AttemptShoot(EntityUid gunUid, GunComponent gun) private void AttemptShoot(EntityUid user, EntityUid gunUid, GunComponent gun) { + if (TryComp(gunUid, out var auto) && !auto.CanFire) // Frontier + return; // Frontier + if (gun.FireRateModified <= 0f || !_actionBlockerSystem.CanAttack(user)) return; diff --git a/Content.Shared/_NF/Bank/BUI/StationBankATMMenuInterfaceState.cs b/Content.Shared/_NF/Bank/BUI/StationBankATMMenuInterfaceState.cs index a5dde050bc7..9fe203f6896 100644 --- a/Content.Shared/_NF/Bank/BUI/StationBankATMMenuInterfaceState.cs +++ b/Content.Shared/_NF/Bank/BUI/StationBankATMMenuInterfaceState.cs @@ -1,3 +1,8 @@ +/* + * New Frontiers - This file is licensed under AGPLv3 + * Copyright (c) 2024 New Frontiers Contributors + * See AGPLv3.txt for details. + */ using Robust.Shared.Serialization; namespace Content.Shared.Bank.BUI; @@ -16,7 +21,7 @@ public sealed class StationBankATMMenuInterfaceState : BoundUserInterfaceState public bool Enabled; /// - /// how much cash is inserted + /// how much cash is inserted (negative values indicate that this is not valid money) /// public int Deposit; diff --git a/Content.Shared/_NF/Cargo/Components/VendPriceComponent.cs b/Content.Shared/_NF/Cargo/Components/VendPriceComponent.cs deleted file mode 100644 index 84c16db2f64..00000000000 --- a/Content.Shared/_NF/Cargo/Components/VendPriceComponent.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace Content.Shared._NF.Cargo.Components; - -/// -/// This is used for setting a static, unchanging price for buying an object from a vending machine. -/// -[RegisterComponent] -public sealed partial class VendPriceComponent : Component -{ - /// - /// The price of the object this component is on. - /// - [DataField("price", required: true)] - public double Price; -} diff --git a/Resources/Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg b/Resources/Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg new file mode 100644 index 00000000000..f0c5919c3cb Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/Phoron_Will_Make_Us_RichMONO2.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/attributions.yml b/Resources/Audio/DeltaV/Jukebox/attributions.yml index e421cc2813d..7aff44fc99c 100644 --- a/Resources/Audio/DeltaV/Jukebox/attributions.yml +++ b/Resources/Audio/DeltaV/Jukebox/attributions.yml @@ -31,6 +31,11 @@ copyright: "Leisurely Voice by Drozerix, converted to mono" source: "https://modarchive.org/index.php?request=view_by_moduleid&query=183837" +- files: ["every_light_is_blinking_at_onceMONO.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "every light blinking at once by Sunbeamstress, converted to mono" + source: "https://soundcloud.com/sunbeamstress/every-light-is-blinking-at-once" + - files: ["femtanyl_-_MURDER_EVERY_1_U_KNOW_feat._takihasdied_MONO.ogg"] license: "CC-BY-NC-SA-3.0" copyright: "MURDER EVERY 1 U KNOW by Femtanyl featuring takihasdied, used with the understanding that this is a noncommercial project with credit given to the author, also converted to mono." @@ -41,6 +46,11 @@ copyright: "Hackers by Karl Casey @ White Bat Audio, converted to mono" source: "https://www.youtube.com/watch?v=k8nHWwO1U2Q" +- files: [lasers_rip_apart_the_bulkheadMONO.ogg] + license: "CC-BY-NC-SA-3.0" + copyright: "lasers rip apart by Sunbeamstress, converted to mono" + source: "https://soundcloud.com/sunbeamstress/lasers-rip-apart-the-bulkhead" + - files: ["marhaba-MONO.ogg"] license: "CC-BY-NC-SA-3.0" copyright: "Marhaba by Ian Alex Mac. Converted from MP3 to OGG, then converted to mono" @@ -51,6 +61,11 @@ copyright: "Minute by Patricia Taxxon off the album 'Aeroplane,' converted to mono" source: "https://patriciataxxon.bandcamp.com/track/minute" +- files: ["Phoron_Will_Make_Us_RichMONO2.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "phoron will make us rich by Sunbeamstress, converted to mono" + source: "https://soundcloud.com/sunbeamstress/phoron-will-make-us-rich" + - files: ["psirius_-_nymphs_of_the_forest.mptm-MONO.ogg"] license: "CC-BY-NC-SA-4.0" copyright: "Nymphs of the forest by Psirius, converted to mono" diff --git a/Resources/Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg b/Resources/Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg new file mode 100644 index 00000000000..5de6bfe2c7d Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/every_light_is_blinking_at_onceMONO.ogg differ diff --git a/Resources/Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg b/Resources/Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg new file mode 100644 index 00000000000..addbfcc6c0b Binary files /dev/null and b/Resources/Audio/DeltaV/Jukebox/lasers_rip_apart_the_bulkheadMONO.ogg differ diff --git a/Resources/Audio/_NF/Jukebox/attributions.yml b/Resources/Audio/_NF/Jukebox/attributions.yml index 92e453f3ef3..ef3aa977ff3 100644 --- a/Resources/Audio/_NF/Jukebox/attributions.yml +++ b/Resources/Audio/_NF/Jukebox/attributions.yml @@ -1,4 +1,9 @@ - files: ["lateraligator.ogg"] license: "CC-BY-3.0" - copyright: "Later Alligator By Silverman Sound Studios. Converted to mono ogg" + copyright: "Later Alligator By Silverman Sound Studios. Converted to mono OGG." source: "https://soundcloud.com/silvermansound/later-alligator" + +- files: ["frontier-arrivals.ogg"] + license: "CC-BY-NC-3.0" + copyright: "Frontier Arrivals by troglodyte71 (Discord). Converted to mono OGG." + source: "https://discord.com/channels/1123826877245694004/1127687656084611214/1256377037627723786" diff --git a/Resources/Audio/_NF/Jukebox/frontier-arrivals.ogg b/Resources/Audio/_NF/Jukebox/frontier-arrivals.ogg new file mode 100644 index 00000000000..86f30a1baa4 Binary files /dev/null and b/Resources/Audio/_NF/Jukebox/frontier-arrivals.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 48aadfabf7a..74034905881 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5379,3 +5379,247 @@ Entries: message: 'Changed bus schedule: 50 seconds in FTL, 3 mins at a stop.' id: 5080 time: '2024-07-05T12:27:19.0000000+00:00' +- author: whatston3 + changes: + - type: Fix + message: The RPED no longer consumes unused components when upgrading a machine. + id: 5081 + time: '2024-07-06T18:19:11.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: Renamed the MailTruck to Parcel, updated the Menace. + id: 5082 + time: '2024-07-06T19:31:24.0000000+00:00' +- author: neuPanda + changes: + - type: Fix + message: ship console refresh on id insert or removal + - type: Add + message: Filtration to Ship List based off of Access + - type: Add + message: Bailiff and Sergeant Access levels + id: 5083 + time: '2024-07-07T13:15:38.0000000+00:00' +- author: AF-Buyrcsp2 + changes: + - type: Add + message: Added the SSS Camper. + id: 5084 + time: '2024-07-07T21:02:25.0000000+00:00' +- author: VividPups + changes: + - type: Add + message: 'S.E.S.W.C has added a new weapon to the Shuttle gun ' + id: 5085 + time: '2024-07-08T20:12:36.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added guidebook entries for expedition enemies. Proofread by @whatston3. + - type: Add + message: >- + Added unique destruction target for Aberrant Flesh expedition faction - + assimilation sack (sprites by Stagnation). + - type: Add + message: >- + Added unique destruction targets for Punks (party supplies) and + Mercenaries (counterfeit cache) expedition factions. Sprites by + GentleButter (BING GUS!). + - type: Add + message: >- + Added counterfeit spesos - spessos. Functionality by @whatston3. + Original sprites by Stagnation (discord), tweaked slightly by + @whatston3. + - type: Tweak + message: >- + Expanded expeditions loot pool with flatpacks and vending machines + restock boxes. + - type: Tweak + message: >- + Buffed loot from hostile NPCs: more cash, mats, parts, sometimes + flatpacks and weapon cases. + - type: Tweak + message: Renamed Gangers into Punks. + - type: Tweak + message: >- + Tweaked (a little bit) damage values, damage types, movement speeds and + health pools for expedition mobs. + - type: Tweak + message: Removed health regeneration from rogue AI drones. + - type: Fix + message: >- + Expedition mobs will now slow down upon taking appropriate amount of + damage (on 60% and 80% of mob's total health). + id: 5086 + time: '2024-07-08T20:49:06.0000000+00:00' +- author: Leander + changes: + - type: Add + message: >- + A new tactical cleaning hardsuit has been developed to resist all stains + and will be delivered soon via mail + - type: Tweak + message: >- + Nanotrasen has issues on the food supply chain so expect less food + related mails. + id: 5087 + time: '2024-07-08T20:50:42.0000000+00:00' +- author: whatston3 and Stagnation + changes: + - type: Add + message: Spiced pumpkin lattes can now be mixed by bartenders. + id: 5088 + time: '2024-07-08T20:52:06.0000000+00:00' +- author: BoettcherDasOriginal + changes: + - type: Add + message: Added a IFF Range Filter to the Shuttle Console! + id: 5089 + time: '2024-07-08T21:40:36.0000000+00:00' +- author: Frontier Community + changes: + - type: Add + message: Added SpaceBlade toys, let it drip, today! + id: 5090 + time: '2024-07-10T14:08:11.0000000+00:00' +- author: cerebralerror + changes: + - type: Add + message: A new bar sign, "Whiskey Echoes" has been added. + id: 5091 + time: '2024-07-10T17:46:15.0000000+00:00' +- author: whatston3 + changes: + - type: Fix + message: Oni accuracy debuffs now properly affect the sawn-off PKA. + id: 5092 + time: '2024-07-10T17:53:52.0000000+00:00' +- author: VividPups + changes: + - type: Add + message: New Emotional RPG preorders are being sent out + id: 5093 + time: '2024-07-10T18:32:21.0000000+00:00' +- author: whatston3 + changes: + - type: Add + message: More bar sign displays are available for bar ships. + id: 5094 + time: '2024-07-10T18:32:43.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Food now loses capacity when bitten or sliced. + id: 5095 + time: '2024-07-10T22:54:20.0000000+00:00' +- author: Troglodyte71 + changes: + - type: Add + message: A new song, Frontier Arrivals, has been added to the jukebox. + id: 5096 + time: '2024-07-11T11:30:00.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Small QoL update of the Expeditionary Lodge. + id: 5097 + time: '2024-07-11T18:23:13.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Fix + message: Removed empty weapon cases from expeditions fr this time. + id: 5098 + time: '2024-07-12T08:39:48.0000000+00:00' +- author: Leander + changes: + - type: Remove + message: Removed invisible prowler IFF, changed for advanced radar. + id: 5099 + time: '2024-07-12T13:00:53.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Updated SLI Bazaar, added guidebook entry and map. + id: 5100 + time: '2024-07-12T13:50:47.0000000+00:00' +- author: whatston3 + changes: + - type: Tweak + message: Sheriffs start with their laser moved to their backpack. + id: 5101 + time: '2024-07-12T14:16:05.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Maintenance pass on Liquidator shuttle. + id: 5102 + time: '2024-07-12T14:16:47.0000000+00:00' +- author: Leander + changes: + - type: Add + message: >- + Rogue has received a new friendship mounted cannon for better EMP + delivery and IFF console. + - type: Tweak + message: Added locked buttons to the empress, replacing the old ones. + - type: Tweak + message: >- + fix small NFSD gyroscope with the correct amount of force for a small + ship. + id: 5103 + time: '2024-07-12T14:42:36.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Unlocked tattoos, scars and gauze overlays for goblins, felinids and + onis. + id: 5104 + time: '2024-07-12T15:08:26.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Tweak + message: The NM Eagle has been updated. + id: 5105 + time: '2024-07-12T15:09:24.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Syndicate bluespace events and POI now has destructible walls, slightly + different hostile mobs and turrets. + id: 5106 + time: '2024-07-12T15:57:04.0000000+00:00' +- author: whatston3 + changes: + - type: Fix + message: Circuit imprinters are constructable again. + - type: Fix + message: Lathe upgrade rates are calculated properly. + id: 5107 + time: '2024-07-12T16:04:04.0000000+00:00' +- author: whatston3 and Salvantrix + changes: + - type: Add + message: Pirates and NFSD now have more round-start job slots. + - type: Add + message: >- + Sergeants and Bailiffs start with ship vouchers that allow for free ship + purchase & sale. + id: 5108 + time: '2024-07-12T22:19:45.0000000+00:00' +- author: whatston3 + changes: + - type: Fix + message: >- + New players that were let into a round before panic bunker was enabled + are no longer denied on reconnect. + id: 5109 + time: '2024-07-12T22:21:43.0000000+00:00' +- author: crystalHex + changes: + - type: Tweak + message: Fixed Dove atmos, interior walls and missing airlock. + id: 5110 + time: '2024-07-13T09:43:55.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/bank/bank-ATM-component.ftl b/Resources/Locale/en-US/_NF/bank/bank-ATM-component.ftl index 708901cb2d6..c1a7d877a9f 100644 --- a/Resources/Locale/en-US/_NF/bank/bank-ATM-component.ftl +++ b/Resources/Locale/en-US/_NF/bank/bank-ATM-component.ftl @@ -24,6 +24,9 @@ station-bank-required = {"("}Required{")"} station-bank-requires-reason = NT Requires transaction details station-bank-unauthorized = Unauthorized! +bank-atm-menu-cash-amount = ${$amount} +bank-atm-menu-cash-error = ERR: INVALID + ## ATM entity bank-ATM-cashSlot = Cash Slot station-bank-ATM-cashSlot = Cash Slot diff --git a/Resources/Locale/en-US/_NF/barsign/barsign-component.ftl b/Resources/Locale/en-US/_NF/barsign/barsign-component.ftl new file mode 100644 index 00000000000..e0d887d59f9 --- /dev/null +++ b/Resources/Locale/en-US/_NF/barsign/barsign-component.ftl @@ -0,0 +1,19 @@ +## Little Treats +barsign-prototype-name-little-treats = Little Treats Tea Room +barsign-prototype-description-little-treats = A delightfully relaxing tearoom for all the fancy lads in the cosmos. + +## Maltroach +barsign-prototype-name-maltroach = Maltroach +barsign-prototype-description-maltroach = Mothroaches politely greet you into the bar, or are they greeting each other? + +## Neon Flamingos +barsign-prototype-name-neon-flamingos = Neon Flamingos +barsign-prototype-description-neon-flamingos = You doubt you'll be able to stand on one leg after you're done here. + +## The Rune +barsign-prototype-name-the-rune = The Rune +barsign-prototype-description-the-rune = Reality-shifting drinks. + +## Whiskey Echoes +barsign-prototype-name-whiskey-echoes = Whiskey Echoes +barsign-prototype-description-whiskey-echoes = Wew lad! Sit down and have a drink! No matter your affiliation, the slogan here is 'Death to sobriety!' diff --git a/Resources/Locale/en-US/_NF/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/_NF/flavors/flavor-profiles.ftl new file mode 100644 index 00000000000..9ef7d59859a --- /dev/null +++ b/Resources/Locale/en-US/_NF/flavors/flavor-profiles.ftl @@ -0,0 +1 @@ +flavor-base-basic = basic diff --git a/Resources/Locale/en-US/_NF/forensics/fibers.ftl b/Resources/Locale/en-US/_NF/forensics/fibers.ftl new file mode 100644 index 00000000000..75402758ae8 --- /dev/null +++ b/Resources/Locale/en-US/_NF/forensics/fibers.ftl @@ -0,0 +1 @@ +fibers-cream = cream diff --git a/Resources/Locale/en-US/_NF/guidebook/guides.ftl b/Resources/Locale/en-US/_NF/guidebook/guides.ftl index 6d70caab709..996d5343867 100644 --- a/Resources/Locale/en-US/_NF/guidebook/guides.ftl +++ b/Resources/Locale/en-US/_NF/guidebook/guides.ftl @@ -22,10 +22,12 @@ guide-entry-expedition-xenos = Xenos # Shipyard entries guide-entry-shipyard-ambition = Ambition +guide-entry-shipyard-bazaar = Bazaar guide-entry-shipyard-bocadillo = Bocadillo guide-entry-shipyard-bookworm = Bookworm guide-entry-shipyard-brigand = Brigand guide-entry-shipyard-bulker = Bulker +guide-entry-shipyard-camper = Camper guide-entry-shipyard-ceres = Ceres guide-entry-shipyard-chisel = Chisel guide-entry-shipyard-comet = Comet diff --git a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl index e8ca0666f4d..5a35988329d 100644 --- a/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/_NF/prototypes/access/accesses.ftl @@ -2,4 +2,6 @@ id-card-access-level-frontier = Frontier id-card-access-level-pilot = Pilot id-card-access-level-mail = Mail id-card-access-level-mercenary = Mercenary -id-card-access-level-stc = Station Traffic Controller \ No newline at end of file +id-card-access-level-stc = Station Traffic Controller +id-card-access-level-sergeant = Sergeant +id-card-access-level-bailiff = Bailiff diff --git a/Resources/Locale/en-US/_NF/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/en-US/_NF/reagents/meta/consumable/drink/drinks.ftl new file mode 100644 index 00000000000..858ae5f354e --- /dev/null +++ b/Resources/Locale/en-US/_NF/reagents/meta/consumable/drink/drinks.ftl @@ -0,0 +1,2 @@ +reagent-name-pumpkin-spice-latte = spiced pumpkin latte +reagent-desc-pumpkin-spice-latte = It's autumn somewhere. Smells like cinnamon and cloves. diff --git a/Resources/Locale/en-US/_NF/shipyard/shipyard-console-component.ftl b/Resources/Locale/en-US/_NF/shipyard/shipyard-console-component.ftl index 159cefdb2f7..6e8b7fc045c 100644 --- a/Resources/Locale/en-US/_NF/shipyard/shipyard-console-component.ftl +++ b/Resources/Locale/en-US/_NF/shipyard/shipyard-console-component.ftl @@ -1,17 +1,19 @@ ## UI shipyard-console-invalid-vessel = Cannot purchase vessel: shipyard-console-menu-title = Shipyard Menu +shipyard-console-menu-listing-free = Free +shipyard-console-menu-listing-amount = ${$amount} shipyard-console-docking = Captain {$owner} shuttle {$vessel} en route, eta 10 seconds. shipyard-console-leaving = Captain {$owner} shuttle {$vessel} sold by {$player}. shipyard-console-docking-secret = Unregistered vessel detected entering your sector. shipyard-console-leaving-secret = Unregistered vessel detected leaving your sector. shipyard-commands-purchase-desc = Spawns and FTL docks a specified shuttle from a grid file. -shipyard-console-no-idcard = No ID card present -shipyard-console-already-deeded = ID card already has a Deed -shipyard-console-invalid-station = Not a valid station -shipyard-console-no-bank = No bank account found -shipyard-console-no-deed = No ship deed found -shipyard-console-sale-reqs = Ship must be docked and all crew disembarked +shipyard-console-no-idcard = No ID card present. +shipyard-console-already-deeded = ID card already has a Deed. +shipyard-console-invalid-station = Not a valid station. +shipyard-console-no-bank = No bank account found. +shipyard-console-no-deed = No ship deed found. +shipyard-console-sale-reqs = Ship must be docked and all crew disembarked. shipyard-console-sale-not-docked = Ship must be docked. shipyard-console-sale-organic-aboard = All crew must disembark. {$name} is still aboard. # This error message is bad, but if it happens, something awful's happened. @@ -19,3 +21,4 @@ shipyard-console-sale-invalid-ship = Ship is invalid and cannot be sold. shipyard-console-sale-unknown-reason = Ship cannot be sold: {reason} shipyard-console-deed-label = Registered Ship: shipyard-console-appraisal-label = Shuttle Estimated Value:{" "} +shipyard-console-no-voucher-redemptions = All voucher redemptions have been used. diff --git a/Resources/Locale/en-US/_NF/shuttles/console.ftl b/Resources/Locale/en-US/_NF/shuttles/console.ftl index ec0a1d12a2a..c2d3c07bf8a 100644 --- a/Resources/Locale/en-US/_NF/shuttles/console.ftl +++ b/Resources/Locale/en-US/_NF/shuttles/console.ftl @@ -1,2 +1,3 @@ shuttle-console-designation = Designation: shuttle-console-designation-unknown = Unknown +shuttle-console-maximum-iff-distance = Maximum IFF Distance diff --git a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl index 2330732b66a..ee8142a05cc 100644 --- a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl @@ -151,6 +151,8 @@ uplink-security-emp-ammo-name = EMP Projectile Ammo uplink-security-emp-ammo-desc = A a box containing 4 EMP projectile grenades. uplink-security-trackingdart-ammo-name = Tracking Darts Ammo uplink-security-trackingdart-ammo-desc = A a box containing 4 tracking darts. +uplink-security-spaceblade-sec-name = Security SpaceBlade +uplink-security-spaceblade-sec-desc = Latest stun tech store-category-piratehardsuits = EVA Suits store-category-pirateweapons = Weapons diff --git a/Resources/Locale/en-US/_NF/weapons/ranged/gun.ftl b/Resources/Locale/en-US/_NF/weapons/ranged/gun.ftl new file mode 100644 index 00000000000..c07a51cf103 --- /dev/null +++ b/Resources/Locale/en-US/_NF/weapons/ranged/gun.ftl @@ -0,0 +1,2 @@ +gun-comp-enabled = The gun is turned [color=green]on[/color]. +gun-comp-disabled = The gun is turned [color=red]off[/color]. diff --git a/Resources/Locale/en-US/deltav/markings/Oni.ftl b/Resources/Locale/en-US/deltav/markings/Oni.ftl new file mode 100644 index 00000000000..701f9cf82ec --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/Oni.ftl @@ -0,0 +1,4 @@ +marking-OniHornShaved = Shaved +marking-OniHornShaved-shaved = Shaved +marking-OniHornBull = Bull +marking-OniHornBull-bull = Bull \ No newline at end of file diff --git a/Resources/Locale/en-US/deltav/markings/felinid.ftl b/Resources/Locale/en-US/deltav/markings/felinid.ftl index 89f4d43bd4e..d1b372d567e 100644 --- a/Resources/Locale/en-US/deltav/markings/felinid.ftl +++ b/Resources/Locale/en-US/deltav/markings/felinid.ftl @@ -1,5 +1,11 @@ marking-FelinidFluffyTail-Felinid_fluffy_tail_full = Fluffy Tail -marking-FelinidFluffyTailRings-Felinid_fluffy_tail_full = Fluffy tail +marking-FelinidFluffyTailRings-Felinid_fluffy_tail_full = Fluffy Tail marking-FelinidFluffyTailRings-felinid_fluffy_tail_rings = Fluffy Tail Rings marking-FelinidFluffyTail = Fluffy Tail -marking-FelinidFluffyTailRings = Fluffy Tail with rings +marking-FelinidFluffyTailRings = Fluffy Tail with Rings +marking-FelinidAlternativeTail = Alternative Wagging Tail +marking-FelinidAlternativeTail-m_waggingtail_cat_FRONT = Alternative Wagging Tail +marking-FelinidTiger = Tiger Tail +marking-FelinidTiger-m_tail_tiger_primary = Primary +marking-FelinidTiger-m_tail_tiger_secondary = Tip of Tail +marking-FelinidTiger-m_tail_tiger_tertiary = Stripes diff --git a/Resources/Locale/en-US/markings/goblin_markings.ftl b/Resources/Locale/en-US/markings/goblin_markings.ftl index 3f5c96da32b..3f883be9b5e 100644 --- a/Resources/Locale/en-US/markings/goblin_markings.ftl +++ b/Resources/Locale/en-US/markings/goblin_markings.ftl @@ -1,15 +1,32 @@ # goblin ears marking-GoblinEarsBasic = Basic Ears +marking-GoblinEarsBasic-goblin_ears_default = Basic Ears + marking-GoblinEarsBasicAlt = Basic Ears (Alt) -marking-GoblinEarsLong01 = Long Ears (tips down) -marking-GoblinEarsLong02 = Long Ears (tips up) +marking-GoblinEarsBasicAlt-goblin_ears_default_alt = Basic Ears (Alt) + +marking-GoblinEarsLong01 = Long Ears (Tips Down) +marking-GoblinEarsLong01-goblin_ears_long_01 = Long Ears (Tips Down) + +marking-GoblinEarsLong02 = Long Ears (Tips Up) +marking-GoblinEarsLong02-goblin_ears_long_02 = Long Ears (Tips Up) # goblin noses marking-GoblinNoseBasic = Basic Nose +marking-GoblinNoseBasic-goblin_nose_default = Basic Nose + marking-GoblinNoseLong = Long Nose +marking-GoblinNoseLong-goblin_nose_long = Long Nose + marking-GoblinNoseCrooked = Crooked Nose +marking-GoblinNoseCrooked-goblin_nose_crooked = Crooked Nose # goblin tusks marking-GoblinTusksBasic = No Tusks +marking-GoblinTusksBasic-goblin_tusks_none = No Tusks + marking-GoblinTusksSmall = Small Tusks +marking-GoblinTusksSmall-goblin_tusks_small = Small Tusks + marking-GoblinTusksBig = Long Tusks +marking-GoblinTusksBig-goblin_tusks_big = Long Tusks diff --git a/Resources/Locale/en-US/nyanotrasen/abilities/oni.ftl b/Resources/Locale/en-US/nyanotrasen/abilities/Oni.ftl similarity index 100% rename from Resources/Locale/en-US/nyanotrasen/abilities/oni.ftl rename to Resources/Locale/en-US/nyanotrasen/abilities/Oni.ftl diff --git a/Resources/Locale/en-US/nyanotrasen/markings/Oni.ftl b/Resources/Locale/en-US/nyanotrasen/markings/Oni.ftl new file mode 100644 index 00000000000..bfef153498a --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/markings/Oni.ftl @@ -0,0 +1,14 @@ +marking-OniHornSingleCurved = Single Curved +marking-OniHornSingleCurved-single_curved = Single Curved +marking-OniHornSingleLeftCurved = Single Left Curved +marking-OniHornSingleLeftCurved-single_left_curved = Single Left Curved +marking-OniHornSingleRightCurved = Single Right Curved +marking-OniHornSingleRightCurved-single_right_curved = Single Right Curved +marking-OniHornDoubleCurvedOutwards = Double Curved Outwards +marking-OniHornDoubleCurvedOutwards-double_curved_outwards = Double Curved Outwards +marking-OniHornDoubleCurved = Double Curved +marking-OniHornDoubleCurved-double_curved = Double Curved +marking-OniHornDoubleLeftBrokeCurved = Double Left Broke Curved +marking-OniHornDoubleLeftBrokeCurved-double_left_broke_curved = Double Left Broke Curved +marking-OniHornDoubleRightBrokeCurved = Double Right Broke Curved +marking-OniHornDoubleRightBrokeCurved-double_right_broke_curved = Double Right Broke Curved \ No newline at end of file diff --git a/Resources/Locale/en-US/speech/speech-chatsan.ftl b/Resources/Locale/en-US/speech/speech-chatsan.ftl index df6cde00a2c..0d530e9899a 100644 --- a/Resources/Locale/en-US/speech/speech-chatsan.ftl +++ b/Resources/Locale/en-US/speech/speech-chatsan.ftl @@ -133,5 +133,6 @@ chatsan-replacement-47 = see ya chatsan-word-48 = rn chatsan-replacement-48 = right now -chatsan-word-49 = atm -chatsan-replacement-49 = at the moment +# Frontier: we use ATMs, replace this with some inane garbage to keep the entry +chatsan-word-49 = lfg +chatsan-replacement-49 = let's fucking go diff --git a/Resources/Maps/_NF/Bluespace/cache.yml b/Resources/Maps/_NF/Bluespace/cache.yml index 910e1013671..418367df840 100644 --- a/Resources/Maps/_NF/Bluespace/cache.yml +++ b/Resources/Maps/_NF/Bluespace/cache.yml @@ -509,26 +509,28 @@ entities: 1: 1 1,1: 1: 51371 - 0: 9284 + 0: 8192 + 2: 1092 1,0: 1: 43212 - 0: 17408 + 2: 17408 1,2: - 0: 3104 + 0: 32 1: 8396 + 2: 3072 1,-1: 1: 51371 - 0: 1092 + 2: 1092 2,0: 1: 17 - 0: 4352 + 2: 4352 2,1: - 0: 4369 + 2: 4369 2,2: - 0: 273 + 2: 273 2,-1: 1: 4096 - 0: 273 + 2: 273 0,-3: 0: 64528 -1,-3: @@ -542,48 +544,54 @@ entities: 0: 30464 1,-3: 1: 49184 - 0: 11264 + 0: 8192 + 2: 3072 1,-2: - 0: 17440 + 0: 32 1: 43212 + 2: 17408 2,-3: - 0: 4352 + 2: 4352 2,-2: - 0: 4369 + 2: 4369 -3,0: 1: 136 - 0: 34816 + 2: 34816 -3,-1: 1: 32768 - 0: 2184 + 2: 2184 -2,0: 1: 20787 - 0: 8704 + 2: 8704 -3,1: - 0: 34952 + 2: 34952 -2,1: 1: 12637 - 0: 16930 + 2: 546 + 0: 16384 -3,2: - 0: 2184 + 2: 2184 -2,2: 1: 16435 - 0: 832 + 2: 768 + 0: 64 -2,-1: 1: 12637 - 0: 546 + 2: 546 -1,0: 0: 1911 -3,-3: - 0: 34816 + 2: 34816 -2,-3: - 0: 17152 + 2: 768 1: 12352 + 0: 16384 -3,-2: - 0: 34952 + 2: 34952 -2,-2: 1: 20787 - 0: 8768 + 2: 8704 + 0: 64 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -615,6 +623,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -777,829 +800,1581 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 -- proto: BannerSyndicate +- proto: AtmosFixBlockerMarker entities: - - uid: 579 + - uid: 385 components: - type: Transform - pos: 6.5,2.5 + pos: -8.5,10.5 parent: 1 - - uid: 630 + - uid: 386 components: - type: Transform - pos: -6.5,2.5 + pos: -8.5,9.5 parent: 1 - - uid: 631 + - uid: 387 components: - type: Transform - pos: -6.5,-1.5 + pos: -8.5,8.5 parent: 1 - - uid: 632 + - uid: 388 components: - type: Transform - pos: 6.5,-1.5 + pos: -8.5,7.5 parent: 1 -- proto: BenchSofaCorpLeft - entities: - - uid: 439 + - uid: 655 components: - type: Transform - pos: 3.5,10.5 + pos: -8.5,6.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BenchSofaCorpRight - entities: - - uid: 438 + - uid: 660 components: - type: Transform - pos: 2.5,10.5 + pos: -8.5,5.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BlastDoor - entities: - - uid: 122 + - uid: 677 components: - type: Transform - pos: 5.5,-0.5 + pos: -8.5,4.5 parent: 1 - - uid: 325 + - uid: 678 components: - type: Transform - pos: 5.5,0.5 + pos: -8.5,3.5 parent: 1 - - uid: 326 + - uid: 679 components: - type: Transform - pos: 5.5,1.5 + pos: -8.5,2.5 parent: 1 - - uid: 327 + - uid: 680 components: - type: Transform - pos: -5.5,-0.5 + pos: -8.5,1.5 parent: 1 - - uid: 328 + - uid: 681 components: - type: Transform - pos: -5.5,0.5 + pos: -8.5,0.5 parent: 1 - - uid: 329 + - uid: 682 components: - type: Transform - pos: -5.5,1.5 + pos: -8.5,-0.5 parent: 1 - - uid: 330 + - uid: 683 components: - type: Transform - pos: -4.5,7.5 + pos: -8.5,-1.5 parent: 1 - - uid: 331 + - uid: 684 components: - type: Transform - pos: -4.5,9.5 + pos: -8.5,-2.5 parent: 1 - - uid: 332 + - uid: 685 components: - type: Transform - pos: -0.5,10.5 + pos: -8.5,-3.5 parent: 1 - - uid: 333 + - uid: 686 components: - type: Transform - pos: 0.5,10.5 + pos: -8.5,-4.5 parent: 1 - - uid: 334 + - uid: 687 components: - type: Transform - pos: 4.5,9.5 + pos: -8.5,-5.5 parent: 1 - - uid: 335 + - uid: 688 components: - type: Transform - pos: 4.5,7.5 + pos: -8.5,-6.5 parent: 1 - - uid: 336 + - uid: 689 components: - type: Transform - pos: 4.5,-6.5 + pos: -8.5,-7.5 parent: 1 - - uid: 337 + - uid: 690 components: - type: Transform - pos: 4.5,-8.5 + pos: -8.5,-8.5 parent: 1 - - uid: 338 + - uid: 691 components: - type: Transform - pos: 0.5,-9.5 + pos: -8.5,-9.5 parent: 1 - - uid: 339 + - uid: 692 components: - type: Transform - pos: -0.5,-9.5 + pos: -7.5,10.5 parent: 1 - - uid: 340 + - uid: 693 components: - type: Transform - pos: -4.5,-8.5 + pos: -7.5,9.5 parent: 1 - - uid: 341 + - uid: 694 components: - type: Transform - pos: -4.5,-6.5 + pos: -7.5,8.5 parent: 1 - - uid: 612 + - uid: 695 components: - type: Transform - pos: -0.5,1.5 + pos: -7.5,7.5 parent: 1 - - uid: 613 + - uid: 696 components: - type: Transform - pos: 0.5,1.5 + pos: -7.5,6.5 parent: 1 - - uid: 614 + - uid: 697 components: - type: Transform - pos: -0.5,-0.5 + pos: -7.5,5.5 parent: 1 - - uid: 615 + - uid: 698 components: - type: Transform - pos: 0.5,-0.5 + pos: -7.5,4.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 468 + - uid: 699 components: - type: Transform - pos: 2.5,-7.5 + pos: -7.5,3.5 parent: 1 - - uid: 469 + - uid: 700 components: - type: Transform - pos: -4.5,2.5 + pos: -7.5,2.5 parent: 1 - - uid: 470 + - uid: 701 components: - type: Transform - pos: -3.5,2.5 + pos: -7.5,1.5 parent: 1 - - uid: 471 + - uid: 702 components: - type: Transform - pos: -2.5,2.5 + pos: -7.5,0.5 parent: 1 - - uid: 472 + - uid: 703 components: - type: Transform - pos: -1.5,2.5 + pos: -7.5,-0.5 parent: 1 - - uid: 473 + - uid: 704 components: - type: Transform - pos: -0.5,2.5 + pos: -7.5,-1.5 parent: 1 - - uid: 474 + - uid: 705 components: - type: Transform - pos: 0.5,2.5 + pos: -7.5,-2.5 parent: 1 - - uid: 475 + - uid: 706 components: - type: Transform - pos: 1.5,2.5 + pos: -7.5,-3.5 parent: 1 - - uid: 476 + - uid: 722 components: - type: Transform - pos: 2.5,2.5 + pos: -7.5,-4.5 parent: 1 - - uid: 477 + - uid: 723 components: - type: Transform - pos: 3.5,2.5 + pos: -7.5,-5.5 parent: 1 - - uid: 478 + - uid: 724 components: - type: Transform - pos: 3.5,3.5 + pos: -7.5,-6.5 parent: 1 - - uid: 479 + - uid: 725 components: - type: Transform - pos: 2.5,3.5 + pos: -7.5,-7.5 parent: 1 - - uid: 480 + - uid: 726 components: - type: Transform - pos: 1.5,3.5 + pos: -7.5,-8.5 parent: 1 - - uid: 481 + - uid: 727 components: - type: Transform - pos: 0.5,3.5 + pos: -7.5,-9.5 parent: 1 - - uid: 482 + - uid: 728 components: - type: Transform - pos: -0.5,3.5 + pos: -6.5,10.5 parent: 1 - - uid: 483 + - uid: 729 components: - type: Transform - pos: -1.5,3.5 + pos: -6.5,9.5 parent: 1 - - uid: 484 + - uid: 730 components: - type: Transform - pos: -2.5,3.5 + pos: -6.5,8.5 parent: 1 - - uid: 485 + - uid: 731 components: - type: Transform - pos: -3.5,3.5 + pos: -6.5,7.5 parent: 1 - - uid: 486 + - uid: 732 components: - type: Transform - pos: -0.5,6.5 + pos: -6.5,6.5 parent: 1 - - uid: 487 + - uid: 733 components: - type: Transform - pos: -3.5,5.5 + pos: -6.5,5.5 parent: 1 - - uid: 488 + - uid: 734 components: - type: Transform - pos: -2.5,5.5 + pos: -6.5,4.5 parent: 1 - - uid: 489 + - uid: 735 components: - type: Transform - pos: -1.5,5.5 + pos: -6.5,3.5 parent: 1 - - uid: 490 + - uid: 736 components: - type: Transform - pos: -0.5,5.5 + pos: -6.5,2.5 parent: 1 - - uid: 491 + - uid: 737 components: - type: Transform - pos: 0.5,5.5 + pos: -6.5,1.5 parent: 1 - - uid: 492 + - uid: 738 components: - type: Transform - pos: 1.5,5.5 + pos: -6.5,0.5 parent: 1 - - uid: 493 + - uid: 739 components: - type: Transform - pos: 2.5,5.5 + pos: -6.5,-0.5 parent: 1 - - uid: 494 + - uid: 740 components: - type: Transform - pos: 3.5,5.5 + pos: -6.5,-1.5 parent: 1 - - uid: 495 + - uid: 741 components: - type: Transform - pos: -0.5,7.5 + pos: -6.5,-2.5 parent: 1 - - uid: 496 + - uid: 742 components: - type: Transform - pos: -0.5,8.5 + pos: -6.5,-3.5 parent: 1 - - uid: 497 + - uid: 743 components: - type: Transform - pos: -0.5,9.5 + pos: -6.5,-4.5 parent: 1 - - uid: 498 + - uid: 744 components: - type: Transform - pos: -0.5,10.5 + pos: -6.5,-5.5 parent: 1 - - uid: 499 + - uid: 745 components: - type: Transform - pos: -0.5,11.5 + pos: -6.5,-6.5 parent: 1 - - uid: 500 + - uid: 746 components: - type: Transform - pos: -1.5,9.5 + pos: -6.5,-7.5 parent: 1 - - uid: 501 + - uid: 747 components: - type: Transform - pos: -2.5,9.5 + pos: -6.5,-8.5 parent: 1 - - uid: 502 + - uid: 748 components: - type: Transform - pos: -3.5,9.5 + pos: -6.5,-9.5 parent: 1 - - uid: 503 + - uid: 749 components: - type: Transform - pos: -4.5,9.5 + pos: 6.5,-9.5 parent: 1 - - uid: 504 + - uid: 750 components: - type: Transform - pos: -5.5,9.5 + pos: -5.5,-4.5 parent: 1 - - uid: 505 + - uid: 751 components: - type: Transform - pos: -6.5,9.5 + pos: -5.5,-3.5 parent: 1 - - uid: 506 + - uid: 752 components: - type: Transform - pos: -7.5,9.5 + pos: -5.5,-2.5 parent: 1 - - uid: 507 + - uid: 753 components: - type: Transform - pos: -7.5,8.5 + pos: -4.5,-3.5 parent: 1 - - uid: 508 + - uid: 754 components: - type: Transform - pos: -7.5,7.5 + pos: -0.5,-3.5 parent: 1 - - uid: 509 + - uid: 755 components: - type: Transform - pos: -7.5,6.5 + pos: 0.5,-3.5 parent: 1 - - uid: 510 + - uid: 756 components: - type: Transform - pos: -7.5,5.5 + pos: 4.5,-3.5 parent: 1 - - uid: 511 + - uid: 757 components: - type: Transform - pos: -7.5,4.5 + pos: 5.5,-2.5 parent: 1 - - uid: 512 + - uid: 758 components: - type: Transform - pos: -7.5,3.5 + pos: 5.5,-3.5 parent: 1 - - uid: 513 + - uid: 759 components: - type: Transform - pos: -7.5,2.5 + pos: 5.5,-4.5 parent: 1 - - uid: 514 + - uid: 760 components: - type: Transform - pos: -3.5,1.5 + pos: 6.5,-8.5 parent: 1 - - uid: 515 + - uid: 761 components: - type: Transform - pos: -3.5,0.5 + pos: 6.5,-7.5 parent: 1 - - uid: 516 + - uid: 762 components: - type: Transform - pos: -3.5,-0.5 + pos: 6.5,-6.5 parent: 1 - - uid: 517 + - uid: 763 components: - type: Transform - pos: -3.5,-1.5 - parent: 1 - - uid: 518 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - - uid: 519 - components: - - type: Transform - pos: -4.5,0.5 - parent: 1 - - uid: 520 - components: - - type: Transform - pos: -5.5,0.5 + pos: 6.5,-5.5 parent: 1 - - uid: 521 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 1 - - uid: 522 - components: - - type: Transform - pos: -7.5,-2.5 - parent: 1 - - uid: 523 + - uid: 764 components: - type: Transform - pos: -7.5,-3.5 + pos: 6.5,-4.5 parent: 1 - - uid: 524 + - uid: 765 components: - type: Transform - pos: -7.5,-4.5 + pos: 6.5,-3.5 parent: 1 - - uid: 525 + - uid: 766 components: - type: Transform - pos: -7.5,-5.5 + pos: 6.5,-2.5 parent: 1 - - uid: 526 + - uid: 767 components: - type: Transform - pos: -7.5,-6.5 + pos: 6.5,-1.5 parent: 1 - - uid: 527 + - uid: 768 components: - type: Transform - pos: -7.5,-7.5 + pos: 6.5,-0.5 parent: 1 - - uid: 528 + - uid: 769 components: - type: Transform - pos: -7.5,-8.5 + pos: 6.5,0.5 parent: 1 - - uid: 529 + - uid: 770 components: - type: Transform - pos: -6.5,-8.5 + pos: 6.5,1.5 parent: 1 - - uid: 530 + - uid: 771 components: - type: Transform - pos: -5.5,-8.5 + pos: 6.5,2.5 parent: 1 - - uid: 531 + - uid: 772 components: - type: Transform - pos: -4.5,-8.5 + pos: 6.5,3.5 parent: 1 - - uid: 532 + - uid: 773 components: - type: Transform - pos: -3.5,-8.5 + pos: 6.5,4.5 parent: 1 - - uid: 533 + - uid: 774 components: - type: Transform - pos: -2.5,-8.5 + pos: 6.5,5.5 parent: 1 - - uid: 534 + - uid: 775 components: - type: Transform - pos: -1.5,-8.5 + pos: 6.5,6.5 parent: 1 - - uid: 535 + - uid: 776 components: - type: Transform - pos: -0.5,-8.5 + pos: 6.5,7.5 parent: 1 - - uid: 536 + - uid: 777 components: - type: Transform - pos: 0.5,-8.5 + pos: 6.5,8.5 parent: 1 - - uid: 537 + - uid: 778 components: - type: Transform - pos: 1.5,-8.5 + pos: 6.5,9.5 parent: 1 - - uid: 538 + - uid: 779 components: - type: Transform - pos: 2.5,-8.5 + pos: 6.5,10.5 parent: 1 - - uid: 539 + - uid: 780 components: - type: Transform - pos: 3.5,-8.5 + pos: 7.5,-9.5 parent: 1 - - uid: 540 + - uid: 781 components: - type: Transform - pos: 4.5,-8.5 + pos: 7.5,-8.5 parent: 1 - - uid: 541 + - uid: 782 components: - type: Transform - pos: 5.5,-8.5 + pos: 7.5,-7.5 parent: 1 - - uid: 542 + - uid: 783 components: - type: Transform - pos: 6.5,-8.5 + pos: 7.5,-6.5 parent: 1 - - uid: 543 + - uid: 784 components: - type: Transform - pos: 7.5,-8.5 + pos: 7.5,-5.5 parent: 1 - - uid: 544 + - uid: 785 components: - type: Transform - pos: 7.5,-7.5 + pos: 7.5,-4.5 parent: 1 - - uid: 545 + - uid: 786 components: - type: Transform - pos: 7.5,-6.5 + pos: 7.5,-3.5 parent: 1 - - uid: 546 + - uid: 787 components: - type: Transform - pos: 7.5,-5.5 + pos: 7.5,-2.5 parent: 1 - - uid: 547 + - uid: 788 components: - type: Transform - pos: 7.5,-4.5 + pos: 7.5,-1.5 parent: 1 - - uid: 548 + - uid: 789 components: - type: Transform - pos: 7.5,-3.5 + pos: 7.5,-0.5 parent: 1 - - uid: 549 + - uid: 790 components: - type: Transform - pos: 7.5,-2.5 + pos: 7.5,0.5 parent: 1 - - uid: 550 + - uid: 791 components: - type: Transform - pos: 7.5,-1.5 + pos: 7.5,1.5 parent: 1 - - uid: 551 + - uid: 792 components: - type: Transform pos: 7.5,2.5 parent: 1 - - uid: 552 + - uid: 793 components: - type: Transform pos: 7.5,3.5 parent: 1 - - uid: 553 + - uid: 794 components: - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 554 + - uid: 795 components: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 555 + - uid: 796 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 556 + - uid: 797 components: - type: Transform pos: 7.5,7.5 parent: 1 - - uid: 557 + - uid: 798 components: - type: Transform pos: 7.5,8.5 parent: 1 - - uid: 558 + - uid: 799 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 559 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1 - - uid: 560 + - uid: 800 components: - type: Transform - pos: 5.5,9.5 + pos: 7.5,10.5 parent: 1 - - uid: 561 + - uid: 801 components: - type: Transform - pos: 4.5,9.5 + pos: 8.5,-9.5 parent: 1 - - uid: 562 + - uid: 802 components: - type: Transform - pos: 3.5,9.5 + pos: 8.5,-8.5 parent: 1 - - uid: 563 + - uid: 803 components: - type: Transform - pos: 2.5,9.5 + pos: 8.5,-7.5 parent: 1 - - uid: 564 + - uid: 804 components: - type: Transform - pos: 1.5,9.5 + pos: 8.5,-6.5 parent: 1 - - uid: 565 + - uid: 805 components: - type: Transform - pos: 0.5,9.5 + pos: 8.5,-5.5 parent: 1 - - uid: 566 + - uid: 806 components: - type: Transform - pos: 0.5,-5.5 + pos: 8.5,-4.5 parent: 1 - - uid: 567 + - uid: 807 components: - type: Transform - pos: 0.5,-6.5 + pos: 8.5,-3.5 parent: 1 - - uid: 568 + - uid: 808 components: - type: Transform - pos: 0.5,-7.5 + pos: 8.5,-2.5 parent: 1 - - uid: 569 + - uid: 809 components: - type: Transform - pos: 0.5,-4.5 + pos: 8.5,-1.5 parent: 1 - - uid: 570 + - uid: 810 components: - type: Transform - pos: 2.5,-9.5 + pos: 8.5,-0.5 parent: 1 - - uid: 571 + - uid: 811 components: - type: Transform - pos: 0.5,-9.5 + pos: 8.5,0.5 parent: 1 - - uid: 572 + - uid: 812 components: - type: Transform - pos: 0.5,-10.5 + pos: 8.5,1.5 parent: 1 - - uid: 573 + - uid: 813 components: - type: Transform - pos: -2.5,-9.5 + pos: 8.5,2.5 parent: 1 - - uid: 574 + - uid: 814 components: - type: Transform - pos: -2.5,-7.5 + pos: 8.5,3.5 parent: 1 - - uid: 575 + - uid: 815 components: - type: Transform - pos: -2.5,-6.5 + pos: 8.5,4.5 parent: 1 - - uid: 576 + - uid: 816 components: - type: Transform - pos: -2.5,-5.5 + pos: 8.5,5.5 parent: 1 - - uid: 577 + - uid: 817 components: - type: Transform - pos: 2.5,-6.5 + pos: 8.5,6.5 parent: 1 - - uid: 578 + - uid: 818 components: - type: Transform - pos: 2.5,-5.5 + pos: 8.5,7.5 parent: 1 - - uid: 580 + - uid: 819 components: - type: Transform - pos: 2.5,8.5 + pos: 8.5,8.5 parent: 1 - - uid: 581 + - uid: 820 components: - type: Transform - pos: 2.5,7.5 + pos: 8.5,9.5 parent: 1 - - uid: 582 + - uid: 821 components: - type: Transform - pos: -2.5,8.5 + pos: 8.5,10.5 parent: 1 - - uid: 583 + - uid: 822 components: - type: Transform - pos: -2.5,7.5 + pos: 5.5,11.5 parent: 1 - - uid: 584 + - uid: 823 components: - type: Transform - pos: -2.5,10.5 + pos: -5.5,11.5 parent: 1 - - uid: 585 + - uid: 825 components: - type: Transform - pos: 2.5,10.5 + pos: -5.5,5.5 parent: 1 - - uid: 586 + - uid: 826 components: - type: Transform - pos: -2.5,1.5 + pos: -5.5,4.5 parent: 1 - - uid: 587 + - uid: 827 components: - type: Transform - pos: -1.5,1.5 + pos: -5.5,3.5 parent: 1 - - uid: 588 + - uid: 828 components: - type: Transform - pos: -0.5,1.5 + pos: -4.5,4.5 parent: 1 - - uid: 589 + - uid: 829 components: - type: Transform - pos: 0.5,1.5 + pos: -0.5,4.5 parent: 1 - - uid: 590 + - uid: 830 components: - type: Transform - pos: 1.5,1.5 + pos: 0.5,4.5 parent: 1 - - uid: 591 + - uid: 831 components: - type: Transform - pos: 2.5,1.5 + pos: 5.5,5.5 parent: 1 - - uid: 592 + - uid: 832 components: - type: Transform - pos: 3.5,1.5 + pos: 5.5,4.5 parent: 1 - - uid: 593 + - uid: 833 components: - type: Transform - pos: 3.5,0.5 + pos: 5.5,3.5 parent: 1 - - uid: 594 + - uid: 834 components: - type: Transform - pos: 3.5,-0.5 + pos: 4.5,4.5 parent: 1 - - uid: 595 + - uid: 835 components: - type: Transform - pos: 3.5,-1.5 + pos: 5.5,-10.5 parent: 1 - - uid: 596 + - uid: 836 components: - type: Transform - pos: 3.5,-2.5 + pos: -5.5,-10.5 parent: 1 - - uid: 597 +- proto: BannerSyndicate + entities: + - uid: 579 components: - type: Transform - pos: 2.5,-2.5 + pos: 6.5,2.5 parent: 1 - - uid: 598 + - uid: 630 components: - type: Transform - pos: 1.5,-2.5 + pos: -6.5,2.5 parent: 1 - - uid: 599 + - uid: 631 components: - type: Transform - pos: 0.5,-2.5 + pos: -6.5,-1.5 parent: 1 - - uid: 600 + - uid: 632 components: - type: Transform - pos: -0.5,-2.5 + pos: 6.5,-1.5 parent: 1 - - uid: 601 +- proto: BenchSofaCorpLeft + entities: + - uid: 439 components: - type: Transform - pos: -1.5,-2.5 + pos: 3.5,10.5 parent: 1 - - uid: 602 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpRight + entities: + - uid: 438 components: - type: Transform - pos: -2.5,-2.5 + pos: 2.5,10.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: BlastDoor + entities: + - uid: 122 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 468 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -2.5,-2.5 parent: 1 - uid: 603 components: @@ -2607,45 +3382,6 @@ entities: - type: Transform pos: 4.5,0.5 parent: 1 -- proto: IngotGold1 - entities: - - uid: 382 - components: - - type: Transform - pos: -1.7843485,-6.43016 - parent: 1 - - uid: 383 - components: - - type: Transform - pos: 0.9656515,-6.4822435 - parent: 1 - - uid: 384 - components: - - type: Transform - pos: 0.5906515,-6.4197435 - parent: 1 - - uid: 385 - components: - - type: Transform - pos: -1.5343485,-5.52391 - parent: 1 -- proto: IngotSilver1 - entities: - - uid: 386 - components: - - type: Transform - pos: -0.5968485,-6.58641 - parent: 1 - - uid: 387 - components: - - type: Transform - pos: -0.2843485,-6.5134935 - parent: 1 - - uid: 388 - components: - - type: Transform - pos: -0.6280985,-6.4093266 - parent: 1 - proto: LockerSyndicatePersonalFilled entities: - uid: 641 @@ -2900,151 +3636,125 @@ entities: parent: 1 - proto: PlastitaniumWindow entities: - - uid: 36 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - - uid: 43 + - uid: 53 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 + pos: -1.5,3.5 parent: 1 - - uid: 46 + - uid: 54 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,5.5 + pos: -3.5,3.5 parent: 1 - - uid: 47 + - uid: 55 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 + pos: -2.5,3.5 parent: 1 - - uid: 51 + - uid: 56 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 + pos: 1.5,3.5 parent: 1 - - uid: 53 + - uid: 57 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 + pos: 2.5,3.5 parent: 1 - - uid: 54 + - uid: 58 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 + pos: -1.5,5.5 parent: 1 - - uid: 55 + - uid: 59 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 + pos: 3.5,3.5 parent: 1 - - uid: 56 + - uid: 60 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 + pos: -2.5,5.5 parent: 1 - - uid: 57 + - uid: 62 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 + pos: 1.5,5.5 parent: 1 - - uid: 58 + - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-4.5 + pos: 2.5,5.5 parent: 1 - - uid: 60 + - uid: 64 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 + pos: 3.5,5.5 parent: 1 -- proto: PlastitaniumWindowIndestructible - entities: - - uid: 29 + - uid: 121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 + pos: -2.5,-2.5 parent: 1 - - uid: 30 + - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: 1.5,-4.5 parent: 1 - - uid: 31 + - uid: 124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 + pos: 2.5,-4.5 parent: 1 - - uid: 32 + - uid: 127 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 33 + - uid: 129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 + pos: -3.5,-2.5 parent: 1 - - uid: 34 + - uid: 130 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 35 + - uid: 134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 + pos: 3.5,-2.5 parent: 1 - - uid: 52 + - uid: 135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 + pos: 3.5,-4.5 parent: 1 - - uid: 59 + - uid: 136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 + pos: -3.5,-4.5 parent: 1 - - uid: 62 + - uid: 137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 + pos: -2.5,-4.5 parent: 1 - - uid: 63 + - uid: 160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + pos: -1.5,-4.5 parent: 1 - - uid: 64 + - uid: 161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + pos: 1.5,-2.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: -3.5,5.5 parent: 1 - proto: PosterContrabandC20r entities: @@ -3739,68 +4449,99 @@ entities: - type: Transform pos: 3.5,6.5 parent: 1 -- proto: SpaceCash +- proto: SpawnDungeonLootMaterialsValuableSingle entities: - - uid: 379 + - uid: 22 components: - type: Transform - pos: -1.4510152,-6.4093266 + pos: 0.12666464,-6.3046217 parent: 1 - - uid: 380 + - uid: 65 components: - type: Transform - pos: -0.2843485,-6.5030766 + pos: -1.1094465,-6.471288 parent: 1 - - uid: 381 + - uid: 68 components: - type: Transform - pos: -0.5135152,-6.4718266 + pos: 1.0155535,-6.2768435 parent: 1 -- proto: SpaceCash10 - entities: - - uid: 375 + - uid: 69 components: - type: Transform - pos: -1.4093485,-5.6072435 + pos: -1.4358354,-6.2629547 parent: 1 - - uid: 377 + - uid: 70 components: - type: Transform - pos: 0.9239849,-6.4718266 + pos: 0.35583127,-6.3393435 parent: 1 -- proto: SpaceCash100 - entities: - - uid: 370 + - uid: 71 components: - type: Transform - pos: 1.4969015,-6.2218266 + pos: -1.5886132,-6.1448994 parent: 1 - - uid: 372 + - uid: 74 components: - type: Transform - pos: 0.8406516,-6.4197435 + pos: -1.4150021,-5.3254547 parent: 1 - - uid: 373 + - uid: 75 components: - type: Transform - pos: -1.6176817,-5.2322435 + pos: 1.633609,-6.3879547 parent: 1 - - uid: 374 + - uid: 76 components: - type: Transform - pos: -1.3676817,-5.4197435 + pos: 0.38360906,-6.561566 parent: 1 -- proto: SpaceCash500 +- proto: SpawnDungeonLootSpesos entities: - - uid: 376 + - uid: 20 components: - type: Transform - pos: 1.4135683,-6.3468266 + pos: -1.4497242,-6.4157324 parent: 1 - - uid: 378 + - uid: 23 + components: + - type: Transform + pos: 1.258609,-6.5407324 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -1.4636132,-5.499066 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 1.1405535,-6.25601 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 0.91138685,-6.3879547 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: -0.69277984,-6.4296217 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -0.3872243,-6.3046217 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -0.56777984,-6.2421217 + parent: 1 + - uid: 77 components: - type: Transform - pos: -1.7530985,-5.4405766 + pos: -1.5608354,-5.3532324 parent: 1 - proto: SpawnEventContrabandCrate entities: @@ -3864,45 +4605,45 @@ entities: - type: Transform pos: -3.5,-1.5 parent: 1 -- proto: SpawnMobSyndicateNavalDeckhand +- proto: SpawnMobSyndicateNavalDeckhandVoid entities: - - uid: 24 + - uid: 78 components: - type: Transform - pos: 3.5,-5.5 + pos: -3.5,-5.5 parent: 1 - - uid: 240 + - uid: 79 components: - type: Transform - pos: -3.5,-5.5 + pos: 3.5,-6.5 parent: 1 -- proto: SpawnMobSyndicateNavalEngineer +- proto: SpawnMobSyndicateNavalEngineerVoid entities: - - uid: 25 + - uid: 81 components: - type: Transform - pos: 1.5,9.5 + pos: -1.5,9.5 parent: 1 - - uid: 26 + - uid: 83 components: - type: Transform - pos: -1.5,9.5 + pos: 2.5,8.5 parent: 1 -- proto: SpawnMobSyndicateNavalOperator +- proto: SpawnMobSyndicateNavalOperatorVoid entities: - - uid: 20 + - uid: 85 components: - type: Transform - pos: 2.5,0.5 + pos: -2.5,0.5 parent: 1 - - uid: 23 + - uid: 93 components: - type: Transform - pos: -2.5,0.5 + pos: 2.5,0.5 parent: 1 -- proto: SpawnMobSyndicateNavalSecondOfficer +- proto: SpawnMobSyndicateNavalSecondOfficerVoid entities: - - uid: 22 + - uid: 94 components: - type: Transform pos: 1.5,-8.5 @@ -4050,497 +4791,441 @@ entities: parent: 1 - proto: WallPlastitanium entities: - - uid: 61 + - uid: 30 components: - type: Transform - pos: 4.5,1.5 + pos: -4.5,-5.5 parent: 1 - - uid: 67 + - uid: 31 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 + pos: -4.5,-4.5 parent: 1 - - uid: 68 + - uid: 32 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 + pos: 4.5,-10.5 parent: 1 - - uid: 69 + - uid: 33 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-4.5 + pos: -5.5,-5.5 parent: 1 - - uid: 83 + - uid: 34 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + pos: 5.5,-9.5 parent: 1 - - uid: 115 + - uid: 35 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 + pos: -4.5,-9.5 parent: 1 - - uid: 116 + - uid: 36 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,5.5 + pos: -4.5,-10.5 parent: 1 - - uid: 117 + - uid: 43 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 + pos: -1.5,-10.5 parent: 1 - - uid: 118 + - uid: 46 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,6.5 + pos: 1.5,-10.5 parent: 1 - - uid: 119 + - uid: 47 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 + pos: 1.5,-9.5 parent: 1 - - uid: 120 + - uid: 51 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 + pos: -1.5,-9.5 parent: 1 - - uid: 121 + - uid: 52 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 + pos: 4.5,-9.5 parent: 1 - - uid: 123 + - uid: 61 components: - type: Transform - pos: -4.5,10.5 + pos: 4.5,1.5 parent: 1 - - uid: 124 + - uid: 96 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,6.5 + pos: 0.5,-4.5 parent: 1 - - uid: 125 + - uid: 97 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-5.5 + pos: -0.5,-4.5 parent: 1 - - uid: 127 + - uid: 98 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + pos: -5.5,-9.5 parent: 1 - - uid: 129 + - uid: 102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-9.5 + pos: 4.5,-4.5 parent: 1 - - uid: 130 + - uid: 103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + pos: -4.5,5.5 parent: 1 - - uid: 131 + - uid: 112 components: - type: Transform - pos: -4.5,6.5 + pos: -0.5,5.5 parent: 1 - - uid: 134 + - uid: 113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-9.5 + pos: 0.5,5.5 parent: 1 - - uid: 135 + - uid: 114 components: - type: Transform - pos: -4.5,-5.5 + pos: -0.5,6.5 parent: 1 - - uid: 136 + - uid: 115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 + pos: 0.5,6.5 parent: 1 - - uid: 137 + - uid: 116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-7.5 + pos: 4.5,5.5 parent: 1 - - uid: 138 + - uid: 117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + pos: 5.5,6.5 parent: 1 - - uid: 139 + - uid: 118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-10.5 + pos: -4.5,10.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 5.5,-5.5 parent: 1 - - uid: 140 + - uid: 125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -4.5,6.5 parent: 1 - - uid: 141 + - uid: 131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + pos: 5.5,-7.5 parent: 1 - - uid: 142 + - uid: 132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 + pos: -5.5,-7.5 parent: 1 - - uid: 151 + - uid: 138 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,11.5 parent: 1 - - uid: 152 + - uid: 139 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 1 - - uid: 153 + - uid: 140 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,11.5 parent: 1 - - uid: 154 + - uid: 141 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 1 - - uid: 155 + - uid: 142 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,10.5 parent: 1 - - uid: 156 + - uid: 151 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - - uid: 157 + - uid: 152 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,8.5 parent: 1 - - uid: 158 + - uid: 153 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 1 - - uid: 159 + - uid: 154 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 160 + - uid: 155 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 1 - - uid: 161 + - uid: 156 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,10.5 parent: 1 - - uid: 162 + - uid: 157 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 287 + - uid: 158 components: - type: Transform pos: 4.5,-5.5 parent: 1 - - uid: 288 + - uid: 159 components: - type: Transform pos: -4.5,8.5 parent: 1 - - uid: 320 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1 - - uid: 321 - components: - - type: Transform - pos: -4.5,-9.5 - parent: 1 - - uid: 322 + - uid: 162 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 323 + - uid: 240 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 324 + - uid: 241 components: - type: Transform pos: 4.5,8.5 parent: 1 -- proto: WallPlastitaniumDiagonal - entities: - - uid: 44 + - uid: 243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,5.5 + pos: -0.5,2.5 parent: 1 - - uid: 45 + - uid: 287 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 + pos: 0.5,2.5 parent: 1 - - uid: 84 + - uid: 288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-2.5 + pos: -0.5,-2.5 parent: 1 - - uid: 86 + - uid: 320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: -0.5,-1.5 parent: 1 - - uid: 99 + - uid: 321 components: - type: Transform - pos: -5.5,-4.5 + pos: 0.5,-1.5 parent: 1 - - uid: 100 + - uid: 322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 + pos: 0.5,-2.5 parent: 1 - - uid: 101 + - uid: 323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 + pos: 0.5,3.5 parent: 1 - - uid: 104 + - uid: 324 components: - type: Transform - pos: -5.5,3.5 + pos: -0.5,3.5 parent: 1 - - uid: 126 + - uid: 370 components: - type: Transform - pos: -5.5,11.5 + pos: 4.5,2.5 parent: 1 - - uid: 128 + - uid: 372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,11.5 + pos: 5.5,2.5 parent: 1 - - uid: 132 + - uid: 373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-10.5 + pos: 5.5,-1.5 parent: 1 - - uid: 133 + - uid: 374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 + pos: 4.5,-2.5 parent: 1 -- proto: WallPlastitaniumIndestructible - entities: - - uid: 65 + - uid: 375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 + pos: -4.5,-2.5 parent: 1 - - uid: 66 + - uid: 376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 + pos: -5.5,-1.5 parent: 1 - - uid: 70 + - uid: 377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 + pos: -5.5,2.5 parent: 1 - - uid: 71 + - uid: 378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + pos: -4.5,2.5 parent: 1 - - uid: 72 + - uid: 379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + pos: -4.5,3.5 parent: 1 - - uid: 73 + - uid: 380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: 4.5,-0.5 parent: 1 - - uid: 74 + - uid: 381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + pos: -4.5,1.5 parent: 1 - - uid: 75 + - uid: 382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + pos: -4.5,-1.5 parent: 1 - - uid: 76 + - uid: 383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 + pos: 4.5,-1.5 parent: 1 - - uid: 77 + - uid: 384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 + pos: 4.5,3.5 parent: 1 - - uid: 78 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 44 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,2.5 + pos: -5.5,5.5 parent: 1 - - uid: 79 + - uid: 45 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,2.5 + rot: 3.141592653589793 rad + pos: 5.5,5.5 parent: 1 - - uid: 81 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: -5.5,-2.5 parent: 1 - - uid: 85 + - uid: 86 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-2.5 + rot: 3.141592653589793 rad + pos: 5.5,-2.5 parent: 1 - - uid: 93 + - uid: 99 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-2.5 + pos: -5.5,-4.5 parent: 1 - - uid: 94 + - uid: 100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 parent: 1 - - uid: 95 + - uid: 101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 parent: 1 - - uid: 96 + - uid: 104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -5.5,3.5 parent: 1 - - uid: 97 + - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 + pos: -5.5,11.5 parent: 1 - - uid: 98 + - uid: 128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 parent: 1 - - uid: 102 + - uid: 133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -5.5,-10.5 parent: 1 - - uid: 103 + - uid: 242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + rot: 3.141592653589793 rad + pos: 5.5,-10.5 parent: 1 - - uid: 112 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 72 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + pos: -0.5,0.5 parent: 1 - - uid: 113 + - uid: 73 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 0.5,0.5 parent: 1 - - uid: 114 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: -4.5,-0.5 parent: 1 - proto: WarpPoint entities: diff --git a/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml b/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml index 46a67d353f2..fb62b0f6ba9 100644 --- a/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml +++ b/Resources/Maps/_NF/Bluespace/syndieftlintercept.yml @@ -268,93 +268,85 @@ entities: data: tiles: 0,0: - 0: 65535 - -1,0: - 0: 65535 + 0: 53247 0,-1: - 0: 65535 - -1,-1: - 0: 65535 + 0: 64725 + -1,0: + 0: 4044 0,1: - 0: 65535 + 0: 4095 + -1,1: + 0: 4095 1,0: - 0: 65535 + 0: 61315 + 1,-1: + 0: 63472 1,1: - 0: 4607 + 0: 14 + 1,2: + 1: 1 2,0: - 0: 13111 + 0: 4368 + 2,-1: + 0: 30576 2,1: - 0: 51 1: 4 -4,0: + 0: 2831 + -4,-1: 0: 65535 - -4,1: - 0: 2188 - 1: 32768 + -5,0: + 0: 3072 + 1: 102 -3,0: - 0: 65535 + 0: 20233 -3,1: 1: 255 + -4,1: + 1: 32768 + -3,-1: + 0: 37118 -2,0: - 0: 65535 + 0: 3597 + -2,-1: + 0: 53503 -2,1: - 0: 51711 - -1,1: - 0: 65535 + 0: 14 + -2,2: + 1: 8 + -1,-1: + 0: 51423 0,-2: 1: 272 - 0: 65262 + 0: 52416 + -1,-2: + 1: 3808 + 0: 16384 1,-2: - 0: 65535 - 1,-1: - 0: 65535 + 0: 28518 1,-3: - 0: 61440 1: 256 - 2,-3: - 0: 29696 - 1: 32768 2,-2: 1: 13107 - 2,-1: - 0: 30583 + 2,-3: + 1: 32768 -4,-2: - 0: 65280 - -4,-1: - 0: 65535 + 0: 61440 -3,-2: - 0: 65532 + 0: 2688 1: 2 - -3,-1: - 0: 65535 -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-2: - 0: 61713 - 1: 3808 - -5,0: - 0: 61320 - 1: 102 - -5,-2: - 0: 64512 - 1: 128 - -5,-1: - 1: 26214 - 0: 34952 - -2,2: - 1: 8 - 0,-3: - 0: 32768 - 1,2: - 1: 1 + 0: 3536 -1,-3: 1: 4096 -6,0: 1: 2048 + -5,-1: + 1: 26214 -6,-2: 1: 32768 + -5,-2: + 1: 128 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -372,7 +364,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -397,93 +389,69 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 667 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 668 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 669 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: AirlockExternalSyndicateLocked entities: - uid: 79 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,3.5 parent: 1 - uid: 230 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -16.5,2.5 parent: 1 - uid: 234 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 1 - uid: 421 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 1 - uid: 435 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - uid: 436 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-0.5 @@ -492,8 +460,6 @@ entities: entities: - uid: 232 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,2.5 @@ -502,8 +468,6 @@ entities: entities: - uid: 278 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,4.5 parent: 1 @@ -511,24 +475,18 @@ entities: entities: - uid: 431 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 1 - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-0.5 @@ -537,8 +495,6 @@ entities: entities: - uid: 41 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-2.5 parent: 1 @@ -552,8 +508,6 @@ entities: - DoorStatus: DoorBolt - uid: 109 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-3.5 parent: 1 @@ -566,40 +520,30 @@ entities: - DoorStatus: InputA - uid: 280 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - uid: 325 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 - uid: 326 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 1 - uid: 353 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,2.5 parent: 1 - uid: 459 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 @@ -1045,6 +989,56 @@ entities: parent: 1 - type: Physics bodyType: Static +- proto: BlastDoor + entities: + - uid: 84 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 910 + - uid: 905 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 910 + - uid: 906 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - type: DeviceLinkSink + links: + - 910 + - uid: 907 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 910 + - uid: 908 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 910 + - uid: 909 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 910 - proto: Bloodpack10Lingering entities: - uid: 82 @@ -1066,6 +1060,20 @@ entities: - type: Transform pos: 8.700711,3.3962235 parent: 1 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 - proto: CableApcExtension entities: - uid: 241 @@ -2211,28 +2219,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,2.5 parent: 1 -- proto: ClothingOuterHardsuitSyndie - entities: - - uid: 23 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 21 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesBootsMagSyndie - entities: - - uid: 22 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 21 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ComputerCrewMonitoring entities: - uid: 29 @@ -2529,21 +2515,16 @@ entities: - type: Transform pos: 2.64295,-1.4567201 parent: 1 -- proto: GasMixer +- proto: GasMixerOn entities: - - uid: 501 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 1 - - type: GasMixer - inletTwoConcentration: 0.79 - inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - proto: GasOutletInjector entities: - uid: 5 @@ -2552,8 +2533,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -2630,6 +2609,13 @@ entities: color: '#990000FF' - proto: GasPipeFourway entities: + - uid: 13 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 558 components: - type: Transform @@ -2675,6 +2661,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 542 components: - type: Transform @@ -2845,11 +2839,15 @@ entities: - uid: 578 components: - type: Transform + anchored: False rot: 3.141592653589793 rad pos: -0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 581 components: - type: Transform @@ -3267,14 +3265,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 612 components: - type: Transform @@ -3314,8 +3304,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#03FCD3FF' - uid: 500 @@ -3324,22 +3312,8 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#03FCD3FF' -- proto: GasPressurePump - entities: - - uid: 503 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - proto: GasVentPump entities: - uid: 592 @@ -3348,8 +3322,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 593 @@ -3358,8 +3330,6 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 594 @@ -3367,8 +3337,6 @@ entities: - type: Transform pos: 5.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 595 @@ -3377,8 +3345,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 596 @@ -3387,8 +3353,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 597 @@ -3397,8 +3361,6 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 598 @@ -3406,8 +3368,6 @@ entities: - type: Transform pos: -7.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 599 @@ -3415,8 +3375,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 600 @@ -3425,8 +3383,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -3437,8 +3393,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 603 @@ -3447,8 +3401,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 604 @@ -3456,8 +3408,6 @@ entities: - type: Transform pos: 6.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 605 @@ -3465,8 +3415,6 @@ entities: - type: Transform pos: 1.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 648 @@ -3474,8 +3422,6 @@ entities: - type: Transform pos: -4.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 649 @@ -3483,8 +3429,6 @@ entities: - type: Transform pos: -8.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 650 @@ -3493,8 +3437,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 651 @@ -3503,8 +3445,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 652 @@ -3513,8 +3453,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 664 @@ -3522,8 +3460,14 @@ entities: - type: Transform pos: 2.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GeneratorBasic15kW @@ -3654,20 +3598,45 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 1 -- proto: KitchenMicrowave +- proto: KitchenReagentGrinder entities: - - uid: 528 + - uid: 72 components: - type: Transform - pos: 2.5,-0.5 + pos: -15.5,-0.5 parent: 1 -- proto: KitchenReagentGrinder +- proto: LockableButtonCaptain entities: - - uid: 72 + - uid: 904 components: - type: Transform - pos: -15.5,-0.5 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 488: + - Pressed: Toggle + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 84: + - Pressed: Toggle + 905: + - Pressed: Toggle + 906: + - Pressed: Toggle + 907: + - Pressed: Toggle + 908: + - Pressed: Toggle + 909: + - Pressed: Toggle - proto: LockerMedicalFilled entities: - uid: 43 @@ -3759,28 +3728,6 @@ entities: - type: Transform pos: -8.5,-0.5 parent: 1 -- proto: SpawnEventContrabandCrate - entities: - - uid: 10 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 - - uid: 30 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1 - - uid: 784 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1 - - uid: 785 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1 - proto: NitrogenCanister entities: - uid: 505 @@ -3791,8 +3738,6 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: OperatingTable entities: - uid: 7 @@ -3837,8 +3782,6 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: PlasmaCanister entities: - uid: 135 @@ -3846,31 +3789,67 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: PlastitaniumWindowIndestructible +- proto: PlastitaniumWindow entities: - - uid: 45 + - uid: 21 components: - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,1.5 parent: 1 - - uid: 54 + - uid: 22 components: - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,2.5 parent: 1 - - uid: 55 + - uid: 23 components: - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 56 + - uid: 27 components: - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,5.5 parent: 1 - - uid: 59 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 +- proto: PlastitaniumWindowIndestructible + entities: + - uid: 45 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 59 components: - type: Transform pos: 6.5,5.5 @@ -3880,20 +3859,17 @@ entities: - type: Transform pos: 5.5,5.5 parent: 1 -- proto: PortableGeneratorPacman +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 439 + - uid: 18 components: - type: Transform - anchored: True pos: -1.5,-2.5 parent: 1 - - type: MaterialStorage - storage: - Plasma: 3000 + - type: FuelGenerator + on: False - type: Physics bodyType: Static - - type: InsertingMaterialStorage - proto: PowerCellRecharger entities: - uid: 38 @@ -3905,77 +3881,57 @@ entities: entities: - uid: 184 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-5.5 parent: 1 - uid: 349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-6.5 parent: 1 - uid: 371 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,2.5 parent: 1 - uid: 375 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,2.5 parent: 1 - uid: 393 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-1.5 parent: 1 - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,4.5 parent: 1 - uid: 678 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -15.5,-1.5 parent: 1 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 1 - uid: 683 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,5.5 parent: 1 - uid: 741 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 @@ -3984,56 +3940,42 @@ entities: entities: - uid: 671 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,2.5 parent: 1 - uid: 672 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-1.5 parent: 1 - uid: 673 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 1 - uid: 674 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-5.5 parent: 1 - uid: 676 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,-3.5 parent: 1 - uid: 677 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,-3.5 @@ -4042,16 +3984,12 @@ entities: entities: - uid: 133 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 1 - uid: 142 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,-0.5 @@ -4258,76 +4196,8 @@ entities: parent: 1 - proto: ShuttersNormal entities: - - uid: 11 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 - parent: 1 - - type: DeviceLinkSink - links: - - 27 - - uid: 12 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - - type: DeviceLinkSink - links: - - 27 - - uid: 13 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 1 - - type: DeviceLinkSink - links: - - 27 - - uid: 14 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 27 - - uid: 15 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 27 - - uid: 18 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 1 - - type: DeviceLinkSink - links: - - 27 - uid: 155 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-4.5 parent: 1 @@ -4336,8 +4206,6 @@ entities: - 35 - uid: 157 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-1.5 parent: 1 @@ -4348,8 +4216,6 @@ entities: - 35 - uid: 158 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-4.5 parent: 1 @@ -4360,8 +4226,6 @@ entities: - 35 - uid: 165 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-4.5 parent: 1 @@ -4372,8 +4236,6 @@ entities: - 35 - uid: 166 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-1.5 parent: 1 @@ -4391,29 +4253,9 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 759 + - 904 - proto: SignalButton entities: - - uid: 27 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 18: - - Pressed: Toggle - 15: - - Pressed: Toggle - 14: - - Pressed: Toggle - 13: - - Pressed: Toggle - 12: - - Pressed: Toggle - 11: - - Pressed: Toggle - uid: 69 components: - type: Transform @@ -4456,16 +4298,6 @@ entities: - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 488: - - Pressed: Toggle - proto: SignBiohazardMed entities: - uid: 510 @@ -4567,12 +4399,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5446186,6.2740526 parent: 1 - - uid: 875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.963622,-6.613129 - parent: 1 - uid: 877 components: - type: Transform @@ -4597,23 +4423,87 @@ entities: - type: Transform pos: -1.4448197,6.456311 parent: 1 - - uid: 874 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.553066,-0.10241544 + parent: 1 +- proto: SpawnDungeonLootSpesos + entities: + - uid: 88 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.249184,3.093674 + pos: 3.0680318,-6.542336 parent: 1 - - uid: 876 + - uid: 89 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.0560155,-6.427967 + rot: -1.5707963267948966 rad + pos: 8.225948,3.164299 parent: 1 - - uid: 880 + - uid: 93 + components: + - type: Transform + pos: 3.0367818,-6.292336 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.041646004,1.5585489 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 1.052104,1.4179239 + parent: 1 + - uid: 899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.522823,3.117424 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3867111,6.304924 + parent: 1 + - uid: 901 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.553066,-0.10241544 + pos: 3.2035103,-6.2541456 + parent: 1 + - uid: 902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.591427,-0.31664538 + parent: 1 +- proto: SpawnEventContrabandCrate + entities: + - uid: 10 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: -4.5,2.5 parent: 1 - proto: SpawnMobCleanBot entities: @@ -4654,16 +4544,23 @@ entities: - type: Transform pos: -8.5,0.5 parent: 1 -- proto: SpawnMobSyndicateNavalCaptain +- proto: SpawnMobSyndicateNavalCaptainVoid entities: - - uid: 777 + - uid: 94 components: - type: Transform pos: 6.5,3.5 parent: 1 -- proto: SpawnMobSyndicateNavalEngineer +- proto: SpawnMobSyndicateNavalDeckhandVoid entities: - - uid: 779 + - uid: 98 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: SpawnMobSyndicateNavalEngineerVoid + entities: + - uid: 95 components: - type: Transform pos: 5.5,-5.5 @@ -4675,7 +4572,7 @@ entities: - type: Transform pos: -5.5,4.5 parent: 1 -- proto: SpawnMobSyndicateNavalMedic +- proto: SpawnMobSyndicateNavalMedicVoid entities: - uid: 772 components: @@ -4685,40 +4582,33 @@ entities: - uid: 792 components: - type: Transform - pos: -14.5,-1.5 + pos: -12.5,-0.5 parent: 1 - uid: 793 components: - type: Transform - pos: -12.5,-0.5 + pos: -14.5,-1.5 parent: 1 -- proto: SpawnMobSyndicateNavalOperator +- proto: SpawnMobSyndicateNavalOperatorVoid entities: - - uid: 28 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1 - - uid: 782 + - uid: 96 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 787 + - uid: 97 components: - type: Transform - pos: -2.5,5.5 + pos: 0.5,2.5 parent: 1 -- proto: SpawnMobSyndicateNavalSaboteur - entities: - - uid: 870 + - uid: 99 components: - type: Transform - pos: -0.5,5.5 + pos: 0.5,5.5 parent: 1 -- proto: SpawnMobSyndicateNavalSecondOfficer +- proto: SpawnMobSyndicateNavalSecondOfficerVoid entities: - - uid: 778 + - uid: 102 components: - type: Transform pos: 7.5,2.5 @@ -4742,46 +4632,8 @@ entities: - type: Transform pos: -1.5,-0.5 parent: 1 -- proto: SuitStorageBase - entities: - - uid: 21 - components: - - type: Transform - pos: 5.5,3.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22 - - 23 - proto: SuitStorageEVASyndicate entities: - - uid: 40 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1 - uid: 319 components: - type: Transform @@ -4792,14 +4644,26 @@ entities: - type: Transform pos: 3.5,6.5 parent: 1 -- proto: SurveillanceCameraMedical +- proto: SuitStorageSyndie entities: - - uid: 87 + - uid: 11 components: - type: Transform - pos: -7.5,-6.5 + pos: 5.5,3.5 parent: 1 - - uid: 147 + - uid: 103 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 +- proto: SurveillanceCameraMedical + entities: + - uid: 87 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 147 components: - type: Transform rot: 3.141592653589793 rad @@ -4823,6 +4687,13 @@ entities: - type: Transform pos: -15.5,-4.5 parent: 1 +- proto: SyndicateMicrowave + entities: + - uid: 15 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 - proto: Table entities: - uid: 392 @@ -5079,1023 +4950,735 @@ entities: rot: 3.141592653589793 rad pos: -5.5,1.5 parent: 1 -- proto: WallPlastitaniumIndestructible +- proto: WallPlastitanium entities: - - uid: 84 + - uid: 108 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,-3.5 parent: 1 - - uid: 85 + - uid: 110 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,3.5 parent: 1 - - uid: 88 + - uid: 111 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,3.5 parent: 1 - - uid: 89 + - uid: 115 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,3.5 parent: 1 - - uid: 93 + - uid: 116 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -15.5,1.5 parent: 1 - - uid: 94 + - uid: 120 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,1.5 parent: 1 - - uid: 95 + - uid: 123 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 96 + - uid: 129 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,1.5 parent: 1 - - uid: 97 + - uid: 130 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 98 + - uid: 131 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 99 + - uid: 132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -15.5,3.5 parent: 1 - - uid: 102 + - uid: 136 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,3.5 parent: 1 - - uid: 103 + - uid: 137 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,2.5 parent: 1 - - uid: 108 + - uid: 138 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,-5.5 parent: 1 - - uid: 110 + - uid: 139 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-5.5 parent: 1 - - uid: 111 + - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,1.5 parent: 1 - - uid: 115 + - uid: 141 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,-5.5 parent: 1 - - uid: 116 + - uid: 145 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,1.5 parent: 1 - - uid: 120 + - uid: 175 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,-4.5 parent: 1 - - uid: 123 + - uid: 176 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 129 + - uid: 177 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,3.5 parent: 1 - - uid: 130 + - uid: 182 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,-0.5 parent: 1 - - uid: 131 + - uid: 183 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,-2.5 parent: 1 - - uid: 132 + - uid: 186 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 136 + - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,3.5 parent: 1 - - uid: 137 + - uid: 188 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,-1.5 parent: 1 - - uid: 138 + - uid: 189 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,0.5 parent: 1 - - uid: 139 + - uid: 195 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 140 + - uid: 196 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,-8.5 + pos: 3.5,-7.5 parent: 1 - - uid: 141 + - uid: 198 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 145 + - uid: 200 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 176 + - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 177 + - uid: 202 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 182 + - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-7.5 parent: 1 - - uid: 183 + - uid: 204 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 186 + - uid: 205 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 187 + - uid: 206 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 188 + - uid: 208 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 189 + - uid: 209 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 195 + - uid: 210 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 196 + - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -15.5,-5.5 parent: 1 - - uid: 198 + - uid: 233 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,-5.5 parent: 1 - - uid: 200 + - uid: 235 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-6.5 parent: 1 - - uid: 201 + - uid: 236 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-6.5 parent: 1 - - uid: 202 + - uid: 238 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-5.5 parent: 1 - - uid: 203 + - uid: 239 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 204 + - uid: 274 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,3.5 parent: 1 - - uid: 205 + - uid: 275 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 206 + - uid: 276 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,3.5 parent: 1 - - uid: 208 + - uid: 281 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,-4.5 parent: 1 - - uid: 209 + - uid: 288 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -18.5,-4.5 parent: 1 - - uid: 210 + - uid: 295 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -19.5,2.5 parent: 1 - - uid: 211 + - uid: 297 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -19.5,-4.5 parent: 1 - - uid: 233 + - uid: 298 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-5.5 + pos: 7.5,-6.5 parent: 1 - - uid: 235 + - uid: 299 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-6.5 + pos: 1.5,-4.5 parent: 1 - - uid: 236 + - uid: 300 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 238 + - uid: 301 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 239 + - uid: 302 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-4.5 + pos: 7.5,-7.5 parent: 1 - - uid: 274 + - uid: 303 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 275 + - uid: 304 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,7.5 parent: 1 - - uid: 276 + - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 281 + - uid: 308 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 295 + - uid: 310 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 297 + - uid: 312 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 298 + - uid: 313 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 299 + - uid: 318 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 300 + - uid: 320 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 301 + - uid: 321 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 302 + - uid: 323 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 303 + - uid: 324 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 304 + - uid: 327 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 305 + - uid: 328 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 308 + - uid: 330 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 310 + - uid: 350 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 312 + - uid: 351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 313 + - uid: 352 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 318 + - uid: 354 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 320 + - uid: 355 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 321 + - uid: 356 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 323 + - uid: 357 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,0.5 parent: 1 - - uid: 324 + - uid: 358 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,0.5 parent: 1 - - uid: 327 + - uid: 365 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,0.5 parent: 1 - - uid: 328 + - uid: 366 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-3.5 parent: 1 - - uid: 329 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 7.5,-1.5 - parent: 1 - - uid: 330 + - uid: 367 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-3.5 parent: 1 - - uid: 350 + - uid: 368 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-3.5 parent: 1 - - uid: 351 + - uid: 369 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-8.5 parent: 1 - - uid: 352 + - uid: 370 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-8.5 parent: 1 - - uid: 354 + - uid: 437 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,-8.5 + pos: 4.5,-8.5 parent: 1 - - uid: 355 + - uid: 439 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,-7.5 + pos: 6.5,-8.5 parent: 1 - - uid: 356 + - uid: 440 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,-6.5 + pos: 7.5,-8.5 parent: 1 - - uid: 357 + - uid: 444 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-3.5 parent: 1 - - uid: 358 + - uid: 501 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,-7.5 + pos: 1.5,-6.5 parent: 1 - - uid: 365 + - uid: 503 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-7.5 + pos: 1.5,-5.5 parent: 1 - - uid: 366 + - uid: 528 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 4.5,-7.5 + pos: 2.5,-7.5 parent: 1 - - uid: 367 + - uid: 606 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-4.5 parent: 1 - - uid: 368 + - uid: 759 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 369 + - uid: 777 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 6.5,-8.5 + pos: 4.5,-7.5 parent: 1 - - uid: 370 + - uid: 778 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-7.5 + pos: 1.5,-7.5 parent: 1 - - uid: 437 + - uid: 779 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,3.5 parent: 1 - - uid: 440 + - uid: 782 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 444 + - uid: 783 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,3.5 parent: 1 - uid: 786 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-8.5 parent: 1 - - uid: 833 + - uid: 787 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 845 + - uid: 833 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,6.5 parent: 1 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 329 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 - proto: WallReinforced entities: - uid: 380 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-5.5 parent: 1 - uid: 381 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-4.5 parent: 1 - uid: 385 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-1.5 parent: 1 - uid: 395 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-3.5 parent: 1 - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-4.5 parent: 1 - uid: 399 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-1.5 parent: 1 - uid: 400 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-0.5 parent: 1 - uid: 401 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-4.5 parent: 1 - uid: 409 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-6.5 parent: 1 - uid: 410 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 1 - uid: 411 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,1.5 parent: 1 - uid: 412 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-2.5 parent: 1 - uid: 413 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-1.5 parent: 1 - uid: 416 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-0.5 parent: 1 - uid: 417 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-5.5 parent: 1 - uid: 418 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 1 - uid: 419 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-4.5 parent: 1 - uid: 420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-4.5 parent: 1 - uid: 427 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,0.5 parent: 1 - uid: 447 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,3.5 parent: 1 - uid: 448 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,3.5 parent: 1 - uid: 449 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-3.5 parent: 1 - uid: 450 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-2.5 parent: 1 - uid: 458 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-1.5 parent: 1 - uid: 498 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-1.5 parent: 1 - uid: 508 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,3.5 parent: 1 - uid: 517 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,3.5 parent: 1 - uid: 518 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,3.5 parent: 1 - uid: 543 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,3.5 parent: 1 - uid: 544 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 1 - uid: 545 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 1 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,1.5 parent: 1 - uid: 547 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,1.5 parent: 1 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,1.5 parent: 1 - uid: 549 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,0.5 parent: 1 - uid: 660 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-3.5 parent: 1 - uid: 662 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-3.5 parent: 1 - uid: 770 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-3.5 parent: 1 - uid: 780 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-1.5 parent: 1 - uid: 781 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-3.5 parent: 1 @@ -6103,144 +5686,108 @@ entities: entities: - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,1.5 parent: 1 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 1 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,0.5 parent: 1 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,-1.5 parent: 1 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 1 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 1 - uid: 127 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 1 - uid: 128 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - uid: 134 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,1.5 parent: 1 - uid: 144 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 1 - uid: 148 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,1.5 parent: 1 - uid: 149 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 1 - uid: 150 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 1 - uid: 151 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,-1.5 parent: 1 - uid: 152 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,-1.5 @@ -6277,72 +5824,78 @@ entities: - type: Transform pos: 0.5,-0.5 parent: 1 -- proto: WeaponTurretSyndicate +- proto: WeaponTurretLaserSyndicateNF entities: - - uid: 175 + - uid: 845 components: - type: Transform - rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 1 - - uid: 279 + - uid: 846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 + pos: 10.5,4.5 parent: 1 - - uid: 288 + - uid: 864 components: - type: Transform - pos: 10.5,4.5 + pos: -3.5,2.5 parent: 1 - - uid: 433 + - uid: 865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-1.5 + pos: -3.5,-8.5 parent: 1 - - uid: 783 + - uid: 870 components: - type: Transform - pos: -3.5,2.5 + pos: -4.5,8.5 parent: 1 - - uid: 846 + - uid: 874 components: - type: Transform - pos: -3.5,-8.5 + pos: 11.5,-8.5 parent: 1 - - uid: 852 + - uid: 876 components: - type: Transform - pos: -10.5,-7.5 + pos: -16.5,-6.5 parent: 1 - - uid: 857 +- proto: WeaponTurretSyndicate + entities: + - uid: 279 components: - type: Transform - pos: -20.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 - - uid: 860 + - uid: 433 components: - type: Transform - pos: 4.5,-9.5 + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 parent: 1 - - uid: 864 + - uid: 852 components: - type: Transform - pos: -4.5,8.5 + pos: -10.5,-7.5 parent: 1 - - uid: 865 + - uid: 857 components: - type: Transform - pos: 11.5,-8.5 + pos: -20.5,-4.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 4.5,-9.5 parent: 1 - uid: 866 components: - type: Transform pos: -20.5,2.5 parent: 1 - - uid: 882 + - uid: 875 components: - type: Transform pos: -12.5,7.5 @@ -6353,11 +5906,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,8.5 parent: 1 - - uid: 892 - components: - - type: Transform - pos: -16.5,-6.5 - parent: 1 - proto: WindoorSecure entities: - uid: 883 diff --git a/Resources/Maps/_NF/POI/cove.yml b/Resources/Maps/_NF/POI/cove.yml index 9a16746ce3b..67384c5a724 100644 --- a/Resources/Maps/_NF/POI/cove.yml +++ b/Resources/Maps/_NF/POI/cove.yml @@ -72,7 +72,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: BQAAAAAEBQAAAAAEBQAAAAAABQAAAAABBQAAAAAABQAAAAADBgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAADBQAAAAAABQAAAAAEAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACBAAAAAABAgAAAAABAgAAAAADAgAAAAABBgAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAAABAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAAABAAAAAABAgAAAAADAgAAAAABAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALBgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAABAgAAAAADAgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAAEBQAAAAAEBQAAAAAABQAAAAABBQAAAAAABQAAAAADBgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAADBQAAAAAABQAAAAAEAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACBAAAAAABAgAAAAABAgAAAAADAgAAAAABBgAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAAABAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAAABAAAAAABAgAAAAADAgAAAAABAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALBgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAABAgAAAAADAgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 @@ -969,7 +969,7 @@ entities: -3,9: 3: 2176 -2,9: - 0: 2188 + 0: 2252 -1,9: 0: 2047 0,8: @@ -4831,20 +4831,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.565144,23.719187 parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 1 - - uid: 596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 1 - proto: ChairWood entities: - uid: 177 @@ -4923,6 +4909,24 @@ entities: rot: 1.5707963267948966 rad pos: 8.650677,-4.36273 parent: 1 + - uid: 2085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 1 + - uid: 2086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 2087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 1 - proto: Cigar entities: - uid: 190 @@ -5083,6 +5087,13 @@ entities: - type: Transform pos: -8.5,1.5 parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 2083 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 - proto: ComputerTabletopSurveillanceCameraMonitor entities: - uid: 1082 @@ -5306,6 +5317,12 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 1 + - uid: 1697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 - proto: DisposalJunction entities: - uid: 272 @@ -5508,12 +5525,6 @@ entities: parent: 1 - proto: DisposalTrunk entities: - - uid: 248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 1 - uid: 303 components: - type: Transform @@ -5558,11 +5569,6 @@ entities: - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 540 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - uid: 930 components: - type: Transform @@ -5573,14 +5579,6 @@ entities: - type: Transform pos: 6.5,5.5 parent: 1 -- proto: DisposalYJunction - entities: - - uid: 333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - proto: DogBed entities: - uid: 844 @@ -5616,7 +5614,7 @@ entities: parent: 1 - proto: Dresser entities: - - uid: 1697 + - uid: 1698 components: - type: Transform pos: -5.5,34.5 @@ -5939,7 +5937,7 @@ entities: pos: 7.5,28.5 parent: 1 - type: Door - secondsUntilStateChange: -3815.918 + secondsUntilStateChange: -4571.74 state: Opening - proto: FenceWoodSmallCorner entities: @@ -8083,6 +8081,12 @@ entities: parent: 1 - proto: PirateFlag entities: + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,34.5 + parent: 1 - uid: 498 components: - type: Transform @@ -8513,6 +8517,12 @@ entities: - type: Transform pos: -14.5,21.5 parent: 1 + - uid: 2089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,20.5 + parent: 1 - proto: Railing entities: - uid: 3 @@ -9509,6 +9519,38 @@ entities: - type: Transform pos: -2.4656801,35.75333 parent: 1 +- proto: SpaceHeaterEnabled + entities: + - uid: 213 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + pos: -14.5,26.5 + parent: 1 + - uid: 2082 + components: + - type: Transform + pos: -5.5,36.5 + parent: 1 + - uid: 2088 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 - proto: SpaceVillainArcadeFilled entities: - uid: 268 @@ -9535,24 +9577,24 @@ entities: parent: 1 - proto: SpawnPointPirate entities: - - uid: 14 + - uid: 93 components: - type: Transform - pos: 1.5,1.5 + pos: -5.5,9.5 parent: 1 - proto: SpawnPointPirateCaptain entities: - uid: 52 components: - type: Transform - pos: 0.5,1.5 + pos: -6.5,9.5 parent: 1 - proto: SpawnPointPirateFirstMate entities: - - uid: 93 + - uid: 14 components: - type: Transform - pos: -0.5,1.5 + pos: -7.5,9.5 parent: 1 - proto: SpeedLoaderRifleHeavy entities: @@ -9622,6 +9664,18 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 1 +- proto: Stunbaton + entities: + - uid: 2090 + components: + - type: Transform + pos: -14.583857,20.614092 + parent: 1 + - uid: 2091 + components: + - type: Transform + pos: -14.260941,20.572426 + parent: 1 - proto: SubstationBasic entities: - uid: 289 @@ -9921,6 +9975,11 @@ entities: - type: Transform pos: 4.5,7.5 parent: 1 + - uid: 2084 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 - proto: TableWood entities: - uid: 11 @@ -10074,19 +10133,28 @@ entities: - type: Transform pos: -14.5,14.5 parent: 1 -- proto: TargetClown +- proto: TargetDarts entities: - - uid: 1992 + - uid: 1750 components: - type: Transform - pos: -10.5,28.5 + pos: -12.5,30.5 parent: 1 -- proto: TargetDarts +- proto: TargetHuman entities: - - uid: 1750 + - uid: 596 components: - type: Transform - pos: -12.5,30.5 + rot: -1.5707963267948966 rad + pos: -10.5,29.5 + parent: 1 +- proto: TargetStrange + entities: + - uid: 2092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,29.5 parent: 1 - proto: TelecomServerFilledFreelance entities: @@ -12014,11 +12082,6 @@ entities: - type: Transform pos: -7.5,37.5 parent: 1 - - uid: 1720 - components: - - type: Transform - pos: -6.5,38.5 - parent: 1 - uid: 1721 components: - type: Transform @@ -12625,12 +12688,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,35.5 parent: 1 - - uid: 1712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 1 - uid: 1714 components: - type: Transform @@ -12661,6 +12718,11 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,38.5 parent: 1 + - uid: 1720 + components: + - type: Transform + pos: -6.5,38.5 + parent: 1 - uid: 1723 components: - type: Transform @@ -12800,18 +12862,18 @@ entities: parent: 1 - proto: WallWoodDiagonal entities: - - uid: 1698 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,36.5 - parent: 1 - uid: 1711 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 1 + - uid: 1992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 1 - proto: WarpPointNFCove entities: - uid: 327 diff --git a/Resources/Maps/_NF/POI/lodge.yml b/Resources/Maps/_NF/POI/lodge.yml index 59c268101e4..25c822a90cd 100644 --- a/Resources/Maps/_NF/POI/lodge.yml +++ b/Resources/Maps/_NF/POI/lodge.yml @@ -56,11 +56,11 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAACJgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAAAaQAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABaQAAAAAAHgAAAAAAHgAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAACJgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAHgAAAAACHgAAAAACHgAAAAAAaQAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABaQAAAAAAHgAAAAAAHgAAAAAB version: 6 1,0: ind: 1,0 - tiles: HgAAAAACHgAAAAAAHgAAAAACaQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAABaQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAaQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAABJgAAAAACIwAAAAABIwAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAADegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAACHgAAAAAAHgAAAAACaQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAABaQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAaQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAABJgAAAAACIwAAAAABIwAAAAADegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAIwAAAAAAIwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAADegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAACegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 @@ -72,23 +72,23 @@ entities: version: 6 2,0: ind: 2,0 - tiles: HgAAAAABegAAAAAAJQAAAAADaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACegAAAAAAJQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAABaQAAAAAAJQAAAAADaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACaQAAAAAAJQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAJQAAAAACaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAaQAAAAAAJQAAAAACaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADegAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAADHgAAAAADegAAAAAAIwAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADegAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAADaQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAACaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAADaQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAACaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJgAAAAABJgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAIwAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADegAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAADHgAAAAADegAAAAAAIwAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAaQAAAAAAHgAAAAACHgAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADegAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAADaQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAACaQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAADaQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAACaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJgAAAAABJgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: egAAAAAAAwAAAAAAAwAAAAAAegAAAAAAAQAAAAACAQAAAAABIwAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAAAwAAAAAAegAAAAAAIwAAAAADAQAAAAAAIwAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAHgAAAAABHgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAagAAAAAAagAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAACaQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAAAwAAAAAAAwAAAAAAegAAAAAAAQAAAAACAQAAAAABIwAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAegAAAAAAIwAAAAADAQAAAAAAIwAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAHgAAAAABHgAAAAADaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADegAAAAAAagAAAAAAagAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACegAAAAAAHgAAAAADHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAACaQAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAACaQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJgAAAAAAaQAAAAAAHgAAAAACHgAAAAABHgAAAAADaQAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJgAAAAADaQAAAAAAHgAAAAACHgAAAAADHgAAAAAAaQAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJgAAAAADaQAAAAAAHgAAAAACHgAAAAABHgAAAAADaQAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAACJgAAAAAAJgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAJgAAAAAAaQAAAAAAHgAAAAACHgAAAAABHgAAAAADaQAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAJgAAAAADaQAAAAAAHgAAAAACHgAAAAADHgAAAAAAaQAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAJgAAAAADaQAAAAAAHgAAAAACHgAAAAABHgAAAAADaQAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAJgAAAAACJgAAAAAAJgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 @@ -116,353 +116,383 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#B8B873FF' + id: ArrowsGreyscale + decals: + 1686: 14,7 - node: angle: 1.5707963267948966 rad color: '#B8B873FF' id: ArrowsGreyscale decals: - 723: 9,16 - 724: 9,15 - 725: 9,14 - 726: 9,13 + 720: 9,16 + 721: 9,15 + 722: 9,14 + 723: 9,13 - node: angle: 3.141592653589793 rad color: '#B8B873FF' id: ArrowsGreyscale decals: - 681: 13,10 - 682: 14,10 - 683: 15,10 + 678: 13,10 + 679: 14,10 + 680: 15,10 + 1683: 13,22 + 1684: -13,22 + 1685: 0,2 - node: color: '#52B4E996' id: BotGreyscale decals: - 1203: -12,17 + 1191: -12,17 - node: color: '#52B4E9FF' id: BotGreyscale decals: - 1066: -10,16 - 1067: -10,17 - 1216: -10,15 + 1054: -10,16 + 1055: -10,17 + 1204: -10,15 - node: color: '#B8B873FF' id: BotLeft decals: - 719: 9,16 - 720: 9,15 - 721: 9,14 - 722: 9,13 + 716: 9,16 + 717: 9,15 + 718: 9,14 + 719: 9,13 - node: color: '#B8B873FF' id: BotLeftGreyscale decals: - 686: 15,7 - 687: 16,7 - 688: 17,7 - 689: 17,8 - 690: 16,8 - 691: 15,8 + 683: 15,7 + 684: 16,7 + 685: 17,7 + 686: 17,8 + 687: 16,8 + 688: 15,8 - node: color: '#B8B873FF' id: BoxGreyscale decals: - 740: 7,17 + 1681: 7,16 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 734: 12,16 - 735: 12,14 - 736: 14,14 - 737: 14,16 - 738: 8,16 - 739: 8,14 + 731: 12,16 + 732: 12,14 + 733: 14,14 + 734: 14,16 + 735: 8,16 + 736: 8,14 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 980: 18,2 - 1028: -11,4 - 1198: 13,4 + 968: 18,2 + 1016: -11,4 + 1186: 13,4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1026: -18,2 - 1027: -13,4 - 1197: 11,4 + 1014: -18,2 + 1015: -13,4 + 1185: 11,4 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1137: -8,19 - 1161: 6,19 - 1165: -4,16 - 1166: 5,16 - 1169: 18,19 + 1125: -8,19 + 1149: 6,19 + 1153: -4,16 + 1154: 5,16 + 1157: 18,19 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1125: -18,19 - 1140: -6,19 - 1164: -5,16 - 1167: 4,16 - 1168: 8,19 + 1113: -18,19 + 1128: -6,19 + 1152: -5,16 + 1155: 4,16 + 1156: 8,19 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 981: 18,1 - 1029: -11,3 - 1034: 13,2 + 969: 18,1 + 1017: -11,3 + 1022: 13,2 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1025: -18,1 - 1030: -13,2 - 1033: 11,3 + 1013: -18,1 + 1018: -13,2 + 1021: 11,3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1138: -8,20 - 1147: -4,20 - 1162: 5,19 - 1163: 6,20 - 1180: 18,21 + 1126: -8,20 + 1135: -4,20 + 1150: 5,19 + 1151: 6,20 + 1168: 18,21 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1127: -18,21 - 1139: -6,20 - 1141: -5,19 - 1155: 4,20 - 1181: 8,20 + 1115: -18,21 + 1127: -6,20 + 1129: -5,19 + 1143: 4,20 + 1169: 8,20 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 995: 13,3 - 1144: -4,17 - 1145: -4,18 - 1146: -4,19 - 1159: 5,17 - 1160: 5,18 - 1179: 18,20 + 983: 13,3 + 1132: -4,17 + 1133: -4,18 + 1134: -4,19 + 1147: 5,17 + 1148: 5,18 + 1167: 18,20 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 788: -18,23 - 789: -17,23 - 790: -16,23 - 791: -15,23 - 792: -14,23 - 793: -13,23 - 794: -12,23 - 795: -11,23 - 796: -10,23 - 797: -9,23 - 798: -8,23 - 799: -6,23 - 800: -5,23 - 801: -4,23 - 802: -3,23 - 803: -2,23 - 804: -1,23 - 805: 0,23 - 806: 1,23 - 807: 2,23 - 808: 3,23 - 809: 4,23 - 810: 5,23 - 811: 6,23 - 812: 8,23 - 813: 9,23 - 814: 10,23 - 815: 11,23 - 816: 12,23 - 817: 13,23 - 818: 14,23 - 819: 15,23 - 820: 16,23 - 821: 17,23 - 822: 18,23 - 982: 20,1 - 983: 21,1 - 984: 22,1 - 985: 23,1 - 986: 24,1 - 987: 25,1 - 988: 26,1 - 989: 27,1 - 990: 28,1 - 991: 17,2 - 992: 16,2 - 993: 15,2 - 994: 14,2 - 996: 10,3 - 997: 9,3 - 998: 8,3 - 999: 7,3 - 1000: 6,3 - 1001: 1,3 - 1002: 2,3 - 1003: 0,3 - 1004: -1,3 - 1005: -2,3 - 1006: -6,3 - 1007: -7,3 - 1008: -8,3 - 1009: -9,3 - 1010: -10,3 - 1011: -12,4 - 1012: -14,2 - 1013: -15,2 - 1014: -16,2 - 1015: -17,2 - 1016: -20,1 - 1017: -22,1 - 1018: -21,1 - 1019: -23,1 - 1020: -24,1 - 1021: -25,1 - 1022: -26,1 - 1023: -27,1 - 1024: -28,1 - 1047: -5,3 - 1048: -4,3 - 1049: -3,3 - 1050: 3,3 - 1051: 4,3 - 1052: 5,3 - 1199: 12,4 + 780: -18,23 + 781: -17,23 + 782: -16,23 + 783: -15,23 + 784: -14,23 + 785: -13,23 + 786: -12,23 + 787: -11,23 + 788: -10,23 + 789: -9,23 + 790: -5,23 + 791: -4,23 + 792: -3,23 + 793: -2,23 + 794: -1,23 + 795: 0,23 + 796: 1,23 + 797: 2,23 + 798: 3,23 + 799: 4,23 + 800: 5,23 + 801: 9,23 + 802: 10,23 + 803: 11,23 + 804: 12,23 + 805: 13,23 + 806: 14,23 + 807: 15,23 + 808: 16,23 + 809: 17,23 + 810: 18,23 + 970: 20,1 + 971: 21,1 + 972: 22,1 + 973: 23,1 + 974: 24,1 + 975: 25,1 + 976: 26,1 + 977: 27,1 + 978: 28,1 + 979: 17,2 + 980: 16,2 + 981: 15,2 + 982: 14,2 + 984: 10,3 + 985: 9,3 + 986: 8,3 + 987: 7,3 + 988: 6,3 + 989: 1,3 + 990: 2,3 + 991: 0,3 + 992: -1,3 + 993: -2,3 + 994: -6,3 + 995: -7,3 + 996: -8,3 + 997: -9,3 + 998: -10,3 + 999: -12,4 + 1000: -14,2 + 1001: -15,2 + 1002: -16,2 + 1003: -17,2 + 1004: -20,1 + 1005: -22,1 + 1006: -21,1 + 1007: -23,1 + 1008: -24,1 + 1009: -25,1 + 1010: -26,1 + 1011: -27,1 + 1012: -28,1 + 1035: -5,3 + 1036: -4,3 + 1037: -3,3 + 1038: 3,3 + 1039: 4,3 + 1040: 5,3 + 1187: 12,4 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 875: 28,-1 - 876: 27,-1 - 877: 26,-1 - 878: 25,-1 - 879: 24,-1 - 880: 23,-1 - 881: 22,-1 - 882: 21,-1 - 883: 20,-1 - 884: 18,-1 - 885: 17,-1 - 886: 16,-1 - 887: 15,-1 - 888: 14,-1 - 889: 13,-1 - 890: 12,-1 - 891: 11,-1 - 892: 10,-1 - 893: 9,-1 - 894: 8,-1 - 895: 7,-1 - 896: 6,-1 - 897: 5,-1 - 898: 4,-1 - 899: 3,-1 - 900: 2,-1 - 901: -2,-1 - 902: -3,-1 - 903: -4,-1 - 904: -5,-1 - 905: -6,-1 - 906: -7,-1 - 907: -8,-1 - 908: -9,-1 - 909: -10,-1 - 910: -11,-1 - 911: -12,-1 - 912: -13,-1 - 913: -14,-1 - 914: -15,-1 - 915: -16,-1 - 916: -17,-1 - 917: -18,-1 - 918: -20,-1 - 919: -21,-1 - 920: -23,-1 - 921: -22,-1 - 922: -24,-1 - 923: -25,-1 - 924: -26,-1 - 925: -27,-1 - 926: -28,-1 - 1044: -1,-1 - 1045: 0,-1 - 1046: 1,-1 - 1128: -17,19 - 1129: -16,19 - 1130: -15,19 - 1131: -14,19 - 1132: -13,19 - 1133: -12,19 - 1134: -11,19 - 1135: -10,19 - 1136: -9,19 - 1148: -3,20 - 1149: -2,20 - 1150: -1,20 - 1151: 0,20 - 1152: 1,20 - 1153: 2,20 - 1154: 3,20 - 1170: 9,19 - 1171: 10,19 - 1172: 11,19 - 1173: 12,19 - 1174: 13,19 - 1175: 14,19 - 1176: 15,19 - 1177: 16,19 - 1178: 17,19 + 863: 28,-1 + 864: 27,-1 + 865: 26,-1 + 866: 25,-1 + 867: 24,-1 + 868: 23,-1 + 869: 22,-1 + 870: 21,-1 + 871: 20,-1 + 872: 18,-1 + 873: 17,-1 + 874: 16,-1 + 875: 15,-1 + 876: 14,-1 + 877: 13,-1 + 878: 12,-1 + 879: 11,-1 + 880: 10,-1 + 881: 9,-1 + 882: 8,-1 + 883: 7,-1 + 884: 6,-1 + 885: 5,-1 + 886: 4,-1 + 887: 3,-1 + 888: 2,-1 + 889: -2,-1 + 890: -3,-1 + 891: -4,-1 + 892: -5,-1 + 893: -6,-1 + 894: -7,-1 + 895: -8,-1 + 896: -9,-1 + 897: -10,-1 + 898: -11,-1 + 899: -12,-1 + 900: -13,-1 + 901: -14,-1 + 902: -15,-1 + 903: -16,-1 + 904: -17,-1 + 905: -18,-1 + 906: -20,-1 + 907: -21,-1 + 908: -23,-1 + 909: -22,-1 + 910: -24,-1 + 911: -25,-1 + 912: -26,-1 + 913: -27,-1 + 914: -28,-1 + 1032: -1,-1 + 1033: 0,-1 + 1034: 1,-1 + 1116: -17,19 + 1117: -16,19 + 1118: -15,19 + 1119: -14,19 + 1120: -13,19 + 1121: -12,19 + 1122: -11,19 + 1123: -10,19 + 1124: -9,19 + 1136: -3,20 + 1137: -2,20 + 1138: -1,20 + 1139: 0,20 + 1140: 1,20 + 1141: 2,20 + 1142: 3,20 + 1158: 9,19 + 1159: 10,19 + 1160: 11,19 + 1161: 12,19 + 1162: 13,19 + 1163: 14,19 + 1164: 15,19 + 1165: 16,19 + 1166: 17,19 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1032: -13,3 - 1126: -18,20 - 1142: -5,18 - 1143: -5,17 - 1156: 4,19 - 1157: 4,18 - 1158: 4,17 + 1020: -13,3 + 1114: -18,20 + 1130: -5,18 + 1131: -5,17 + 1144: 4,19 + 1145: 4,18 + 1146: 4,17 + - node: + color: '#808080FF' + id: BrickTileSteelCornerNe + decals: + 1988: -8,23 + 1989: 6,23 + - node: + color: '#808080FF' + id: BrickTileSteelCornerNw + decals: + 1990: 8,23 + 1991: -6,23 + - node: + color: '#808080FF' + id: BrickTileSteelInnerNe + decals: + 1996: -8,22 + 1999: 6,22 + - node: + color: '#808080FF' + id: BrickTileSteelInnerNw + decals: + 1997: -6,22 + 1998: 8,22 - node: color: '#7B7B3FFF' id: CheckerNESW decals: - 623: 20,23 - 625: 22,21 - 639: -21,23 - 709: -30,-1 - 711: -32,1 - 718: -32,0 + 620: 20,23 + 622: 22,21 + 636: -21,23 + 706: -30,-1 + 708: -32,1 + 715: -32,0 - node: color: '#7B7B3FFF' id: CheckerNWSE decals: - 624: 22,23 - 626: 20,21 - 710: -30,0 - 717: -32,-1 + 621: 22,23 + 623: 20,21 + 707: -30,0 + 714: -32,-1 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 674: 11,11 - 675: 17,11 - 676: 15,11 - 677: 13,11 - 692: 14,6 + 671: 11,11 + 672: 17,11 + 673: 15,11 + 674: 13,11 + 689: 14,6 + 1680: 7,17 + 1682: 14,11 - node: cleanable: True color: '#A4610696' @@ -536,79 +566,76 @@ entities: 547: 6,12 548: 7,10 549: 8,8 - 550: 9,8 - 551: 9,11 - 552: 9,10 - 553: 9,8 - 554: 9,8 - 555: 8,7 + 550: 9,11 + 551: 9,10 + 552: 8,7 + 553: 8,7 + 554: 8,5 + 555: 8,5 556: 8,7 - 557: 8,5 - 558: 8,5 - 559: 8,7 - 560: 7,9 - 561: 8,10 - 562: 7,11 - 563: 8,9 - 564: 7,9 - 565: 7,8 - 566: 7,11 - 567: 7,11 - 568: 5,12 - 569: 3,11 - 570: 4,8 - 571: 3,8 - 572: 0,8 - 573: -1,7 - 574: -2,7 - 575: -5,7 - 576: -5,6 - 577: -5,6 - 578: 1,4 - 579: 2,3 - 580: 2,2 - 581: 0,3 - 582: -2,2 - 583: -3,0 - 584: -3,0 - 585: -2,0 - 586: 0,1 - 587: 1,1 - 588: 1,1 - 589: 0,0 - 590: 0,0 - 591: 0,1 - 592: -1,2 - 593: -1,1 - 594: -2,1 - 595: -3,1 - 596: 1,0 - 597: 2,1 - 598: 2,1 - 599: 0,0 - 600: 0,1 - 601: -1,1 - 602: -1,2 - 603: 0,2 - 604: -2,1 - 605: -3,1 - 606: 1,0 - 607: 3,1 - 608: 16,1 - 609: 17,1 - 610: 15,0 - 611: 14,0 - 612: 11,0 - 613: 11,1 - 614: 10,1 - 615: 10,0 - 616: 6,1 - 617: -4,0 - 618: -5,2 - 619: -8,1 - 620: -11,0 - 621: -15,0 - 622: -17,0 + 557: 7,9 + 558: 8,10 + 559: 7,11 + 560: 8,9 + 561: 7,9 + 562: 7,8 + 563: 7,11 + 564: 7,11 + 565: 5,12 + 566: 3,11 + 567: 4,8 + 568: 3,8 + 569: 0,8 + 570: -1,7 + 571: -2,7 + 572: -5,7 + 573: -5,6 + 574: -5,6 + 575: 1,4 + 576: 2,3 + 577: 2,2 + 578: 0,3 + 579: -2,2 + 580: -3,0 + 581: -3,0 + 582: -2,0 + 583: 0,1 + 584: 1,1 + 585: 1,1 + 586: 0,0 + 587: 0,0 + 588: 0,1 + 589: -1,2 + 590: -1,1 + 591: -2,1 + 592: -3,1 + 593: 1,0 + 594: 2,1 + 595: 2,1 + 596: 0,0 + 597: 0,1 + 598: -1,1 + 599: -1,2 + 600: 0,2 + 601: -2,1 + 602: -3,1 + 603: 1,0 + 604: 3,1 + 605: 16,1 + 606: 17,1 + 607: 15,0 + 608: 14,0 + 609: 11,0 + 610: 11,1 + 611: 10,1 + 612: 10,0 + 613: 6,1 + 614: -4,0 + 615: -5,2 + 616: -8,1 + 617: -11,0 + 618: -15,0 + 619: -17,0 - node: cleanable: True color: '#A4610696' @@ -878,363 +905,416 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 1231: -17,-1 - 1232: -16,-1 - 1242: -29,-1 - 1243: -32,-1 - 1244: -30,0 - 1245: -30,1 - 1246: -32,1 - 1247: -31,0 - 1248: -32,-1 - 1249: -32,1 - 1250: -22,-1 - 1251: -19,-1 - 1252: -17,-1 - 1253: -11,-1 - 1254: -7,-1 - 1255: -7,-1 - 1256: -7,-1 - 1257: -7,0 - 1258: -6,0 - 1259: -6,-1 - 1260: -4,-1 - 1261: -3,-1 - 1262: -1,-1 - 1263: 1,-1 - 1264: 3,-1 - 1265: 5,-1 - 1266: 6,-1 - 1267: 8,-1 - 1268: 10,-1 - 1269: 12,-1 - 1270: 14,-1 - 1271: 15,-1 - 1272: 17,-1 - 1273: 18,-1 - 1274: 20,-1 - 1275: 22,-1 - 1276: 24,-1 - 1277: 26,-1 - 1278: 27,-1 - 1279: 28,-1 - 1280: 29,-1 - 1281: 31,-1 - 1282: 32,-1 - 1283: 32,-1 - 1284: 32,0 - 1285: 31,1 - 1286: 30,1 - 1287: 30,0 - 1288: 31,0 - 1289: 32,1 - 1290: 34,1 - 1291: 34,0 - 1292: 34,-1 - 1293: 32,2 - 1294: 31,3 - 1295: 31,3 - 1296: 33,3 - 1297: 29,2 - 1298: 29,1 - 1299: 28,1 - 1300: 27,1 - 1301: 25,1 - 1302: 24,1 - 1303: 22,1 - 1304: 20,1 - 1305: 18,1 - 1306: 16,1 - 1307: 15,1 - 1308: 13,1 - 1309: 12,1 - 1310: 13,2 - 1311: 13,2 - 1312: 13,3 - 1313: 12,4 - 1314: 11,3 - 1315: 11,2 - 1316: 11,4 - 1317: 11,3 - 1318: 9,2 - 1319: 7,2 - 1320: 5,3 - 1321: 5,3 - 1322: 4,2 - 1323: 3,2 - 1324: 3,3 - 1325: 4,3 - 1326: 6,3 - 1327: 0,3 - 1328: -2,3 - 1329: -4,3 - 1330: -5,3 - 1331: -3,3 - 1332: -7,3 - 1333: -8,3 - 1334: -10,3 - 1335: -12,3 - 1336: -13,3 - 1337: -13,3 - 1338: -12,4 - 1339: -11,4 - 1340: -11,4 - 1341: -16,2 - 1342: -17,2 - 1343: -18,2 - 1344: -18,1 - 1345: -18,0 - 1346: -18,-1 - 1347: -9,5 - 1348: -7,5 - 1349: -6,6 - 1350: -6,7 - 1351: -6,9 - 1352: -6,10 - 1353: -7,10 - 1354: -9,10 - 1355: -9,9 - 1356: -8,8 - 1357: -8,6 - 1358: -6,7 - 1359: -6,9 - 1360: -8,9 - 1361: -4,7 - 1362: 0,6 - 1363: 2,8 - 1364: -2,8 - 1365: 0,6 - 1366: 3,9 - 1367: 1,11 - 1368: -2,10 - 1369: 0,8 - 1370: 2,10 - 1371: 0,9 - 1372: 4,7 - 1373: 8,6 - 1374: 9,8 - 1375: 7,10 - 1376: 6,7 - 1377: 9,10 - 1378: 8,11 - 1379: 6,10 - 1380: 5,11 - 1381: 4,10 - 1382: 5,7 - 1383: 9,6 - 1384: 12,8 - 1385: 14,9 - 1386: 16,9 + 1218: -17,-1 + 1219: -16,-1 + 1229: -29,-1 + 1230: -32,-1 + 1231: -30,0 + 1232: -30,1 + 1233: -32,1 + 1234: -31,0 + 1235: -32,-1 + 1236: -32,1 + 1237: -22,-1 + 1238: -19,-1 + 1239: -17,-1 + 1240: -11,-1 + 1241: -7,-1 + 1242: -7,-1 + 1243: -7,-1 + 1244: -7,0 + 1245: -6,0 + 1246: -6,-1 + 1247: -4,-1 + 1248: -3,-1 + 1249: -1,-1 + 1250: 1,-1 + 1251: 3,-1 + 1252: 5,-1 + 1253: 6,-1 + 1254: 8,-1 + 1255: 10,-1 + 1256: 12,-1 + 1257: 14,-1 + 1258: 15,-1 + 1259: 17,-1 + 1260: 18,-1 + 1261: 20,-1 + 1262: 22,-1 + 1263: 24,-1 + 1264: 26,-1 + 1265: 27,-1 + 1266: 28,-1 + 1267: 29,-1 + 1268: 31,-1 + 1269: 32,-1 + 1270: 32,-1 + 1271: 32,0 + 1272: 31,1 + 1273: 30,1 + 1274: 30,0 + 1275: 31,0 + 1276: 32,1 + 1277: 34,1 + 1278: 34,0 + 1279: 34,-1 + 1280: 32,2 + 1281: 31,3 + 1282: 31,3 + 1283: 33,3 + 1284: 29,2 + 1285: 29,1 + 1286: 28,1 + 1287: 27,1 + 1288: 25,1 + 1289: 24,1 + 1290: 22,1 + 1291: 20,1 + 1292: 18,1 + 1293: 16,1 + 1294: 15,1 + 1295: 13,1 + 1296: 12,1 + 1297: 13,2 + 1298: 13,2 + 1299: 13,3 + 1300: 12,4 + 1301: 11,3 + 1302: 11,2 + 1303: 11,4 + 1304: 11,3 + 1305: 9,2 + 1306: 7,2 + 1307: 5,3 + 1308: 5,3 + 1309: 4,2 + 1310: 3,2 + 1311: 3,3 + 1312: 4,3 + 1313: 6,3 + 1314: 0,3 + 1315: -2,3 + 1316: -4,3 + 1317: -5,3 + 1318: -3,3 + 1319: -7,3 + 1320: -8,3 + 1321: -10,3 + 1322: -12,3 + 1323: -13,3 + 1324: -13,3 + 1325: -12,4 + 1326: -11,4 + 1327: -11,4 + 1328: -16,2 + 1329: -17,2 + 1330: -18,2 + 1331: -18,1 + 1332: -18,0 + 1333: -18,-1 + 1334: -9,5 + 1335: -7,5 + 1336: -6,6 + 1337: -6,7 + 1338: -6,9 + 1339: -6,10 + 1340: -7,10 + 1341: -9,10 + 1342: -9,9 + 1343: -8,8 + 1344: -8,6 + 1345: -6,7 + 1346: -6,9 + 1347: -8,9 + 1348: -4,7 + 1349: 0,6 + 1350: 2,8 + 1351: -2,8 + 1352: 0,6 + 1353: 3,9 + 1354: 1,11 + 1355: -2,10 + 1356: 0,8 + 1357: 2,10 + 1358: 0,9 + 1359: 4,7 + 1360: 8,6 + 1361: 7,10 + 1362: 6,7 + 1363: 9,10 + 1364: 8,11 + 1365: 6,10 + 1366: 5,11 + 1367: 4,10 + 1368: 5,7 + 1369: 9,6 + 1370: 12,8 + 1371: 14,9 + 1372: 16,9 + 1373: 16,8 + 1374: 14,6 + 1375: 17,5 + 1376: 17,5 + 1377: 17,8 + 1378: 17,9 + 1379: 13,10 + 1380: 11,10 + 1381: 11,9 + 1382: 12,7 + 1383: 11,5 + 1384: 14,5 + 1385: 14,6 + 1386: 12,7 1387: 16,8 - 1388: 14,6 + 1388: 16,6 1389: 17,5 - 1390: 17,5 - 1391: 17,8 - 1392: 17,9 - 1393: 13,10 - 1394: 11,10 - 1395: 11,9 - 1396: 12,7 - 1397: 11,5 - 1398: 14,5 - 1399: 14,6 - 1400: 12,7 - 1401: 16,8 - 1402: 16,6 - 1403: 17,5 - 1404: 15,4 - 1405: 16,4 - 1406: 17,8 - 1407: 17,10 - 1408: 15,10 - 1409: 14,9 - 1410: 15,13 - 1411: 13,13 - 1412: 12,14 - 1413: 13,15 - 1414: 15,15 - 1415: 15,17 - 1416: 14,17 - 1417: 12,16 - 1418: 11,17 - 1419: 12,16 - 1420: 12,14 - 1421: 11,13 - 1422: 13,15 - 1423: 13,17 - 1424: 12,17 - 1425: 13,16 - 1426: 13,15 - 1427: 11,15 - 1428: 12,14 - 1429: 9,14 - 1430: 8,14 - 1431: 9,17 - 1432: 8,17 - 1433: 7,15 - 1434: 8,13 - 1435: 10,15 - 1436: 10,17 - 1437: 9,18 - 1438: 10,19 - 1439: 9,19 - 1440: 11,19 - 1441: 13,20 - 1442: 14,19 - 1443: 16,19 - 1444: 17,19 - 1445: 18,19 - 1446: 18,21 - 1447: 16,22 - 1448: 17,21 - 1449: 17,22 - 1450: 18,23 - 1451: 18,22 - 1452: 14,20 - 1453: 15,19 - 1454: 15,21 - 1455: 16,23 - 1456: 14,22 - 1457: 14,21 - 1458: 11,20 - 1459: 11,20 - 1460: 11,21 - 1461: 13,22 - 1462: 12,22 - 1463: 10,22 - 1464: 9,21 - 1465: 8,23 - 1466: 9,24 - 1467: 10,22 - 1468: 7,21 - 1469: 6,22 - 1470: 5,22 - 1471: 3,23 - 1472: 1,20 - 1473: -1,22 - 1474: -1,22 - 1475: -4,21 - 1476: -4,22 - 1477: -6,21 - 1478: -5,20 - 1479: -4,17 - 1480: -5,16 - 1481: -4,16 - 1482: -5,18 - 1483: -5,20 - 1484: -6,21 - 1485: -7,21 - 1486: -9,20 - 1487: -10,20 - 1488: -9,22 - 1489: -11,22 - 1490: -11,21 - 1491: -13,22 - 1492: -13,21 - 1493: -12,20 - 1494: -12,19 - 1495: -15,20 - 1496: -16,21 - 1497: -14,22 - 1498: -15,23 - 1499: -17,22 - 1500: -17,20 - 1501: -17,19 - 1502: -18,20 - 1503: -18,22 - 1504: -18,23 - 1505: -20,21 - 1506: -20,21 - 1507: -20,23 - 1508: -21,23 - 1509: -22,23 - 1510: -22,22 - 1511: -21,21 - 1512: -20,23 - 1513: -20,25 - 1514: -21,25 - 1515: -22,25 - 1516: -23,24 - 1517: -24,21 - 1518: -23,20 - 1616: -12,17 - 1617: -12,16 - 1618: -12,15 - 1619: -12,15 - 1620: -12,14 - 1621: -12,13 - 1622: -11,13 - 1623: -11,14 - 1624: -11,15 - 1625: -11,16 - 1626: -11,17 - 1627: -10,17 - 1628: -10,16 - 1629: -10,15 - 1630: -10,13 - 1631: -10,13 - 1632: -7,13 - 1633: -8,13 - 1634: -2,20 - 1635: -2,20 - 1636: -3,20 - 1637: -2,21 - 1638: -1,21 - 1639: -1,20 - 1640: -3,21 - 1641: 0,21 - 1642: 2,21 - 1643: 3,20 - 1644: 5,19 - 1645: 5,18 - 1646: 4,16 - 1647: 4,17 - 1648: 4,18 - 1649: 5,19 - 1650: 5,16 - 1651: 7,17 - 1652: 9,17 - 1653: 8,15 - 1654: 10,14 - 1655: 12,14 - 1656: 13,13 - 1657: 15,14 - 1658: 13,17 - 1659: 11,16 - 1660: 13,14 - 1661: 16,15 - 1662: 17,14 - 1663: -4,13 - 1664: -5,13 - 1665: -5,14 - 1666: -4,14 - 1667: 4,13 - 1668: 5,13 - 1669: 5,14 - 1670: 4,14 - 1671: 4,12 - 1672: 5,12 - 1673: -4,12 - 1674: -5,12 - 1675: -4,11 - 1676: -2,10 - 1677: -1,10 - 1678: 1,10 - 1679: -2,13 - 1680: -1,13 - 1681: -1,14 - 1682: -2,15 - 1683: -1,15 - 1684: 0,14 - 1685: 1,14 - 1686: 1,13 - 1687: 2,13 - 1688: 2,14 - 1689: 2,15 - 1690: 2,12 - 1691: 2,12 - 1692: 1,13 - 1693: -1,13 + 1390: 15,4 + 1391: 16,4 + 1392: 17,8 + 1393: 17,10 + 1394: 15,10 + 1395: 14,9 + 1396: 15,13 + 1397: 13,13 + 1398: 12,14 + 1399: 13,15 + 1400: 15,15 + 1401: 15,17 + 1402: 14,17 + 1403: 12,16 + 1404: 11,17 + 1405: 12,16 + 1406: 12,14 + 1407: 11,13 + 1408: 13,15 + 1409: 13,17 + 1410: 12,17 + 1411: 13,16 + 1412: 13,15 + 1413: 11,15 + 1414: 12,14 + 1415: 9,14 + 1416: 8,14 + 1417: 9,17 + 1418: 7,15 + 1419: 8,13 + 1420: 10,15 + 1421: 10,17 + 1422: 9,18 + 1423: 10,19 + 1424: 9,19 + 1425: 11,19 + 1426: 13,20 + 1427: 14,19 + 1428: 16,19 + 1429: 17,19 + 1430: 18,19 + 1431: 18,21 + 1432: 16,22 + 1433: 17,21 + 1434: 17,22 + 1435: 18,23 + 1436: 18,22 + 1437: 14,20 + 1438: 15,19 + 1439: 15,21 + 1440: 16,23 + 1441: 14,22 + 1442: 14,21 + 1443: 11,20 + 1444: 11,20 + 1445: 11,21 + 1446: 13,22 + 1447: 12,22 + 1448: 10,22 + 1449: 9,21 + 1450: 9,24 + 1451: 10,22 + 1452: 7,21 + 1453: 6,22 + 1454: 5,22 + 1455: 3,23 + 1456: 1,20 + 1457: -1,22 + 1458: -1,22 + 1459: -4,21 + 1460: -4,22 + 1461: -6,21 + 1462: -5,20 + 1463: -4,17 + 1464: -5,16 + 1465: -4,16 + 1466: -5,18 + 1467: -5,20 + 1468: -6,21 + 1469: -7,21 + 1470: -9,20 + 1471: -10,20 + 1472: -9,22 + 1473: -11,22 + 1474: -11,21 + 1475: -13,22 + 1476: -13,21 + 1477: -12,20 + 1478: -12,19 + 1479: -15,20 + 1480: -16,21 + 1481: -14,22 + 1482: -15,23 + 1483: -17,22 + 1484: -17,20 + 1485: -17,19 + 1486: -18,20 + 1487: -18,22 + 1488: -18,23 + 1489: -20,21 + 1490: -20,21 + 1491: -20,23 + 1492: -21,23 + 1493: -22,23 + 1494: -22,22 + 1495: -21,21 + 1496: -20,23 + 1497: -20,25 + 1498: -21,25 + 1499: -22,25 + 1500: -23,24 + 1501: -24,21 + 1502: -23,20 + 1597: -12,17 + 1598: -12,16 + 1599: -12,15 + 1600: -12,15 + 1601: -12,14 + 1602: -12,13 + 1603: -11,13 + 1604: -11,14 + 1605: -11,15 + 1606: -11,16 + 1607: -11,17 + 1608: -10,17 + 1609: -10,16 + 1610: -10,15 + 1611: -10,13 + 1612: -10,13 + 1613: -7,13 + 1614: -8,13 + 1615: -2,20 + 1616: -2,20 + 1617: -3,20 + 1618: -2,21 + 1619: -1,21 + 1620: -1,20 + 1621: -3,21 + 1622: 0,21 + 1623: 2,21 + 1624: 3,20 + 1625: 5,19 + 1626: 5,18 + 1627: 4,16 + 1628: 4,17 + 1629: 4,18 + 1630: 5,19 + 1631: 5,16 + 1632: 9,17 + 1633: 8,15 + 1634: 10,14 + 1635: 12,14 + 1636: 13,13 + 1637: 15,14 + 1638: 13,17 + 1639: 11,16 + 1640: 13,14 + 1641: 16,15 + 1642: 17,14 + 1643: -4,13 + 1644: -5,13 + 1645: -5,14 + 1646: -4,14 + 1647: 4,13 + 1648: 5,13 + 1649: 5,14 + 1650: 4,14 + 1651: 4,12 + 1652: 5,12 + 1653: -4,12 + 1654: -5,12 + 1655: -4,11 + 1656: -2,10 + 1657: -1,10 + 1658: 1,10 + 1659: -2,13 + 1660: -1,13 + 1661: -1,14 + 1662: -2,15 + 1663: -1,15 + 1664: 0,14 + 1665: 1,14 + 1666: 1,13 + 1667: 2,13 + 1668: 2,14 + 1669: 2,15 + 1670: 2,12 + 1671: 2,12 + 1672: 1,13 + 1673: -1,13 + 1688: 11,6 + 1689: 11,7 + 1690: 11,8 + 1691: 14,8 + 1692: 13,7 + 1693: 13,6 + 1694: 12,6 + 1695: 13,9 + 1696: 12,10 + 1697: 12,9 + 1698: 16,10 + 1699: 16,4 + 1700: 15,4 + 1701: 15,5 + 1702: 9,5 + 1703: 8,6 + 1704: 7,7 + 1705: 7,8 + 1706: 4,3 + 1707: 3,3 + 1708: -1,-1 + 1709: 0,-1 + 1710: -3,-1 + 1711: -8,-1 + 1712: -10,-1 + 1713: -12,-1 + 1714: -15,-1 + 1715: -16,-1 + 1716: -14,-1 + 1717: -13,-1 + 1718: -13,-1 + 1719: -17,4 + 2016: -5,22 + 2017: -5,21 + 2018: -8,20 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1968: 8,17 + 1969: 12,20 + 1970: 13,21 + 1971: 12,21 + 1972: 11,22 + 1973: 8,22 + 1974: 8,21 + 1975: 8,20 + 1976: 9,22 + 1977: 15,20 + 1978: 16,20 + 1979: 17,20 + 1980: 18,20 + 1981: 18,19 + 1982: 15,23 + 1983: 9,8 - node: cleanable: True color: '#A4610696' @@ -1340,74 +1420,108 @@ entities: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 1553: 19,21 - 1554: 20,21 - 1555: 20,22 - 1556: 20,23 - 1557: 21,23 - 1558: 22,21 - 1559: 22,21 - 1560: 23,23 - 1561: 24,22 - 1562: 24,21 - 1563: 22,21 - 1564: 22,22 - 1565: 21,23 - 1566: 22,24 - 1567: 22,24 - 1568: 21,25 - 1569: 21,25 - 1570: 20,25 - 1571: 18,23 - 1572: 16,23 - 1573: 14,23 - 1574: 12,23 - 1575: 10,23 - 1576: 8,23 - 1577: 10,23 - 1578: 9,23 - 1579: 6,23 - 1580: 5,23 - 1581: 4,23 - 1582: 2,23 - 1583: 0,23 - 1584: -1,23 - 1585: -3,23 - 1586: -5,23 - 1587: -5,23 - 1588: -5,23 - 1589: -7,23 - 1590: -9,23 - 1591: -10,23 - 1592: -11,23 - 1593: -11,23 - 1594: -13,23 - 1595: -16,23 - 1596: -18,23 - 1597: -15,23 - 1598: -16,22 - 1599: -17,20 - 1600: -18,19 - 1601: -17,19 - 1602: -15,19 - 1603: -13,19 - 1604: -12,19 - 1605: -10,19 - 1606: -8,19 - 1607: -8,19 - 1608: -8,17 - 1609: -8,16 - 1610: -7,16 - 1611: -7,17 - 1612: -8,19 - 1613: -9,19 - 1614: -10,19 - 1615: -11,19 - 1695: -21,22 - 1696: -21,21 - 1697: -21,21 - 1698: -21,22 - 1699: -20,22 + 1537: 19,21 + 1538: 20,21 + 1539: 20,22 + 1540: 20,23 + 1541: 21,23 + 1542: 22,21 + 1543: 22,21 + 1544: 23,23 + 1545: 24,22 + 1546: 24,21 + 1547: 22,21 + 1548: 22,22 + 1549: 21,23 + 1550: 22,24 + 1551: 22,24 + 1552: 21,25 + 1553: 21,25 + 1554: 20,25 + 1555: 18,23 + 1556: 16,23 + 1557: 14,23 + 1558: 12,23 + 1559: 10,23 + 1560: 10,23 + 1561: 9,23 + 1562: 5,23 + 1563: 4,23 + 1564: 2,23 + 1565: 0,23 + 1566: -1,23 + 1567: -3,23 + 1568: -5,23 + 1569: -5,23 + 1570: -5,23 + 1571: -9,23 + 1572: -10,23 + 1573: -11,23 + 1574: -11,23 + 1575: -13,23 + 1576: -16,23 + 1577: -18,23 + 1578: -15,23 + 1579: -16,22 + 1580: -17,20 + 1581: -18,19 + 1582: -17,19 + 1583: -15,19 + 1584: -13,19 + 1585: -12,19 + 1586: -10,19 + 1587: -8,19 + 1588: -8,19 + 1589: -8,17 + 1590: -8,16 + 1591: -7,16 + 1592: -7,17 + 1593: -8,19 + 1594: -9,19 + 1595: -10,19 + 1596: -11,19 + 1675: -21,22 + 1676: -21,21 + 1677: -21,21 + 1678: -21,22 + 1679: -20,22 + 1720: -11,6 + 1721: -13,6 + 1722: -14,7 + 1723: -14,9 + 1724: -15,10 + 1725: -16,9 + 1726: -16,7 + 1727: -16,6 + 1728: -17,5 + 1729: -17,6 + 1730: -17,8 + 1731: -17,8 + 1732: -14,10 + 1733: -14,13 + 1734: -16,14 + 1735: -18,14 + 1736: -17,13 + 1737: -15,13 + 1738: -14,14 + 1739: -12,10 + 1740: -11,10 + 2000: 5,21 + 2001: 4,21 + 2002: 4,22 + 2003: 6,21 + 2004: 5,20 + 2005: 6,23 + 2006: -2,22 + 2007: -2,23 + 2008: -6,23 + 2009: -6,22 + 2010: -8,22 + 2011: -8,23 + 2012: -8,23 + 2013: 8,23 + 2014: 8,23 + 2015: 8,23 - node: cleanable: True color: '#A4610696' @@ -1461,6 +1575,94 @@ entities: 446: -7,10 447: -6,10 448: -6,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1741: -15,8 + 1742: -14,8 + 1743: -13,6 + 1744: -12,6 + 1745: -11,6 + 1746: -11,7 + 1747: -11,8 + 1748: -11,9 + 1749: -12,10 + 1750: -9,8 + 1751: -8,7 + 1752: -9,6 + 1753: -9,8 + 1754: -9,8 + 1755: -9,7 + 1756: -9,8 + 1757: -9,10 + 1758: -7,7 + 1759: -6,6 + 1760: -7,5 + 1761: -8,5 + 1762: -9,5 + 1763: 7,5 + 1764: 6,6 + 1765: 6,7 + 1766: 6,8 + 1767: 7,8 + 1768: 8,8 + 1769: 8,9 + 1770: 9,10 + 1771: 9,11 + 1772: 9,9 + 1773: 8,10 + 1774: 11,13 + 1775: 12,13 + 1776: 14,13 + 1777: 15,15 + 1778: 14,15 + 1779: 14,13 + 1780: 15,16 + 1781: 11,17 + 1782: 10,20 + 1783: 9,21 + 1784: 9,20 + 1785: 9,19 + 1786: 4,20 + 1787: 3,20 + 1788: 2,20 + 1789: -1,23 + 1790: -3,22 + 1791: -4,22 + 1792: -4,20 + 1793: -4,19 + 1794: -4,19 + 1795: -10,19 + 1796: -11,19 + 1797: -13,21 + 1798: -16,20 + 1799: -16,19 + 1800: -17,19 + 1801: -18,19 + 1802: -18,21 + 1803: -18,22 + 1804: -18,17 + 1805: -17,17 + 1806: -17,16 + 1807: -18,16 + 1808: -15,16 + 1809: -15,17 + 1810: -14,17 + 1811: -14,16 + 1812: -14,16 + 1813: -14,16 + 1814: -7,16 + 1815: -8,16 + 1816: -8,17 + 1817: -7,17 + 1818: -7,17 + 1819: -8,16 + 1820: -8,15 + 1821: -7,15 + 1822: -7,16 + 1823: -8,17 - node: cleanable: True color: '#A4610696' @@ -1518,393 +1720,542 @@ entities: color: '#FFFFFFFF' id: DirtMedium decals: - 1233: -20,-1 - 1234: -21,-1 - 1235: -22,-1 - 1236: -23,-1 - 1237: -24,-1 - 1238: -25,-1 - 1239: -26,-1 - 1240: -27,-1 - 1241: -28,-1 - 1519: -23,21 - 1520: -24,22 - 1521: -23,23 - 1522: -20,23 - 1523: -20,22 - 1524: -18,22 - 1525: -17,23 - 1526: -17,21 - 1527: -18,21 - 1528: -15,20 - 1529: -13,22 - 1530: -11,21 - 1531: -10,19 - 1532: -9,21 - 1533: -7,22 - 1534: -6,21 - 1535: -6,20 - 1536: -5,19 - 1537: -3,18 - 1538: -3,20 - 1539: -4,20 - 1540: -4,18 - 1541: 1,21 - 1542: 2,22 - 1543: 1,22 - 1544: -1,23 - 1545: -3,23 - 1546: -1,25 - 1547: 0,25 - 1548: 0,25 - 1549: 1,25 - 1550: 1,25 - 1551: 1,26 - 1552: -1,25 + 1220: -20,-1 + 1221: -21,-1 + 1222: -22,-1 + 1223: -23,-1 + 1224: -24,-1 + 1225: -25,-1 + 1226: -26,-1 + 1227: -27,-1 + 1228: -28,-1 + 1503: -23,21 + 1504: -24,22 + 1505: -23,23 + 1506: -20,23 + 1507: -20,22 + 1508: -18,22 + 1509: -17,23 + 1510: -17,21 + 1511: -18,21 + 1512: -15,20 + 1513: -13,22 + 1514: -11,21 + 1515: -10,19 + 1516: -9,21 + 1517: -7,22 + 1518: -6,21 + 1519: -6,20 + 1520: -5,19 + 1521: -3,18 + 1522: -3,20 + 1523: -4,20 + 1524: -4,18 + 1525: 1,21 + 1526: 2,22 + 1527: 1,22 + 1528: -1,23 + 1529: -3,23 + 1530: -1,25 + 1531: 0,25 + 1532: 0,25 + 1533: 1,25 + 1534: 1,25 + 1535: 1,26 + 1536: -1,25 + 1824: -10,16 + 1825: -10,17 + 1826: -11,16 + 1827: -11,16 + 1828: -12,14 + 1829: -11,13 + 1830: -10,13 + 1831: -10,14 + 1832: -11,14 + 1833: -11,13 + 1834: -12,15 + 1835: -12,16 + 1836: -11,17 + 1837: -22,21 + 1838: -19,21 + 1839: -19,22 + 1840: -19,23 + 1841: -7,20 + 1842: -7,21 + 1843: -7,22 + 1844: -4,15 + 1845: -5,15 + 1846: 4,15 + 1847: 5,15 + 1848: 8,18 + 1849: 9,18 + 1850: 7,20 + 1851: 7,21 + 1852: 7,22 + 1853: 8,12 + 1854: 9,12 + 1855: 10,9 + 1856: 10,8 + 1857: 10,7 + 1858: 11,5 + 1859: 12,5 + 1860: 13,5 + 1861: 5,4 + 1862: 4,4 + 1863: 3,4 + 1864: -3,4 + 1865: -4,4 + 1866: -5,4 + 1867: -19,1 + 1868: -19,0 + 1869: -19,-1 + 1870: -29,1 + 1871: -29,0 + 1872: -29,-1 + 1873: -30,-2 + 1874: -31,-2 + 1875: -32,-2 + 1876: -33,-1 + 1877: -33,0 + 1878: -33,1 + 1879: -32,2 + 1880: -31,2 + 1881: -30,2 + 1882: -35,1 + 1883: -35,0 + 1884: -35,-1 + 1885: -32,-4 + 1886: -31,-4 + 1887: -30,-4 + 1888: -30,4 + 1889: -31,4 + 1890: -32,4 + 1891: -1,-2 + 1892: 0,-2 + 1893: 1,-2 + 1894: 1,-4 + 1895: 0,-4 + 1896: -1,-4 + 1897: 19,-1 + 1898: 19,0 + 1899: 19,1 + 1900: 20,0 + 1901: 29,-1 + 1902: 29,0 + 1903: 29,1 + 1904: 30,2 + 1905: 31,2 + 1906: 32,2 + 1907: 33,1 + 1908: 33,0 + 1909: 33,-1 + 1910: 32,-2 + 1911: 31,-2 + 1912: 30,-2 + 1913: 30,-4 + 1914: 31,-4 + 1915: 32,-4 + 1916: 35,-1 + 1917: 35,0 + 1918: 35,1 + 1919: 32,4 + 1920: 31,4 + 1921: 30,4 + 1922: 23,21 + 1923: 23,22 + 1924: 23,23 + 1925: 22,24 + 1926: 21,24 + 1927: 20,24 + 1928: 20,25 + 1929: 22,25 + 1930: 25,23 + 1931: 25,22 + 1932: 25,21 + 1933: 22,26 + 1934: 21,26 + 1935: 20,26 + 1936: 19,23 + 1937: 19,22 + 1938: 19,21 + 1939: 7,20 + 1940: 7,21 + 1941: 7,22 + 1942: -10,21 + 1943: -10,22 + 1944: -18,21 + 1945: -18,20 + 1946: -18,19 + 1947: -19,21 + 1948: -19,22 + 1949: -19,23 + 1950: -20,24 + 1951: -21,24 + 1952: -22,24 + 1953: -23,23 + 1954: -23,22 + 1955: -23,21 + 1956: -25,21 + 1957: -25,22 + 1958: -25,23 + 1959: -24,23 + 1960: -22,26 + 1961: -21,26 + 1962: -20,26 + 1963: 3,10 + 1964: 0,11 + 1965: -2,11 + 1966: -1,11 - node: color: '#7B7B3FFF' id: HalfTileOverlayGreyscale decals: - 703: 32,-1 - 704: 31,-1 - 705: 30,-1 - 712: -31,1 - 713: -30,1 - 714: -31,0 - 753: -18,23 - 754: -17,23 - 755: -16,23 - 756: -15,23 - 757: -14,23 - 758: -13,23 - 759: -12,23 - 760: -11,23 - 761: -10,23 - 762: -9,23 - 763: -8,23 - 764: -6,23 - 765: -5,23 - 766: -4,23 - 767: -3,23 - 768: -2,23 - 769: -1,23 - 770: 0,23 - 771: 1,23 - 772: 2,23 - 773: 3,23 - 774: 4,23 - 775: 5,23 - 776: 6,23 - 777: 8,23 - 778: 9,23 - 779: 11,23 - 780: 10,23 - 781: 12,23 - 782: 13,23 - 783: 14,23 - 784: 15,23 - 785: 16,23 - 786: 17,23 - 787: 18,23 - 927: 28,1 - 928: 27,1 - 929: 26,1 - 930: 25,1 - 931: 24,1 - 932: 23,1 - 933: 22,1 - 934: 21,1 - 935: 20,1 - 936: 17,2 - 937: 16,2 - 938: 15,2 - 939: 14,2 - 941: 10,3 - 942: 9,3 - 943: 8,3 - 944: 7,3 - 945: 6,3 - 946: 2,3 - 947: 1,3 - 948: 0,3 - 949: -1,3 - 950: -2,3 - 951: -6,3 - 952: -7,3 - 953: -8,3 - 954: -9,3 - 955: -10,3 - 956: -12,4 - 957: -14,2 - 958: -15,2 - 959: -16,2 - 960: -17,2 - 961: -20,1 - 962: -21,1 - 963: -22,1 - 964: -23,1 - 965: -24,1 - 966: -25,1 - 967: -26,1 - 968: -27,1 - 969: -28,1 - 1035: -5,3 - 1036: -4,3 - 1037: -3,3 - 1038: 3,3 - 1039: 4,3 - 1040: 5,3 - 1196: 12,4 + 700: 32,-1 + 701: 31,-1 + 702: 30,-1 + 709: -31,1 + 710: -30,1 + 711: -31,0 + 749: -18,23 + 750: -17,23 + 751: -16,23 + 752: -15,23 + 753: -14,23 + 754: -13,23 + 755: -12,23 + 756: -11,23 + 757: -10,23 + 758: -9,23 + 759: -5,23 + 760: -4,23 + 761: -3,23 + 762: -2,23 + 763: -1,23 + 764: 0,23 + 765: 1,23 + 766: 2,23 + 767: 3,23 + 768: 4,23 + 769: 5,23 + 770: 9,23 + 771: 11,23 + 772: 10,23 + 773: 12,23 + 774: 13,23 + 775: 14,23 + 776: 15,23 + 777: 16,23 + 778: 17,23 + 779: 18,23 + 915: 28,1 + 916: 27,1 + 917: 26,1 + 918: 25,1 + 919: 24,1 + 920: 23,1 + 921: 22,1 + 922: 21,1 + 923: 20,1 + 924: 17,2 + 925: 16,2 + 926: 15,2 + 927: 14,2 + 929: 10,3 + 930: 9,3 + 931: 8,3 + 932: 7,3 + 933: 6,3 + 934: 2,3 + 935: 1,3 + 936: 0,3 + 937: -1,3 + 938: -2,3 + 939: -6,3 + 940: -7,3 + 941: -8,3 + 942: -9,3 + 943: -10,3 + 944: -12,4 + 945: -14,2 + 946: -15,2 + 947: -16,2 + 948: -17,2 + 949: -20,1 + 950: -21,1 + 951: -22,1 + 952: -23,1 + 953: -24,1 + 954: -25,1 + 955: -26,1 + 956: -27,1 + 957: -28,1 + 1023: -5,3 + 1024: -4,3 + 1025: -3,3 + 1026: 3,3 + 1027: 4,3 + 1028: 5,3 + 1184: 12,4 - node: color: '#7B7B3FFF' id: HalfTileOverlayGreyscale180 decals: - 635: -21,21 - 715: -31,-1 - 823: -28,-1 - 824: -27,-1 - 825: -26,-1 - 826: -25,-1 - 827: -24,-1 - 828: -23,-1 - 829: -22,-1 - 830: -21,-1 - 831: -20,-1 - 832: -18,-1 - 833: -17,-1 - 834: -16,-1 - 835: -15,-1 - 836: -14,-1 - 837: -13,-1 - 838: -12,-1 - 839: -11,-1 - 840: -10,-1 - 841: -9,-1 - 842: -8,-1 - 843: -7,-1 - 844: -6,-1 - 845: -5,-1 - 846: -4,-1 - 847: -3,-1 - 848: -2,-1 - 849: 2,-1 - 850: 3,-1 - 851: 4,-1 - 852: 5,-1 - 853: 6,-1 - 854: 8,-1 - 855: 7,-1 - 856: 9,-1 - 857: 10,-1 - 858: 11,-1 - 859: 12,-1 - 860: 13,-1 - 861: 14,-1 - 862: 15,-1 - 863: 16,-1 - 864: 17,-1 - 865: 18,-1 - 866: 20,-1 - 867: 21,-1 - 868: 22,-1 - 869: 23,-1 - 870: 24,-1 - 871: 25,-1 - 872: 26,-1 - 873: 27,-1 - 874: 28,-1 - 1041: -1,-1 - 1042: 0,-1 - 1043: 1,-1 - 1071: -17,19 - 1072: -16,19 - 1073: -15,19 - 1074: -14,19 - 1075: -13,19 - 1076: -12,19 - 1077: -11,19 - 1078: -10,19 - 1079: -9,19 - 1097: 17,19 - 1098: 16,19 - 1099: 15,19 - 1100: 14,19 - 1101: 13,19 - 1102: 12,19 - 1103: 11,19 - 1104: 10,19 - 1105: 9,19 - 1106: 3,20 - 1107: 2,20 - 1108: 1,20 - 1109: 0,20 - 1110: -1,20 - 1111: -2,20 - 1112: -3,20 + 632: -21,21 + 712: -31,-1 + 811: -28,-1 + 812: -27,-1 + 813: -26,-1 + 814: -25,-1 + 815: -24,-1 + 816: -23,-1 + 817: -22,-1 + 818: -21,-1 + 819: -20,-1 + 820: -18,-1 + 821: -17,-1 + 822: -16,-1 + 823: -15,-1 + 824: -14,-1 + 825: -13,-1 + 826: -12,-1 + 827: -11,-1 + 828: -10,-1 + 829: -9,-1 + 830: -8,-1 + 831: -7,-1 + 832: -6,-1 + 833: -5,-1 + 834: -4,-1 + 835: -3,-1 + 836: -2,-1 + 837: 2,-1 + 838: 3,-1 + 839: 4,-1 + 840: 5,-1 + 841: 6,-1 + 842: 8,-1 + 843: 7,-1 + 844: 9,-1 + 845: 10,-1 + 846: 11,-1 + 847: 12,-1 + 848: 13,-1 + 849: 14,-1 + 850: 15,-1 + 851: 16,-1 + 852: 17,-1 + 853: 18,-1 + 854: 20,-1 + 855: 21,-1 + 856: 22,-1 + 857: 23,-1 + 858: 24,-1 + 859: 25,-1 + 860: 26,-1 + 861: 27,-1 + 862: 28,-1 + 1029: -1,-1 + 1030: 0,-1 + 1031: 1,-1 + 1059: -17,19 + 1060: -16,19 + 1061: -15,19 + 1062: -14,19 + 1063: -13,19 + 1064: -12,19 + 1065: -11,19 + 1066: -10,19 + 1067: -9,19 + 1085: 17,19 + 1086: 16,19 + 1087: 15,19 + 1088: 14,19 + 1089: 13,19 + 1090: 12,19 + 1091: 11,19 + 1092: 10,19 + 1093: 9,19 + 1094: 3,20 + 1095: 2,20 + 1096: 1,20 + 1097: 0,20 + 1098: -1,20 + 1099: -2,20 + 1100: -3,20 - node: color: '#7B7B3FFF' id: HalfTileOverlayGreyscale270 decals: - 700: 32,1 - 701: 32,0 - 702: 32,-1 - 716: -32,0 - 1031: -13,3 - 1068: -18,20 - 1113: -5,17 - 1114: -5,18 - 1115: 4,17 - 1116: 4,18 - 1117: 4,19 + 697: 32,1 + 698: 32,0 + 699: 32,-1 + 713: -32,0 + 1019: -13,3 + 1056: -18,20 + 1101: -5,17 + 1102: -5,18 + 1103: 4,17 + 1104: 4,18 + 1105: 4,19 - node: color: '#7B7B3FFF' id: HalfTileOverlayGreyscale90 decals: - 940: 13,3 - 1096: 18,20 - 1118: 5,18 - 1119: 5,17 - 1120: -4,19 - 1121: -4,18 - 1122: -4,17 - 1694: -21,22 + 928: 13,3 + 1084: 18,20 + 1106: 5,18 + 1107: 5,17 + 1108: -4,19 + 1109: -4,18 + 1110: -4,17 + 1674: -21,22 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 678: 15,6 - 679: 16,6 - 680: 17,6 + 675: 15,6 + 676: 16,6 + 677: 17,6 + - node: + color: '#B8B873FF' + id: LoadingAreaGreyscale + decals: + 681: 17,10 + 682: 11,10 - node: + angle: 1.5707963267948966 rad color: '#B8B873FF' id: LoadingAreaGreyscale decals: - 684: 17,10 - 685: 11,10 + 1967: 8,17 - node: color: '#5E7C1696' id: MiniTileCheckerAOverlay decals: - 640: -2,10 - 641: -1,10 - 642: 0,10 - 672: 1,10 - 673: 2,10 + 637: -2,10 + 638: -1,10 + 639: 0,10 + 669: 1,10 + 670: 2,10 - node: color: '#37789BFF' id: MiniTileCornerOverlayNE decals: - 1217: -10,14 + 1205: -10,14 - node: color: '#37789BFF' id: MiniTileCornerOverlaySE decals: - 1218: -10,13 + 1206: -10,13 - node: color: '#37789BFF' id: MiniTileInnerOverlayNE decals: - 1215: -11,14 + 1203: -11,14 - node: color: '#37789BFF' id: MiniTileLineOverlayE decals: - 1214: -11,15 + 1202: -11,15 - node: color: '#37789BFF' id: MiniTileOverlay decals: - 1207: -11,17 + 1195: -11,17 - node: color: '#808080FF' id: MiniTileSteelLineN decals: - 1208: -11,17 + 1196: -11,17 - node: color: '#808080FF' id: MiniTileSteelLineW decals: - 1209: -10.750354,16.502127 - 1210: -10.504983,16.502127 + 1197: -10.750354,16.502127 + 1198: -10.504983,16.502127 - node: color: '#37789BFF' id: MiniTileWhiteCornerNw decals: - 1204: -12,16 + 1192: -12,16 - node: color: '#37789BFF' id: MiniTileWhiteCornerSw decals: - 1063: -12,13 + 1051: -12,13 - node: color: '#37789BFF' id: MiniTileWhiteInnerNw decals: - 1206: -11,16 + 1194: -11,16 - node: color: '#37789BFF' id: MiniTileWhiteLineE decals: - 1205: -11,16 + 1193: -11,16 - node: color: '#37789BFF' id: MiniTileWhiteLineS decals: - 1062: -11,13 + 1050: -11,13 - node: color: '#37789BFF' id: MiniTileWhiteLineW decals: - 1064: -12,14 - 1065: -12,15 + 1052: -12,14 + 1053: -12,15 - node: color: '#7B7B3FFF' id: QuarterTileOverlayGreyscale decals: - 629: 21,23 - 632: 21,22 - 633: 22,22 - 706: 31,0 - 971: -18,1 - 972: -13,2 - 977: 11,3 + 626: 21,23 + 629: 21,22 + 630: 22,22 + 703: 31,0 + 959: -18,1 + 960: -13,2 + 965: 11,3 + 1993: 8,22 + 1994: -6,22 - node: color: '#7B7B3FFF' id: QuarterTileOverlayGreyscale180 decals: - 628: 21,21 - 634: 22,22 - 638: -21,23 - 698: -22,21 - 707: 30,0 - 708: 31,1 - 1087: 5,19 - 1088: -8,20 - 1089: -4,20 - 1095: 18,21 - 1124: 6,20 + 625: 21,21 + 631: 22,22 + 635: -21,23 + 695: -22,21 + 704: 30,0 + 705: 31,1 + 1075: 5,19 + 1076: -8,20 + 1077: -4,20 + 1083: 18,21 + 1112: 6,20 - node: color: '#7B7B3FFF' id: QuarterTileOverlayGreyscale270 decals: - 627: 21,21 - 636: -20,21 - 1069: -18,21 - 1090: 4,20 - 1091: -6,20 - 1092: 8,20 - 1123: -5,19 + 624: 21,21 + 633: -20,21 + 1057: -18,21 + 1078: 4,20 + 1079: -6,20 + 1080: 8,20 + 1111: -5,19 - node: color: '#7B7B3FFF' id: QuarterTileOverlayGreyscale90 decals: - 630: 21,23 - 631: 21,22 - 637: -21,21 - 699: -22,22 - 975: -11,3 - 976: 13,2 - 979: 18,1 + 627: 21,23 + 628: 21,22 + 634: -21,21 + 696: -22,22 + 963: -11,3 + 964: 13,2 + 967: 18,1 + 1992: 6,22 + 1995: -8,22 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -1964,53 +2315,57 @@ entities: color: '#7B7B3FFF' id: ThreeQuarterTileOverlayGreyscale decals: - 970: -18,2 - 973: -13,4 - 1194: 11,4 + 958: -18,2 + 961: -13,4 + 1182: 11,4 + 1984: -6,23 + 1985: 8,23 - node: color: '#7B7B3FFF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1080: -8,19 - 1082: -4,16 - 1085: 5,16 - 1086: 6,19 - 1094: 18,19 + 1068: -8,19 + 1070: -4,16 + 1073: 5,16 + 1074: 6,19 + 1082: 18,19 - node: color: '#7B7B3FFF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1070: -18,19 - 1081: -6,19 - 1083: -5,16 - 1084: 4,16 - 1093: 8,19 + 1058: -18,19 + 1069: -6,19 + 1071: -5,16 + 1072: 4,16 + 1081: 8,19 - node: color: '#7B7B3FFF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 974: -11,4 - 978: 18,2 - 1195: 13,4 + 962: -11,4 + 966: 18,2 + 1183: 13,4 + 1986: 6,23 + 1987: -8,23 - node: color: '#B8B873FF' id: WarnCornerSmallGreyscaleSE decals: - 697: 14,9 + 694: 14,9 - node: color: '#B8B873FF' id: WarnFullGreyscale decals: - 741: 16,13 - 742: 16,14 - 743: 16,15 - 744: 16,16 - 745: 16,17 - 746: 17,17 - 747: 17,16 - 748: 17,15 - 749: 17,14 - 750: 17,13 + 737: 16,13 + 738: 16,14 + 739: 16,15 + 740: 16,16 + 741: 16,17 + 742: 17,17 + 743: 17,16 + 744: 17,15 + 745: 17,14 + 746: 17,13 - node: color: '#FFFFFFFF' id: WarnLineE @@ -2023,94 +2378,94 @@ entities: color: '#B8B873FF' id: WarnLineGreyscaleE decals: - 693: 14,8 - 727: 9,17 - 728: 15,17 - 729: 15,16 - 730: 15,14 - 731: 15,13 - 732: 15,15 - 751: 14,7 - 752: 14,6 + 690: 14,8 + 724: 9,17 + 725: 15,17 + 726: 15,16 + 727: 15,14 + 728: 15,13 + 729: 15,15 + 747: 14,7 + 748: 14,6 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1219: 23,1 - 1220: 24,1 - 1221: 25,1 - 1222: -25,1 - 1223: -24,1 - 1224: -23,1 + 1207: 23,1 + 1208: 24,1 + 1209: 25,1 + 1210: -25,1 + 1211: -24,1 + 1212: -23,1 - node: color: '#52B4E9FF' id: WarnLineGreyscaleN decals: - 1211: -11,17 + 1199: -11,17 - node: color: '#B8B873FF' id: WarnLineGreyscaleN decals: - 1053: -5,3 - 1054: -4,3 - 1055: -3,3 - 1056: 3,3 - 1057: 4,3 - 1058: 5,3 - 1188: -1,23 - 1189: 0,23 - 1190: 1,23 - 1200: 11,4 - 1201: 12,4 - 1202: 13,4 + 1041: -5,3 + 1042: -4,3 + 1043: -3,3 + 1044: 3,3 + 1045: 4,3 + 1046: 5,3 + 1176: -1,23 + 1177: 0,23 + 1178: 1,23 + 1188: 11,4 + 1189: 12,4 + 1190: 13,4 - node: color: '#CA7EF2FF' id: WarnLineGreyscaleN decals: - 1193: -8,17 + 1181: -8,17 - node: color: '#52B4E9FF' id: WarnLineGreyscaleS decals: - 1191: -11,19 + 1179: -11,19 - node: color: '#9FED58FF' id: WarnLineGreyscaleS decals: - 1212: -17,19 - 1213: -15,19 + 1200: -17,19 + 1201: -15,19 - node: color: '#B8B873FF' id: WarnLineGreyscaleS decals: - 694: 15,9 - 695: 16,9 - 696: 17,9 - 1059: -1,-1 - 1060: 0,-1 - 1061: 1,-1 - 1182: 8,19 - 1183: 9,19 - 1184: 5,16 - 1185: 4,16 - 1186: -4,16 - 1187: -5,16 - 1228: 11,6 - 1229: 12,6 - 1230: 13,6 + 691: 15,9 + 692: 16,9 + 693: 17,9 + 1047: -1,-1 + 1048: 0,-1 + 1049: 1,-1 + 1170: 8,19 + 1171: 9,19 + 1172: 5,16 + 1173: 4,16 + 1174: -4,16 + 1175: -5,16 + 1216: 12,6 + 1217: 13,6 + 1687: 11,6 - node: color: '#CA7EF2FF' id: WarnLineGreyscaleS decals: - 1192: -8,19 + 1180: -8,19 - node: color: '#B8B873FF' id: WarnLineGreyscaleW decals: - 733: 11,17 - 1225: 11,7 - 1226: 11,8 - 1227: 11,9 + 730: 11,17 + 1213: 11,7 + 1214: 11,8 + 1215: 11,9 - node: color: '#FFFFFFFF' id: WarnLineS @@ -2123,13 +2478,13 @@ entities: color: '#A46106FF' id: WoodTrimThinLineE decals: - 643: -6,5 - 644: -6,6 - 645: -6,7 - 646: -6,8 - 647: -6,9 - 648: -6,10 - 649: -6,11 + 640: -6,5 + 641: -6,6 + 642: -6,7 + 643: -6,8 + 644: -6,9 + 645: -6,10 + 646: -6,11 - node: color: '#DEC0BDFF' id: WoodTrimThinLineE @@ -2145,36 +2500,36 @@ entities: color: '#A46106FF' id: WoodTrimThinLineN decals: - 657: 5,11 - 658: 4,11 - 659: -4,11 - 660: -5,11 + 654: 5,11 + 655: 4,11 + 656: -4,11 + 657: -5,11 - node: color: '#A46106FF' id: WoodTrimThinLineS decals: - 661: -5,5 - 662: -4,5 - 663: -3,5 - 664: -2,5 - 665: 0,5 - 666: -1,5 - 667: 1,5 - 668: 2,5 - 669: 3,5 - 670: 4,5 - 671: 5,5 + 658: -5,5 + 659: -4,5 + 660: -3,5 + 661: -2,5 + 662: 0,5 + 663: -1,5 + 664: 1,5 + 665: 2,5 + 666: 3,5 + 667: 4,5 + 668: 5,5 - node: color: '#A46106FF' id: WoodTrimThinLineW decals: - 650: 6,5 - 651: 6,6 - 652: 6,7 - 653: 6,8 - 654: 6,9 - 655: 6,10 - 656: 6,11 + 647: 6,5 + 648: 6,6 + 649: 6,7 + 650: 6,8 + 651: 6,9 + 652: 6,10 + 653: 6,11 - node: color: '#DEC0BDFF' id: WoodTrimThinLineW @@ -2532,20 +2887,6 @@ entities: - type: Transform pos: -16.5,18.5 parent: 1 -- proto: AirlockEngineering - entities: - - uid: 698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,16.5 - parent: 1 - - uid: 823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - proto: AirlockExternalGlass entities: - uid: 54 @@ -2762,6 +3103,20 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 1 +- proto: AirlockFrontierCommandEngineeringLocked + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 1 - proto: AirlockGlassShuttle entities: - uid: 151 @@ -3122,6 +3477,18 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-0.5 parent: 1 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,22.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,22.5 + parent: 1 - uid: 449 components: - type: Transform @@ -3145,16 +3512,6 @@ entities: - type: Transform pos: 7.5,20.5 parent: 1 - - uid: 1081 - components: - - type: Transform - pos: 7.5,22.5 - parent: 1 - - uid: 1082 - components: - - type: Transform - pos: -6.5,22.5 - parent: 1 - uid: 1083 components: - type: Transform @@ -4733,6 +5090,14 @@ entities: parent: 1 - type: Physics bodyType: Static + - uid: 2523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 1 + - type: Physics + bodyType: Static - proto: BenchSteelMiddle entities: - uid: 868 @@ -4779,6 +5144,14 @@ entities: parent: 1 - type: Physics bodyType: Static + - uid: 2525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 1 + - type: Physics + bodyType: Static - proto: BenchSteelRight entities: - uid: 883 @@ -4825,6 +5198,14 @@ entities: parent: 1 - type: Physics bodyType: Static + - uid: 2524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,20.5 + parent: 1 + - type: Physics + bodyType: Static - proto: BodyBagFolded entities: - uid: 1495 @@ -7342,9 +7723,39 @@ entities: - type: Transform pos: -12.5,23.5 parent: 1 -- proto: ComputerShipyardExpedition +- proto: ComputerTabletopCrewMonitoring entities: - - uid: 1018 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 1039 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 2165 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 2516 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 +- proto: ComputerTabletopShipyardExpedition + entities: + - uid: 2144 components: - type: Transform pos: 15.5,11.5 @@ -7359,7 +7770,7 @@ entities: showEnts: False occludes: True ents: [] - - uid: 1019 + - uid: 2164 components: - type: Transform pos: 13.5,11.5 @@ -7374,39 +7785,86 @@ entities: showEnts: False occludes: True ents: [] -- proto: ComputerTabletopCrewMonitoring +- proto: ComputerWallmountWithdrawBankATM entities: - - uid: 1040 + - uid: 2517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,7.5 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 parent: 1 -- proto: ComputerTabletopRadar - entities: - - uid: 1039 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 2518 components: - type: Transform - pos: -12.5,9.5 + rot: 1.5707963267948966 rad + pos: 3.5,12.5 parent: 1 - - uid: 1056 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 2519 components: - type: Transform - pos: -2.5,10.5 + rot: 3.141592653589793 rad + pos: 25.5,-1.5 parent: 1 - - uid: 2165 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 2520 components: - type: Transform - pos: 0.5,3.5 + rot: 3.141592653589793 rad + pos: -24.5,-1.5 parent: 1 -- proto: ComputerWithdrawBankATM - entities: - - uid: 958 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 2521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots + - uid: 2522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,11.5 + pos: -18.5,20.5 parent: 1 + - type: Physics + canCollide: False - type: ContainerContainer containers: board: !type:Container @@ -7419,97 +7877,97 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,15.5 + pos: 16.5,14.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 824 + - 1763 + - uid: 823 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,14.5 + pos: 16.5,15.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 961 + - 1763 + - uid: 824 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,13.5 + pos: 16.5,16.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1156 + - 1763 + - uid: 958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,13.5 + rot: 1.5707963267948966 rad + pos: 16.5,17.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1497 + - 1763 + - uid: 961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,15.5 + pos: 17.5,17.5 parent: 1 - type: DeviceLinkSink links: - - 2104 - - uid: 1710 + - 1763 + - uid: 1017 components: - type: Transform - pos: 17.5,14.5 + pos: 17.5,16.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1711 + - 1763 + - uid: 1018 components: - type: Transform pos: 17.5,15.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1712 + - 1763 + - uid: 1019 components: - type: Transform - pos: 17.5,16.5 + pos: 17.5,14.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1713 + - 1763 + - uid: 1020 components: - type: Transform - pos: 17.5,17.5 + rot: -1.5707963267948966 rad + pos: 17.5,13.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1714 + - 1763 + - uid: 1021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,17.5 + rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 1 - type: DeviceLinkSink links: - - 2103 - - uid: 1715 + - 1763 + - uid: 1497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,16.5 + rot: 1.5707963267948966 rad + pos: -7.5,15.5 parent: 1 - type: DeviceLinkSink links: - - 2103 + - 2104 - proto: DefaultStationBeaconArmory entities: - uid: 2190 @@ -7677,6 +8135,12 @@ entities: rot: 3.141592653589793 rad pos: -10.5,17.5 parent: 1 + - uid: 2539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 - proto: DisposalJunction entities: - uid: 393 @@ -7685,6 +8149,12 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1 - uid: 1634 components: - type: Transform @@ -8087,12 +8557,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,9.5 parent: 1 - - uid: 1992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,8.5 - parent: 1 - uid: 1993 components: - type: Transform @@ -8312,6 +8776,52 @@ entities: - type: Transform pos: -7.5,16.5 parent: 1 + - uid: 2533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 2534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + - uid: 2535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 2536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - uid: 2537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 2538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 2540 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 2541 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 - proto: DisposalTrunk entities: - uid: 388 @@ -8338,6 +8848,11 @@ entities: rot: 3.141592653589793 rad pos: -13.5,16.5 parent: 1 + - uid: 1874 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 - uid: 1882 components: - type: Transform @@ -8395,6 +8910,11 @@ entities: - type: Transform pos: 8.5,23.5 parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 - uid: 1085 components: - type: Transform @@ -9926,6 +10446,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1060 components: - type: Transform @@ -10610,13 +11138,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1271 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1272 components: - type: Transform @@ -11779,6 +12300,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 1022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1154 components: - type: Transform @@ -11928,14 +12457,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1763 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1765 components: - type: Transform @@ -12239,6 +12760,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 1054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1229 components: - type: Transform @@ -12305,14 +12834,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1828 components: - type: Transform @@ -13761,6 +14282,13 @@ entities: - type: Transform pos: 6.535731,10.07715 parent: 1 +- proto: NonLethalVendingMachine + entities: + - uid: 1768 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 - proto: PaperBin20 entities: - uid: 1044 @@ -13788,16 +14316,6 @@ entities: - type: Transform pos: 18.5,2.5 parent: 1 - - uid: 1050 - components: - - type: Transform - pos: 12.5,11.5 - parent: 1 - - uid: 1053 - components: - - type: Transform - pos: 16.5,11.5 - parent: 1 - uid: 1877 components: - type: Transform @@ -13848,6 +14366,21 @@ entities: - type: Transform pos: 10.5,3.5 parent: 1 + - uid: 2528 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 2529 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1 + - uid: 2542 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 - proto: PowerCellRecharger entities: - uid: 2191 @@ -15381,6 +15914,11 @@ entities: parent: 1 - proto: SpawnPointMercenary entities: + - uid: 906 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 - uid: 2056 components: - type: Transform @@ -15394,15 +15932,25 @@ entities: - uid: 2068 components: - type: Transform - pos: 13.5,19.5 + pos: 9.5,3.5 parent: 1 - uid: 2072 components: - type: Transform pos: -12.5,19.5 parent: 1 + - uid: 2532 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 - proto: SpawnPointPilot entities: + - uid: 878 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 - uid: 2060 components: - type: Transform @@ -15413,6 +15961,16 @@ entities: - type: Transform pos: 17.5,2.5 parent: 1 + - uid: 2530 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 2531 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 - proto: StairDark entities: - uid: 477 @@ -15447,7 +16005,7 @@ entities: - type: Transform pos: -24.5,2.5 parent: 1 - - uid: 1150 + - uid: 1836 components: - type: Transform rot: 1.5707963267948966 rad @@ -15607,23 +16165,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 1 -- proto: TableCounterMetal - entities: - - uid: 103 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1 - - uid: 2144 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 2164 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1 - proto: TableCounterWood entities: - uid: 217 @@ -15641,47 +16182,6 @@ entities: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 530 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - - uid: 533 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 1020 - components: - - type: Transform - pos: -2.5,9.5 - parent: 1 - - uid: 1021 - components: - - type: Transform - pos: -1.5,9.5 - parent: 1 - - uid: 1022 - components: - - type: Transform - pos: -2.5,10.5 - parent: 1 - - uid: 1054 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - - uid: 1055 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - - uid: 1836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 1 - uid: 2139 components: - type: Transform @@ -15694,11 +16194,20 @@ entities: parent: 1 - proto: TableReinforced entities: - - uid: 22 + - uid: 530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,16.5 + pos: 14.5,11.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 15.5,11.5 parent: 1 - uid: 790 components: @@ -15733,6 +16242,24 @@ entities: - type: Transform pos: 10.5,13.5 parent: 1 + - uid: 1081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 - proto: TableReinforcedGlass entities: - uid: 270 @@ -15792,6 +16319,46 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 - proto: TargetHuman entities: - uid: 1721 @@ -15843,50 +16410,50 @@ entities: parent: 1 - proto: TwoWayLever entities: - - uid: 2103 + - uid: 1763 components: - type: Transform - pos: 7.5,17.5 + pos: 7.5,16.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 1714: + 958: - Left: Forward - Right: Forward - Middle: Off - 1713: + 961: - Left: Forward - Right: Forward - Middle: Off - 1712: + 1017: - Left: Forward - Right: Forward - Middle: Off - 1711: + 1018: - Left: Forward - Right: Forward - Middle: Off - 1710: + 1019: - Left: Forward - Right: Forward - Middle: Off - 1156: + 1020: - Left: Forward - Right: Forward - Middle: Off - 961: + 1021: - Left: Forward - Right: Forward - Middle: Off - 824: + 701: - Left: Forward - Right: Forward - Middle: Off - 701: + 823: - Left: Forward - Right: Forward - Middle: Off - 1715: + 824: - Left: Forward - Right: Forward - Middle: Off @@ -15910,6 +16477,11 @@ entities: parent: 1 - proto: VendingMachineAstroVend entities: + - uid: 1992 + components: + - type: Transform + pos: -5.5,23.5 + parent: 1 - uid: 2052 components: - type: Transform @@ -15938,15 +16510,15 @@ entities: parent: 1 - proto: VendingMachineExpeditionaryFlatpackVend entities: - - uid: 1160 + - uid: 1169 components: - type: Transform - pos: -5.5,19.5 + pos: -12.5,4.5 parent: 1 - - uid: 1169 + - uid: 2103 components: - type: Transform - pos: -12.5,4.5 + pos: -5.5,19.5 parent: 1 - proto: VendingMachineMedical entities: @@ -15974,6 +16546,11 @@ entities: - type: Transform pos: -1.5,3.5 parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1 - uid: 2146 components: - type: Transform @@ -17314,20 +17891,6 @@ entities: - type: Transform pos: -8.5,14.5 parent: 1 -- proto: WallSolidDiagonal - entities: - - uid: 435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - - uid: 445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,23.5 - parent: 1 - proto: WarpPointNFLodge entities: - uid: 3 @@ -17351,15 +17914,15 @@ entities: parent: 1 - proto: WeaponLaserCarbinePractice entities: - - uid: 1874 + - uid: 2512 components: - type: Transform - pos: 7.494196,16.529806 + pos: 7.6572943,14.637034 parent: 1 - - uid: 1875 + - uid: 2513 components: - type: Transform - pos: 7.541071,16.061056 + pos: 7.5947943,15.324534 parent: 1 - proto: Windoor entities: @@ -17419,7 +17982,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,14.5 + pos: 3.5,9.5 parent: 1 - uid: 836 components: @@ -17427,41 +17990,29 @@ entities: rot: 3.141592653589793 rad pos: 10.5,16.5 parent: 1 - - uid: 878 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 1 - - uid: 906 + - uid: 1048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 + rot: -1.5707963267948966 rad + pos: 16.5,11.5 parent: 1 - - uid: 1017 + - uid: 1050 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,11.5 + pos: -13.5,2.5 parent: 1 - - uid: 1048 + - uid: 1053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 1 - - uid: 1049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,11.5 + pos: -17.5,2.5 parent: 1 - - uid: 1051 + - uid: 1875 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,11.5 + pos: 12.5,11.5 parent: 1 - uid: 1892 components: @@ -17516,4 +18067,28 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,3.5 parent: 1 + - uid: 2514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - uid: 2515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,2.5 + parent: 1 + - uid: 2526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + - uid: 2527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 ... diff --git a/Resources/Maps/_NF/POI/lpbravo.yml b/Resources/Maps/_NF/POI/lpbravo.yml index 7baca44a143..6b9a0782103 100644 --- a/Resources/Maps/_NF/POI/lpbravo.yml +++ b/Resources/Maps/_NF/POI/lpbravo.yml @@ -6,6 +6,7 @@ tilemap: 30: FloorDark 34: FloorDarkMini 35: FloorDarkMono + 1: FloorTechMaint 121: FloorWood 124: Lattice 125: Plating @@ -23,7 +24,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADIwAAAAACIwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAAAIgAAAAADHgAAAAABHgAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADIwAAAAACIwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABIgAAAAAAIgAAAAADHgAAAAABHgAAAAADfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAHgAAAAADHgAAAAABHgAAAAACfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 @@ -31,7 +32,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAABIwAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAACIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAABIwAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAACIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABAQAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAA version: 6 -1,-1: ind: -1,-1 @@ -67,6 +68,16 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#96DAFFFF' + id: DeliveryGreyscale + decals: + 58: 0,4 + - node: + color: '#FF5C5CFF' + id: DeliveryGreyscale + decals: + 59: -2,4 - node: color: '#FF0000FF' id: HalfTileOverlayGreyscale @@ -1210,56 +1221,80 @@ entities: parent: 1 - type: Physics bodyType: Static -- proto: BlastDoorOpen +- proto: BlastDoor entities: + - uid: 119 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 469 + - uid: 163 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - type: DeviceLinkSink + links: + - 469 + - uid: 450 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - type: DeviceLinkSink + links: + - 469 - uid: 455 components: - type: Transform - pos: -2.5,5.5 + pos: -2.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 456 components: - type: Transform - pos: -3.5,5.5 + pos: 1.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 457 components: - type: Transform - pos: -6.5,2.5 + pos: 2.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 458 components: - type: Transform - pos: 1.5,5.5 + pos: 5.5,-8.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 459 components: - type: Transform - pos: 2.5,5.5 + pos: 6.5,-8.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 460 components: - type: Transform - pos: 5.5,2.5 + pos: 7.5,-7.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 461 components: - type: Transform @@ -1267,71 +1302,55 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 462 components: - type: Transform - pos: 7.5,-7.5 + pos: -3.5,5.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 463 components: - type: Transform - pos: 6.5,-8.5 + pos: -6.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 464 components: - type: Transform - pos: 5.5,-8.5 + pos: -2.5,5.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 465 components: - type: Transform - pos: 2.5,-7.5 + pos: 1.5,5.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 466 components: - type: Transform - pos: 1.5,-7.5 + pos: 2.5,5.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 467 components: - type: Transform - pos: -2.5,-7.5 - parent: 1 - - type: DeviceLinkSink - links: - - 481 - - uid: 468 - components: - - type: Transform - pos: -3.5,-7.5 - parent: 1 - - type: DeviceLinkSink - links: - - 481 - - uid: 469 - components: - - type: Transform - pos: -6.5,-8.5 + pos: 5.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 - uid: 470 components: - type: Transform @@ -1339,87 +1358,57 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 481 - - uid: 471 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 1 - - type: DeviceLinkSink - links: - - 481 + - 469 - uid: 472 components: - type: Transform - pos: -8.5,-6.5 + pos: -6.5,-8.5 parent: 1 - type: DeviceLinkSink links: - - 481 + - 469 +- proto: BlastDoorOpen + entities: - uid: 482 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 483 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 484 components: - type: Transform pos: -0.5,6.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 485 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 486 components: - type: Transform pos: -7.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 487 components: - type: Transform pos: -7.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 488 components: - type: Transform pos: 6.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - uid: 489 components: - type: Transform pos: -7.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 481 - proto: BlockGameArcade entities: - uid: 184 @@ -1455,6 +1444,13 @@ entities: - type: Transform pos: -3.3070703,-3.2709007 parent: 1 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 468 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 - proto: CableApcExtension entities: - uid: 2 @@ -2647,10 +2643,10 @@ entities: parent: 1 - proto: Fireplace entities: - - uid: 163 + - uid: 471 components: - type: Transform - pos: 4.5,-6.5 + pos: 5.5,-4.5 parent: 1 - proto: FloorDrain entities: @@ -2668,6 +2664,465 @@ entities: - type: Transform pos: -0.60568905,0.70943654 parent: 1 +- proto: GasMixerOn + entities: + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 660 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 664 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 684 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 696 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 675 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 676 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 680 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 681 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 682 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 685 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 686 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 702 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 703 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 704 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 673 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 691 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 654 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 655 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePumpOnMax + entities: + - uid: 656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GeneratorWallmountAPU entities: - uid: 517 @@ -2828,6 +3283,26 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 +- proto: NitrogenCanister + entities: + - uid: 711 + components: + - type: Transform + anchored: True + pos: -1.5,4.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: OxygenCanister + entities: + - uid: 712 + components: + - type: Transform + anchored: True + pos: 0.5,4.5 + parent: 1 + - type: Physics + bodyType: Static - proto: PaperOffice entities: - uid: 179 @@ -2890,10 +3365,10 @@ entities: parent: 1 - proto: PosterContrabandEnergySwords entities: - - uid: 507 + - uid: 526 components: - type: Transform - pos: 6.5,-4.5 + pos: 7.5,-5.5 parent: 1 - proto: PosterContrabandFreeSyndicateEncryptionKey entities: @@ -3311,66 +3786,50 @@ entities: - type: Transform pos: -2.8351736,-3.1191983 parent: 1 -- proto: SignalButton +- proto: SignalButtonDirectional entities: - - uid: 481 + - uid: 469 components: - type: Transform pos: -4.5,1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 457: - - Pressed: Toggle - 489: - - Pressed: Toggle - 487: - - Pressed: Toggle - 486: - - Pressed: Toggle - 472: - - Pressed: Toggle - 471: - - Pressed: Toggle - 470: - - Pressed: Toggle - 469: + 463: - Pressed: Toggle - 468: + 462: - Pressed: Toggle - 467: + 464: - Pressed: Toggle - 485: + 465: - Pressed: Toggle 466: - Pressed: Toggle - 465: - - Pressed: Toggle - 464: + 467: - Pressed: Toggle - 463: + 163: - Pressed: Toggle - 461: + 450: - Pressed: Toggle - 462: + 470: - Pressed: Toggle - 483: + 472: - Pressed: Toggle - 482: + 119: - Pressed: Toggle - 488: + 455: - Pressed: Toggle - 460: + 456: - Pressed: Toggle - 459: + 457: - Pressed: Toggle 458: - Pressed: Toggle - 484: + 459: - Pressed: Toggle - 455: + 461: - Pressed: Toggle - 456: + 460: - Pressed: Toggle - proto: SinkStemlessWater entities: @@ -3521,25 +3980,32 @@ entities: parent: 1 - type: SpamEmitSound enabled: False -- proto: SpawnMobSyndicateNavalDeckhand +- proto: SpawnMobSyndicateNavalDeckhandVoid entities: - - uid: 525 + - uid: 481 components: - type: Transform - pos: -4.5,-3.5 + pos: -1.5,-2.5 parent: 1 - - uid: 526 + - uid: 507 components: - type: Transform - pos: -1.5,-2.5 + pos: -4.5,-3.5 parent: 1 -- proto: SpawnMobSyndicateNavalEngineer +- proto: SpawnMobSyndicateNavalEngineerVoid entities: - - uid: 450 + - uid: 525 components: - type: Transform pos: -0.5,3.5 parent: 1 +- proto: SpawnMobSyndicateNavalHardVoid + entities: + - uid: 653 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 - proto: SpawnVehicleAntagVehicle entities: - uid: 169 @@ -4068,12 +4534,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,-5.5 parent: 1 - - uid: 119 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-4.5 - parent: 1 - uid: 120 components: - type: Transform @@ -4151,4 +4611,38 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 +- proto: WeaponTurretLaserSyndicateNF + entities: + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 +- proto: WeaponTurretSyndicate + entities: + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + - uid: 715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml index 7e6298b48d6..aef044469e0 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/menace.yml @@ -3,38 +3,38 @@ meta: postmapinit: false tilemap: 0: Space - 33: FloorDarkMono - 37: FloorDarkPlastic - 44: FloorGlass - 97: FloorTechMaint - 113: Lattice - 114: Plating + 88: FloorShuttleWhite + 107: FloorTechMaint + 1: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: - - uid: 103 + - uid: 1 components: - type: MetaData + name: grid - type: Transform - pos: 0.015568733,-0.010050297 + pos: -0.48958334,-0.5208333 parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: JQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAWAAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAIQAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAIQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -45,10 +45,8 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} - - type: IFF - color: '#FFC000FF' - flags: HideLabel - type: OccluderTree + - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - type: Gravity @@ -59,59 +57,131 @@ entities: version: 2 nodes: - node: - angle: -1.5707963267948966 rad - color: '#95E5FFFF' - id: ArrowsGreyscale + color: '#1D1D21FF' + id: BrickTileWhiteCornerNe + decals: + 20: 6,1 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteCornerNw + decals: + 17: -1,1 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteCornerSe + decals: + 35: 0,-3 + 36: 6,-3 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteCornerSw + decals: + 33: 5,-3 + 34: -1,-3 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteInnerSe decals: - 1: -2,1 + 27: 0,-1 - node: - color: '#95E5FFB2' - id: BotGreyscale + color: '#1D1D21FF' + id: BrickTileWhiteInnerSw decals: - 0: -2,1 + 28: 5,-1 - node: - color: '#52B4E996' + color: '#1D1D21FF' id: BrickTileWhiteLineE decals: - 5: 1,1 - 6: 1,2 - 7: 1,3 + 37: 6,-1 + 38: 6,0 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteLineN + decals: + 21: 5,1 + 22: 4,1 + 23: 3,1 + 24: 2,1 + 25: 1,1 + 26: 0,1 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteLineS + decals: + 29: 1,-1 + 30: 2,-1 + 31: 3,-1 + 32: 4,-1 + - node: + color: '#1D1D21FF' + id: BrickTileWhiteLineW + decals: + 18: -1,0 + 19: -1,-1 + - node: + color: '#DE3A3A96' + id: StandClear + decals: + 16: 5,1 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 10: 4,3 - node: color: '#FFFFFFFF' - id: WarnCornerNE + id: WarnLineN decals: - 4: -1,0 + 1: 6,-4 + 3: 5,2 + 6: 5,-2 + 7: 6,-2 + 9: 5,2 + 14: -1,-2 + 15: 0,-2 - node: color: '#FFFFFFFF' - id: WarnCornerNW + id: WarnLineS decals: - 3: 1,0 + 11: 4,3 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 2: -2,0 + 0: 6,-4 + 2: 5,2 + 4: 5,-2 + 5: 6,-2 + 8: 5,2 + 12: -1,-2 + 13: 0,-2 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 13107 - 1: 34952 + 0: 255 + 1: 61440 0,-1: - 0: 13104 - 2: 4 + 0: 61713 + 1: 204 -1,0: - 0: 36076 - 1: 8192 + 0: 136 + 1: 57890 0,1: - 1: 12 - -1,-1: - 0: 51328 - 1: 32 - 2: 4 + 1: 15 -1,1: - 1: 6 + 1: 14 + 1,0: + 0: 12919 + 1: 32768 + 1,-1: + 0: 30308 + 1,1: + 1: 8 + -1,-1: + 1: 8738 + 0: 34944 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -143,954 +213,1553 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: BecomesStation - id: mailhunter - - type: SpreaderGrid -- proto: AirAlarm +- proto: AirlockExternalGlass entities: - - uid: 125 + - uid: 8 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 103 - - type: DeviceList - devices: - - 82 - - 40 -- proto: AirCanister + pos: 4.5,3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: AirlockGlassShuttle entities: - - uid: 2 + - uid: 19 components: - type: Transform - anchored: True - pos: -0.5,0.5 - parent: 103 - - type: Physics - bodyType: Static -- proto: AirlockShuttle + pos: 6.5,-3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 +- proto: APCBasic entities: - - uid: 13 + - uid: 39 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 103 -- proto: AmeController + pos: 7.5,-0.5 + parent: 1 +- proto: AtmosDeviceFanTiny entities: - - uid: 87 + - uid: 7 components: - type: Transform - pos: 1.5,0.5 - parent: 103 - - type: AmeController - injecting: True - - type: ContainerContainer - containers: - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: 88 - fuelSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: AmeJar - entities: - - uid: 88 + pos: 6.5,-3.5 + parent: 1 + - uid: 24 components: - type: Transform - parent: 87 - - type: Physics - canCollide: False - - uid: 133 + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 151 components: - type: Transform - pos: 0.67193127,0.721212 - parent: 103 - - uid: 134 + pos: 0.5,-3.5 + parent: 1 + - uid: 163 components: - type: Transform - pos: 0.3177646,0.721212 - parent: 103 -- proto: AmeShielding + pos: -0.5,-3.5 + parent: 1 +- proto: AtmosFixBlockerMarker entities: - - uid: 3 + - uid: 20 components: - type: Transform - pos: -0.5,-2.5 - parent: 103 - - uid: 6 + pos: -2.5,3.5 + parent: 1 + - uid: 28 components: - type: Transform - pos: -0.5,-1.5 - parent: 103 - - uid: 8 + pos: -1.5,3.5 + parent: 1 + - uid: 29 components: - type: Transform - pos: -0.5,-0.5 - parent: 103 - - uid: 9 + pos: -2.5,2.5 + parent: 1 + - uid: 78 components: - type: Transform - pos: 0.5,-2.5 - parent: 103 - - uid: 15 + pos: 7.5,3.5 + parent: 1 + - uid: 85 components: - type: Transform - pos: 0.5,-1.5 - parent: 103 - - type: PointLight - radius: 2 - enabled: True - - uid: 17 + pos: -1.5,4.5 + parent: 1 + - uid: 97 components: - type: Transform - pos: 0.5,-0.5 - parent: 103 - - uid: 110 + pos: 2.5,-2.5 + parent: 1 + - uid: 113 components: - type: Transform - pos: 1.5,-0.5 - parent: 103 - - uid: 111 + pos: 3.5,3.5 + parent: 1 + - uid: 117 components: - type: Transform - pos: 1.5,-1.5 - parent: 103 - - uid: 112 + pos: -2.5,-1.5 + parent: 1 + - uid: 165 components: - type: Transform - pos: 1.5,-2.5 - parent: 103 -- proto: APCBasic - entities: - - uid: 84 + pos: 7.5,4.5 + parent: 1 + - uid: 171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 103 -- proto: AtmosDeviceFanTiny - entities: - - uid: 45 + pos: -2.5,4.5 + parent: 1 + - uid: 184 components: - type: Transform - pos: -2.5,1.5 - parent: 103 - - uid: 86 + pos: 2.5,3.5 + parent: 1 + - uid: 185 components: - type: Transform - pos: 2.5,2.5 - parent: 103 -- proto: AtmosFixBlockerMarker - entities: - - uid: 57 + pos: 1.5,3.5 + parent: 1 + - uid: 186 components: - type: Transform - pos: 3.5,0.5 - parent: 103 - - uid: 77 + pos: 0.5,3.5 + parent: 1 + - uid: 187 components: - type: Transform - pos: -2.5,3.5 - parent: 103 - - uid: 78 + pos: -0.5,3.5 + parent: 1 + - uid: 188 components: - type: Transform - pos: 3.5,2.5 - parent: 103 - - uid: 89 + pos: -0.5,4.5 + parent: 1 + - uid: 189 components: - type: Transform - pos: 3.5,1.5 - parent: 103 - - uid: 92 + pos: 0.5,4.5 + parent: 1 + - uid: 190 components: - type: Transform - pos: 3.5,3.5 - parent: 103 - - uid: 98 + pos: 1.5,4.5 + parent: 1 + - uid: 191 components: - type: Transform - pos: -2.5,4.5 - parent: 103 - - uid: 99 + pos: 2.5,4.5 + parent: 1 + - uid: 192 components: - type: Transform - pos: -1.5,4.5 - parent: 103 - - uid: 107 + pos: 3.5,4.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 203 components: - type: Transform pos: 2.5,-3.5 - parent: 103 - - uid: 108 + parent: 1 + - uid: 204 components: - type: Transform - pos: -1.5,-3.5 - parent: 103 - - uid: 109 + pos: -2.5,-3.5 + parent: 1 + - uid: 205 components: - type: Transform pos: -2.5,-2.5 - parent: 103 - - uid: 121 + parent: 1 + - uid: 208 components: - type: Transform - pos: 3.5,4.5 - parent: 103 - - uid: 122 + pos: -2.5,-0.5 + parent: 1 + - uid: 209 components: - type: Transform - pos: 2.5,4.5 - parent: 103 -- proto: BlastDoor - entities: - - uid: 81 + pos: -2.5,0.5 + parent: 1 + - uid: 210 components: - type: Transform - pos: 2.5,2.5 - parent: 103 - - type: DeviceLinkSink - links: - - 61 -- proto: CableApcExtension + pos: -2.5,1.5 + parent: 1 +- proto: ButtonFrameCautionSecurity entities: - - uid: 19 + - uid: 40 components: - type: Transform - pos: 2.5,1.5 - parent: 103 - - uid: 23 + rot: 3.141592653589793 rad + pos: 1.3038858,-1.5 + parent: 1 + - uid: 239 components: - type: Transform - pos: 0.5,-1.5 - parent: 103 - - uid: 24 + rot: 3.141592653589793 rad + pos: 1.7622192,-1.5 + parent: 1 +- proto: ButtonFrameExit + entities: + - uid: 35 components: - type: Transform - pos: 0.5,-2.5 - parent: 103 - - uid: 27 + pos: 5.5,4.5 + parent: 1 + - uid: 112 components: - type: Transform - pos: 1.5,2.5 - parent: 103 - - uid: 31 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 153 components: - type: Transform - pos: 1.5,3.5 - parent: 103 - - uid: 51 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 9 components: - type: Transform - pos: 1.5,1.5 - parent: 103 - - uid: 68 + pos: -0.5,2.5 + parent: 1 + - uid: 17 components: - type: Transform - pos: 0.5,-0.5 - parent: 103 - - uid: 73 + pos: 3.5,-0.5 + parent: 1 + - uid: 23 components: - type: Transform - pos: 0.5,0.5 - parent: 103 - - uid: 74 + pos: 4.5,2.5 + parent: 1 + - uid: 25 components: - type: Transform - pos: 0.5,1.5 - parent: 103 - - uid: 79 + pos: 3.5,2.5 + parent: 1 + - uid: 27 components: - type: Transform - pos: -0.5,1.5 - parent: 103 - - uid: 80 + pos: 0.5,2.5 + parent: 1 + - uid: 30 components: - type: Transform - pos: -1.5,1.5 - parent: 103 - - uid: 113 + pos: 1.5,-0.5 + parent: 1 + - uid: 33 components: - type: Transform - pos: -0.5,-2.5 - parent: 103 - - uid: 120 + pos: 7.5,-0.5 + parent: 1 + - uid: 55 components: - type: Transform pos: -1.5,2.5 - parent: 103 -- proto: CableHV - entities: - - uid: 43 + parent: 1 + - uid: 98 components: - type: Transform - pos: 2.5,0.5 - parent: 103 + pos: 5.5,3.5 + parent: 1 - uid: 104 components: - type: Transform - pos: 1.5,0.5 - parent: 103 -- proto: CableMV - entities: - - uid: 33 + pos: 2.5,-0.5 + parent: 1 + - uid: 114 components: - type: Transform - pos: 2.5,1.5 - parent: 103 - - uid: 67 + pos: 2.5,2.5 + parent: 1 + - uid: 115 components: - type: Transform - pos: 2.5,0.5 - parent: 103 -- proto: Catwalk - entities: - - uid: 4 + pos: 1.5,2.5 + parent: 1 + - uid: 118 components: - type: Transform - pos: 0.5,-1.5 - parent: 103 - - uid: 7 + pos: 6.5,0.5 + parent: 1 + - uid: 125 components: - type: Transform - pos: 0.5,-0.5 - parent: 103 - - uid: 14 + pos: 5.5,1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 231 components: - type: Transform pos: 0.5,-2.5 - parent: 103 - - uid: 47 + parent: 1 + - uid: 232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 103 + pos: 0.5,-1.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 94 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 +- proto: CableMV + entities: + - uid: 22 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 +- proto: CannonBall + entities: + - uid: 101 + components: + - type: Transform + pos: 1.0542351,4.114599 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 1.2070776,4.381369 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 1.352911,4.131369 + parent: 1 +- proto: Catwalk + entities: + - uid: 46 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 - uid: 48 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 103 + pos: 0.5,3.5 + parent: 1 - uid: 49 components: - type: Transform - pos: -2.5,-2.5 - parent: 103 - - uid: 50 + pos: 2.5,4.5 + parent: 1 + - uid: 57 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 103 - - uid: 56 + pos: 0.5,4.5 + parent: 1 + - uid: 58 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 103 - - uid: 94 + pos: -0.5,4.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 86 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 103 - - uid: 101 + parent: 1 + - uid: 103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 103 - - uid: 102 + pos: -2.5,2.5 + parent: 1 + - uid: 116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 103 - - uid: 105 + pos: -2.5,1.5 + parent: 1 + - uid: 120 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 103 - - uid: 118 + pos: -2.5,3.5 + parent: 1 + - uid: 129 components: - type: Transform - pos: -2.5,3.5 - parent: 103 + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 - proto: ChairWood entities: - - uid: 55 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 103 + pos: 0.5,0.5 + parent: 1 +- proto: ClosetWall + entities: + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ComputerTabletopIFF entities: - - uid: 63 + - uid: 5 components: - type: Transform - pos: 1.5,3.5 - parent: 103 + pos: 1.5,1.5 + parent: 1 - proto: ComputerTabletopShuttleAntag entities: - - uid: 95 + - uid: 83 components: - type: Transform - pos: 0.5,3.5 - parent: 103 + pos: 0.5,1.5 + parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 96 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 103 + pos: -0.5,0.5 + parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 117 + - uid: 89 components: - type: Transform - pos: -1.5,3.5 - parent: 103 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 +- proto: DogBed + entities: + - uid: 144 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 - proto: EmergencyLight entities: - - uid: 128 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 111 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 103 + pos: 5.5,3.5 + parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 124 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 103 + pos: 7.5,-2.5 + parent: 1 - proto: FaxMachineShipAntag entities: - - uid: 22 + - uid: 159 components: - type: Transform - pos: -0.5,3.5 - parent: 103 + pos: -0.5,1.5 + parent: 1 +- proto: Floodlight + entities: + - uid: 219 + components: + - type: Transform + pos: -2.4418511,4.487601 + parent: 1 +- proto: GasMixerOnFlipped + entities: + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPassiveVent entities: - - uid: 114 + - uid: 50 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 103 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 136 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 52 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 41 + - uid: 99 components: - type: Transform - pos: -0.5,2.5 - parent: 103 + pos: 2.5,-1.5 + parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' - - uid: 62 + color: '#990000FF' + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 103 + pos: 1.5,-2.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 115 + - uid: 196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 103 + pos: 4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPort entities: - - uid: 39 + - uid: 2 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 103 + pos: 3.5,-0.5 + parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' -- proto: GasPressurePump - entities: - - uid: 37 + color: '#0055CCFF' + - uid: 54 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 103 + pos: 4.5,-0.5 + parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' - - uid: 69 + color: '#0055CCFF' +- proto: GasPressurePumpOn + entities: + - uid: 167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 103 + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 40 + - uid: 200 components: - type: Transform - pos: -0.5,3.5 - parent: 103 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 82 + - uid: 106 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 103 + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 1 + - uid: 14 components: - type: Transform - pos: -1.5,-0.5 - parent: 103 + pos: 2.5,-2.5 + parent: 1 - proto: Grille entities: - - uid: 26 + - uid: 67 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 103 - - uid: 35 + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 68 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 103 - - uid: 36 + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 79 components: - type: Transform - pos: -2.5,-0.5 - parent: 103 - - uid: 52 + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 80 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 103 - - uid: 100 + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 81 components: - type: Transform - pos: 1.5,4.5 - parent: 103 + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 - proto: Gyroscope entities: - - uid: 119 + - uid: 15 components: - type: Transform - pos: -1.5,0.5 - parent: 103 + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 - type: Thruster originalPowerLoad: 1500 -- proto: PoweredlightColoredBlack +- proto: NetworkConfigurator entities: - - uid: 127 + - uid: 182 + components: + - type: Transform + pos: 1.1555657,3.5919085 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 100 + components: + - type: Transform + anchored: True + pos: 4.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: OxygenCanister + entities: + - uid: 211 + components: + - type: Transform + anchored: True + pos: 3.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: PirateFlag + entities: + - uid: 168 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 4 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 96 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: Poweredlight + entities: + - uid: 155 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 103 + pos: 3.5,4.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 - proto: Rack entities: - - uid: 5 + - uid: 156 components: - type: Transform - pos: 0.5,0.5 - parent: 103 -- proto: ReinforcedPlasmaWindow + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: Railing entities: + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 - uid: 75 components: - type: Transform - pos: 1.5,4.5 - parent: 103 - - uid: 83 + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 224 components: - type: Transform - pos: -2.5,0.5 - parent: 103 - - uid: 126 + pos: 3.5,-1.5 + parent: 1 +- proto: RemoteSignaller + entities: + - uid: 73 components: - type: Transform - pos: -0.5,4.5 - parent: 103 - - uid: 129 + pos: 0.17899022,4.1960754 + parent: 1 + - uid: 90 components: - type: Transform - pos: -2.5,-0.5 - parent: 103 - - uid: 130 + pos: 3.160936,4.206492 + parent: 1 +- proto: SheetPlasma + entities: + - uid: 146 components: - type: Transform - pos: 0.5,4.5 - parent: 103 -- proto: ShuttersRadiationOpen + pos: 6.544826,1.53125 + parent: 1 +- proto: ShuttersNormalOpen entities: - - uid: 137 + - uid: 3 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 103 + pos: 0.5,-3.5 + parent: 1 - type: DeviceLinkSink links: - - 143 - - uid: 138 + - 157 + - uid: 123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 103 + pos: 6.5,-3.5 + parent: 1 - type: DeviceLinkSink links: - - 143 - - uid: 139 + - 37 + - uid: 223 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 103 + pos: 4.5,3.5 + parent: 1 - type: DeviceLinkSink links: - - 143 - - uid: 140 + - 26 +- proto: ShuttleGunPirateCannon + entities: + - uid: 61 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 103 + pos: -0.5,4.5 + parent: 1 - type: DeviceLinkSink links: - - 143 - - uid: 141 + - 240 + - uid: 222 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 103 + pos: 2.5,4.5 + parent: 1 - type: DeviceLinkSink links: - - 143 - - uid: 142 + - 241 +- proto: SignalButtonDirectional + entities: + - uid: 26 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,1.5 - parent: 103 - - type: DeviceLinkSink - links: - - 143 -- proto: SignalButton - entities: - - uid: 61 + pos: 5.5,4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 223: + - Pressed: Toggle + - uid: 37 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 103 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 - type: DeviceLinkSource linkedPorts: - 81: + 123: - Pressed: Toggle - - uid: 143 + - uid: 157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5008554,3.2410142 - parent: 103 + pos: 1.5,-2.5 + parent: 1 - type: DeviceLinkSource linkedPorts: - 141: - - Pressed: Toggle - 140: - - Pressed: Toggle - 139: - - Pressed: Toggle - 142: + 3: - Pressed: Toggle - 137: + - uid: 240 + components: + - type: MetaData + name: Cannon One + - type: Transform + rot: 3.141592653589793 rad + pos: 1.3038858,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 61: - Pressed: Toggle - 138: + - Pressed: Trigger + - uid: 241 + components: + - type: MetaData + name: Cannon Two + - type: Transform + rot: 3.141592653589793 rad + pos: 1.7622192,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 222: - Pressed: Toggle -- proto: SignMail + - Pressed: Trigger +- proto: SignSpace entities: - - uid: 136 + - uid: 77 components: - type: Transform - pos: -2.5,-1.5 - parent: 103 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 - proto: SpawnPointPirate entities: - - uid: 145 + - uid: 93 components: - type: Transform - pos: 0.5,1.5 - parent: 103 + pos: 4.5,0.5 + parent: 1 - proto: SpawnPointPirateCaptain entities: - - uid: 144 + - uid: 126 components: - type: Transform - pos: 0.5,1.5 - parent: 103 + pos: 2.5,0.5 + parent: 1 - proto: SpawnPointPirateFirstMate entities: - - uid: 60 + - uid: 181 components: - type: Transform - pos: 0.5,1.5 - parent: 103 + pos: 1.5,0.5 + parent: 1 - proto: SubstationWallBasic entities: - - uid: 72 + - uid: 141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 103 -- proto: TableCarpet + pos: 7.5,1.5 + parent: 1 +- proto: SuitStorageWallmount entities: - - uid: 32 + - uid: 221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 103 -- proto: TableWoodReinforced + pos: 4.5,2.5 + parent: 1 + - type: Physics + canCollide: False +- proto: Table entities: - - uid: 11 + - uid: 13 components: - type: Transform - pos: -0.5,2.5 - parent: 103 - - uid: 21 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 16 components: - type: Transform - pos: -0.5,3.5 - parent: 103 - - uid: 54 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 34 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 103 - - uid: 58 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 142 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 103 + pos: 2.5,1.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 - proto: Thruster entities: - - uid: 65 + - uid: 45 components: - type: Transform - pos: -2.5,4.5 - parent: 103 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 - type: Thruster originalPowerLoad: 1500 - - uid: 76 + - uid: 122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 103 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 - type: Thruster originalPowerLoad: 1500 - - uid: 97 + - uid: 161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 103 + pos: 7.5,4.5 + parent: 1 - type: Thruster originalPowerLoad: 1500 - - uid: 116 + - uid: 162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 103 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 - type: Thruster originalPowerLoad: 1500 -- proto: WallMining - entities: - - uid: 12 + - uid: 180 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 103 - - uid: 16 + pos: -2.5,-2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 202 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 103 - - uid: 20 + pos: 7.5,3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 +- proto: ToolboxMechanicalFilled + entities: + - uid: 154 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 103 - - uid: 25 + pos: 2.486192,-0.33646524 + parent: 1 +- proto: WallReinforced + entities: + - uid: 6 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 103 - - uid: 28 + pos: 4.5,-2.5 + parent: 1 + - uid: 18 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 103 - - uid: 30 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - uid: 41 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 103 - - uid: 38 + pos: 1.5,-3.5 + parent: 1 + - uid: 47 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 103 - - uid: 42 + pos: 6.5,3.5 + parent: 1 + - uid: 51 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 103 - - uid: 44 + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 62 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 103 - - uid: 59 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 + - uid: 71 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 103 - - uid: 66 + pos: 7.5,-1.5 + parent: 1 + - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 103 - - uid: 71 + pos: 5.5,4.5 + parent: 1 + - uid: 84 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 103 - - uid: 91 + pos: -1.5,-3.5 + parent: 1 + - uid: 88 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 103 - - uid: 106 + pos: 1.5,-2.5 + parent: 1 + - uid: 102 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 103 -- proto: WallMiningDiagonal - entities: - - uid: 29 + pos: 7.5,-0.5 + parent: 1 + - uid: 107 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 103 - - uid: 46 + pos: 4.5,-1.5 + parent: 1 + - uid: 108 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 103 - - uid: 64 + pos: 4.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 103 - - uid: 70 + pos: 7.5,1.5 + parent: 1 + - uid: 130 components: - type: Transform - pos: -2.5,3.5 - parent: 103 - - uid: 85 + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 158 components: - type: Transform - pos: -1.5,4.5 - parent: 103 - - uid: 90 + pos: -1.5,-2.5 + parent: 1 + - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 103 - - uid: 93 + pos: 7.5,2.5 + parent: 1 + - uid: 169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 103 + pos: 1.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 212 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 - proto: WarpPointShip entities: - - uid: 132 + - uid: 149 components: - type: Transform - pos: -0.5,1.5 - parent: 103 + pos: 3.5,0.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 105 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml b/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml index 25dce9ea7d8..b06f786e0ec 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml @@ -38,7 +38,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACegAAAAAADgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAADegAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAACegAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAACXAAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAADegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACegAAAAAADgAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAADegAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAXAAAAAACegAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAACXAAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAXAAAAAAAXAAAAAADegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAXAAAAAADXAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -438,102 +438,82 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 30583 + 0,-1: + 0: 28927 0,1: - 0: 65535 + 0: 65522 + -1,1: + 0: 44019 0,2: - 0: 15 1: 240 + -1,2: + 1: 128 + 0: 9075 1,0: - 0: 65535 + 0: 63351 1,1: - 0: 65535 + 0: 10994 + 1,-1: + 0: 29950 1,2: - 0: 65535 + 0: 9838 1,3: - 0: 1 1: 4982 2,0: - 0: 65535 + 0: 62719 2,1: - 0: 15359 - 2,2: - 0: 17 + 0: 284 + 2,-1: + 0: 61491 + 1: 128 3,0: - 0: 30481 + 0: 12288 3,1: - 0: 14199 + 0: 51 0,-3: - 0: 65280 + 0: 63232 0,-2: - 0: 65535 - 0,-1: - 0: 65535 + 0: 65399 + -1,-3: + 0: 32768 + 1: 29696 + -1,-2: + 0: 48896 + 1: 7 + -1,-1: + 0: 29179 1,-3: 1: 28928 1,-2: 1: 15 - 0: 65520 - 1,-1: - 0: 65535 + 0: 60928 2,-2: - 0: 29456 - 2,-1: - 0: 65399 - 1: 128 - 3,-1: - 0: 4352 + 2: 16 + 0: 4096 -3,-1: - 0: 61000 + 0: 49152 1: 128 - -3,-2: - 0: 32768 + -3,0: + 0: 2252 + -2,-1: + 0: 61678 + -2,0: + 0: 3839 -2,-2: - 0: 65508 + 0: 51200 + 2: 64 1: 8 - -2,-1: - 0: 65535 - -2,-3: - 0: 32768 - -1,-3: - 1: 29696 - 0: 35328 - -1,-2: - 1: 7 - 0: 65528 - -1,-1: - 0: 65535 - -3,0: - 0: 52462 + -1,0: + 0: 10103 -3,1: - 0: 132 1: 8 - -2,0: - 0: 65535 -2,1: - 0: 65535 + 0: 3278 -2,2: - 0: 65534 - -2,3: - 0: 187 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 30591 - 1: 128 + 0: 8 -1,3: 1: 18035 - 0: 8452 - -4,2: - 0: 52416 - -4,3: - 0: 204 - -3,2: - 0: 65520 - -3,3: - 0: 255 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -565,6 +545,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: BecomesStation @@ -580,12 +575,7 @@ entities: devices: - 382 - 401 - - 870 - - 638 - - 751 - 927 - - type: AtmosDevice - joinedGrid: 1 - uid: 586 components: - type: Transform @@ -593,31 +583,22 @@ entities: parent: 1 - type: DeviceList devices: - - 737 - - 875 - - 873 - 74 - 754 - 762 - 486 - 382 - - type: AtmosDevice - joinedGrid: 1 - uid: 672 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 796 components: - type: Transform pos: -3.5,11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 797 components: - type: Transform @@ -626,12 +607,7 @@ entities: - type: DeviceList devices: - 582 - - 924 - - 926 - - 925 - 5 - - type: AtmosDevice - joinedGrid: 1 - uid: 801 components: - type: Transform @@ -640,12 +616,7 @@ entities: - type: DeviceList devices: - 591 - - 788 - - 792 - - 865 - 509 - - type: AtmosDevice - joinedGrid: 1 - uid: 804 components: - type: Transform @@ -654,14 +625,10 @@ entities: parent: 1 - type: DeviceList devices: - - 27 - - 768 - 590 - 580 - 243 - 26 - - type: AtmosDevice - joinedGrid: 1 - uid: 805 components: - type: Transform @@ -669,12 +636,7 @@ entities: parent: 1 - type: DeviceList devices: - - 631 - - 790 - 23 - - 645 - - type: AtmosDevice - joinedGrid: 1 - uid: 806 components: - type: Transform @@ -682,13 +644,8 @@ entities: parent: 1 - type: DeviceList devices: - - 640 - - 34 - 278 - 23 - - 105 - - type: AtmosDevice - joinedGrid: 1 - uid: 863 components: - type: Transform @@ -697,16 +654,11 @@ entities: parent: 1 - type: DeviceList devices: - - 893 - - 867 - 81 - 89 - 102 - 509 - 401 - - 789 - - type: AtmosDevice - joinedGrid: 1 - uid: 871 components: - type: Transform @@ -715,30 +667,15 @@ entities: parent: 1 - type: DeviceList devices: - - 753 - - 21 - 580 - 582 - 278 - 591 - - 639 - 774 - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - - uid: 223 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 - parent: 1 - uid: 326 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,7.5 @@ -747,8 +684,6 @@ entities: entities: - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,7.5 @@ -790,15 +725,11 @@ entities: entities: - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,4.5 parent: 1 - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,5.5 @@ -807,8 +738,6 @@ entities: entities: - uid: 103 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,11.5 @@ -819,8 +748,6 @@ entities: - 154 - uid: 127 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,11.5 @@ -831,8 +758,6 @@ entities: - 154 - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,-8.5 @@ -842,8 +767,6 @@ entities: - 474 - uid: 143 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,-8.5 @@ -851,6 +774,11 @@ entities: - type: DeviceLinkSink links: - 474 + - uid: 817 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 - proto: AirlockExternalGlass entities: - uid: 144 @@ -992,75 +920,11 @@ entities: - type: DeviceNetwork deviceLists: - 804 - - uid: 34 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,3.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 806 - uid: 107 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 - - uid: 753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 871 - - uid: 788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 1 - - uid: 790 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 1 - - uid: 875 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 586 - - uid: 893 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 863 - - uid: 926 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,9.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 797 - proto: AmeController entities: - uid: 822 @@ -1076,16 +940,34 @@ entities: showEnts: False occludes: True ent: 824 + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 55 - proto: AmeJar entities: + - uid: 55 + components: + - type: Transform + parent: 822 + - type: Physics + canCollide: False - uid: 824 components: - - type: MetaData - flags: InContainer - type: Transform parent: 822 - type: Physics canCollide: False + - uid: 859 + components: + - type: Transform + pos: 0.31644487,3.6919525 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 0.6706114,3.6919525 + parent: 1 - proto: AmeShielding entities: - uid: 28 @@ -1180,6 +1062,12 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-0.5 parent: 1 + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 - uid: 254 components: - type: Transform @@ -1543,14 +1431,6 @@ entities: parent: 1 - type: Physics bodyType: Static -- proto: BoozeDispenser - entities: - - uid: 173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,7.5 - parent: 1 - proto: BorgCharger entities: - uid: 719 @@ -2733,13 +2613,6 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 1 -- proto: CrateEngineeringAMEJar - entities: - - uid: 296 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - proto: CyborgEndoskeleton entities: - uid: 282 @@ -2938,16 +2811,12 @@ entities: entities: - uid: 697 components: - - type: MetaData - flags: InContainer - type: Transform parent: 696 - type: Physics canCollide: False - uid: 699 components: - - type: MetaData - flags: InContainer - type: Transform parent: 698 - type: Physics @@ -3009,6 +2878,11 @@ entities: parent: 1 - proto: Firelock entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 - uid: 5 components: - type: Transform @@ -3142,12 +3016,6 @@ entities: - type: DeviceNetwork deviceLists: - 801 - - uid: 691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,9.5 - parent: 1 - uid: 692 components: - type: Transform @@ -3202,153 +3070,142 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: GasMixer +- proto: GasMixerOn entities: - - uid: 248 + - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 - - type: AtmosDevice - joinedGrid: 1 + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasOutletInjector +- proto: GasPassiveVent entities: - - uid: 725 + - uid: 722 components: - type: Transform - pos: 5.5,12.5 + pos: -2.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPassiveVent +- proto: GasPipeBend entities: - - uid: 722 + - uid: 829 components: - type: Transform - pos: -2.5,12.5 + rot: 1.5707963267948966 rad + pos: 4.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 839 + - uid: 867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeBend - entities: - - uid: 3 + - uid: 873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 612 +- proto: GasPipeFourway + entities: + - uid: 34 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 + pos: -3.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 664 + - uid: 738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,0.5 + pos: -2.5,9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 701 + - uid: 768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 + pos: 6.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 726 + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 24 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,10.5 + pos: -2.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 735 + - uid: 25 components: - type: Transform - rot: 1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 837 + - uid: 68 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-8.5 + rot: 1.5707963267948966 rad + pos: 1.5,9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 842 + - uid: 99 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeFourway - entities: - - uid: 670 + - uid: 110 components: - type: Transform - pos: 1.5,5.5 + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 315 + - uid: 119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,5.5 + pos: 2.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 613 + color: '#990000FF' + - uid: 121 components: - type: Transform - pos: 5.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 614 + color: '#990000FF' + - uid: 173 components: - type: Transform - pos: 5.5,6.5 + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 616 + color: '#990000FF' + - uid: 237 components: - type: Transform rot: 3.141592653589793 rad @@ -3356,800 +3213,1065 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 618 + - uid: 248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 + rot: 3.141592653589793 rad + pos: 5.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 620 + - uid: 277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,3.5 + rot: 3.141592653589793 rad + pos: 5.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 621 + - uid: 315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: 3.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 622 + - uid: 371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 624 + - uid: 372 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,2.5 + pos: 6.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 647 + color: '#990000FF' + - uid: 377 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,2.5 + pos: 6.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 648 + - uid: 511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,0.5 + pos: -5.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 654 + color: '#0055CCFF' + - uid: 520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,0.5 + pos: -5.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 655 + - uid: 571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,0.5 + pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 663 + - uid: 595 components: - type: Transform - pos: 11.5,1.5 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 668 + color: '#0055CCFF' + - uid: 613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,5.5 + pos: 5.5,7.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 674 + - uid: 614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,5.5 + pos: 5.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 675 + - uid: 616 components: - type: Transform - pos: 6.5,-1.5 + pos: -2.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 677 + - uid: 617 components: - type: Transform - pos: -2.5,4.5 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 680 + - uid: 618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,5.5 + rot: 3.141592653589793 rad + pos: -3.5,4.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 685 + - uid: 621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 + pos: -2.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 690 + color: '#990000FF' + - uid: 623 components: - type: Transform - pos: -2.5,3.5 + rot: 1.5707963267948966 rad + pos: 0.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 705 + color: '#990000FF' + - uid: 631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,7.5 + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 707 + - uid: 638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,9.5 + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 708 + color: '#0055CCFF' + - uid: 639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 712 + - uid: 645 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 717 + color: '#0055CCFF' + - uid: 647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 + rot: 1.5707963267948966 rad + pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 727 + - uid: 648 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,11.5 + rot: 1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 731 + - uid: 655 components: - type: Transform - pos: -3.5,6.5 + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 732 + color: '#990000FF' + - uid: 663 components: - type: Transform - pos: -3.5,7.5 + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 738 + - uid: 665 components: - type: Transform - pos: -3.5,1.5 + rot: -1.5707963267948966 rad + pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 740 + - uid: 668 components: - type: Transform - pos: -3.5,-0.5 + rot: 3.141592653589793 rad + pos: -3.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 755 + - uid: 670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 + rot: 3.141592653589793 rad + pos: -3.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 760 + - uid: 677 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 765 + color: '#990000FF' + - uid: 680 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-2.5 + pos: 3.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 766 + - uid: 683 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + pos: 2.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 769 + - uid: 685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 770 + - uid: 690 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,6.5 + pos: 1.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 771 + color: '#0055CCFF' + - uid: 702 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,4.5 + pos: 0.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 776 + - uid: 704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + rot: 3.141592653589793 rad + pos: 0.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 777 + - uid: 705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + rot: 3.141592653589793 rad + pos: -2.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 781 + color: '#990000FF' + - uid: 706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 2.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 794 + color: '#990000FF' + - uid: 707 components: - type: Transform - pos: 6.5,-0.5 + pos: 2.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 798 + - uid: 708 components: - type: Transform - pos: 6.5,-1.5 + pos: 2.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 799 + - uid: 712 components: - type: Transform - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: -2.5,11.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 802 + - uid: 717 components: - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 809 + color: '#0055CCFF' + - uid: 721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-4.5 + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 811 + color: '#0055CCFF' + - uid: 725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 812 + color: '#0055CCFF' + - uid: 726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 + rot: 3.141592653589793 rad + pos: 6.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 813 + - uid: 728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 + pos: -2.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 818 + - uid: 731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-5.5 + pos: -3.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 819 + color: '#0055CCFF' + - uid: 732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-6.5 + pos: -3.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 823 + color: '#0055CCFF' + - uid: 737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-7.5 + pos: -2.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 825 + - uid: 740 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-8.5 + pos: 7.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 835 + - uid: 741 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-8.5 + pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 845 + - uid: 751 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-5.5 + pos: 7.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 848 + color: '#0055CCFF' + - uid: 753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 851 + color: '#0055CCFF' + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-4.5 + pos: 0.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 852 + color: '#0055CCFF' + - uid: 760 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-3.5 + pos: 2.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 854 + color: '#0055CCFF' + - uid: 766 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-2.5 + pos: 5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 770 + components: + - type: Transform + pos: -2.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 855 + - uid: 776 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-1.5 + pos: -3.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 872 + color: '#0055CCFF' + - uid: 777 components: - type: Transform - pos: -2.5,-0.5 + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 892 + - uid: 781 components: - type: Transform - pos: -3.5,-1.5 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeTJunction - entities: - - uid: 24 + - uid: 786 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: 4.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 615 + - uid: 787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 + rot: 3.141592653589793 rad + pos: 6.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 619 + color: '#990000FF' + - uid: 792 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,3.5 + pos: -3.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 623 + - uid: 793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,3.5 + rot: 3.141592653589793 rad + pos: 0.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 665 + - uid: 794 components: - type: Transform - pos: 9.5,0.5 + pos: 2.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 683 + - uid: 798 components: - type: Transform - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: 2.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 693 + color: '#990000FF' + - uid: 819 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,5.5 + pos: 11.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 702 + - uid: 825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,6.5 + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 706 + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 862 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 865 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 892 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,8.5 + pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 741 + - uid: 893 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: 8.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 775 + color: '#990000FF' + - uid: 924 components: - type: Transform - pos: 1.5,-2.5 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 793 + color: '#990000FF' + - uid: 933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,0.5 + pos: 10.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 815 + - uid: 934 components: - type: Transform - pos: 1.5,-4.5 + pos: 10.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 816 + - uid: 935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 + rot: 1.5707963267948966 rad + pos: 0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 841 + - uid: 937 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-5.5 + pos: 1.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPort - entities: - - uid: 530 + - uid: 940 components: - type: Transform - pos: 6.5,9.5 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 548 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: -4.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 635 + - uid: 942 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,8.5 + pos: -5.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasVentPump - entities: - - uid: 27 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 943 components: - type: Transform - pos: 1.5,6.5 + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 804 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 99 + color: '#990000FF' + - uid: 944 components: - type: Transform - pos: -3.5,8.5 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 105 + color: '#990000FF' + - uid: 945 components: - type: Transform - pos: 10.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 806 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 631 + - uid: 946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 805 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 639 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 33 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 + pos: -3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 70 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 131 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 701 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 530 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePumpOnMax + entities: + - uid: 622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 7 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 105 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 172 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 871 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 728 + - uid: 674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 + rot: -1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 737 + - uid: 765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 + pos: -3.5,8.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 586 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 751 + - uid: 775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-3.5 + pos: 2.5,6.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 772 + - uid: 788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 789 + - uid: 812 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-3.5 + pos: 11.5,1.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 863 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 792 + - uid: 823 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 852 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 9.5,-3.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 801 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 924 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,8.5 + pos: -8.5,1.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 797 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 21 + - uid: 451 components: - type: Transform - pos: 6.5,1.5 + rot: 1.5707963267948966 rad + pos: 5.5,0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 871 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 640 + - uid: 619 components: - type: Transform - pos: 11.5,3.5 + rot: 1.5707963267948966 rad + pos: -3.5,9.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 806 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 645 + - uid: 624 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-0.5 + pos: 2.5,-8.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 805 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 721 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,8.5 + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 767 @@ -4158,85 +4280,78 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 768 + - uid: 772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,6.5 + pos: 9.5,-2.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 804 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 865 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-5.5 + pos: 3.5,-3.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 801 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 867 + - uid: 854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-5.5 + pos: 10.5,4.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 863 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 + rot: -1.5707963267948966 rad + pos: 7.5,5.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 873 + - uid: 872 components: - type: Transform - pos: -2.5,0.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 586 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 925 + - uid: 926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 936 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,10.5 + pos: 1.5,3.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 797 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 939 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GravityGeneratorMini entities: - uid: 274 @@ -4402,6 +4517,23 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,8.5 parent: 1 + - uid: 841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 - uid: 849 components: - type: Transform @@ -4494,9 +4626,9 @@ entities: - 0 - 0 - 0 -- proto: LockerChiefEngineerFilledHardsuit +- proto: LockerEngineerFilled entities: - - uid: 172 + - uid: 799 components: - type: Transform pos: -5.5,4.5 @@ -4513,71 +4645,6 @@ entities: - type: Transform pos: -3.5,4.5 parent: 1 -- proto: LockerWallMedical - entities: - - uid: 786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 - parent: 1 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 153 - - uid: 890 - components: - - type: Transform - pos: 6.5,4.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 237 - proto: MaterialReclaimer entities: - uid: 779 @@ -4585,26 +4652,6 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 1 -- proto: MedkitFilled - entities: - - uid: 153 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 786 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 237 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 890 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: MopBucketFull entities: - uid: 481 @@ -4646,6 +4693,13 @@ entities: parent: 1 - type: NetworkConfigurator linkModeActive: False +- proto: NFPosterLegitMagnusWatching + entities: + - uid: 212 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 - proto: NitrogenCanister entities: - uid: 316 @@ -4656,8 +4710,6 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: OreBox entities: - uid: 803 @@ -4668,7 +4720,7 @@ entities: parent: 1 - proto: OreProcessor entities: - - uid: 14 + - uid: 811 components: - type: Transform pos: -1.5,-5.5 @@ -4683,8 +4735,6 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: PaintingAmogusTriptych entities: - uid: 627 @@ -4744,8 +4794,6 @@ entities: entities: - uid: 508 components: - - type: MetaData - flags: InContainer - type: Transform parent: 481 - type: Physics @@ -4789,10 +4837,9 @@ entities: parent: 1 - proto: PosterContrabandKosmicheskayaStantsiya entities: - - uid: 532 + - uid: 285 components: - type: Transform - rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - proto: PosterContrabandMissingGloves @@ -4810,14 +4857,6 @@ entities: - type: Transform pos: -0.5,2.5 parent: 1 -- proto: PosterLegitDejaVu - entities: - - uid: 477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,4.5 - parent: 1 - proto: PosterLegitDoNotQuestion entities: - uid: 207 @@ -4860,10 +4899,9 @@ entities: parent: 1 - proto: PosterLegitSMPiping entities: - - uid: 523 + - uid: 379 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 1 - proto: PosterLegitStateLaws @@ -4926,56 +4964,42 @@ entities: entities: - uid: 168 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,-4.5 parent: 1 - uid: 201 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 1 - uid: 307 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 1 - uid: 327 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 1 - uid: 506 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 1 - uid: 599 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 1 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,3.5 @@ -5042,6 +5066,13 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 1 +- proto: Rack + entities: + - uid: 63 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 - proto: RadioHandheld entities: - uid: 80 @@ -5103,54 +5134,6 @@ entities: - type: Transform pos: -3.5,8.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 25 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 - - uid: 511 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1 - - uid: 520 - components: - - type: Transform - pos: -5.5,1.5 - parent: 1 - - uid: 565 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1 - - uid: 571 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1 - - uid: 595 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1 - - uid: 704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - - uid: 787 - components: - - type: Transform - pos: -4.5,-0.5 - parent: 1 - - uid: 829 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1 - proto: ReinforcedWindow entities: - uid: 109 @@ -5159,12 +5142,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,1.5 parent: 1 - - uid: 110 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 1 - uid: 111 components: - type: Transform @@ -5183,53 +5160,57 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - uid: 119 + - uid: 120 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-1.5 + pos: -0.5,0.5 parent: 1 - - uid: 120 + - uid: 122 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: 3.5,-0.5 parent: 1 - - uid: 121 + - uid: 126 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-1.5 + pos: 11.5,2.5 parent: 1 - - uid: 122 + - uid: 132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 parent: 1 - - uid: 125 + - uid: 802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,0.5 + pos: 4.5,-4.5 parent: 1 - - uid: 126 + - uid: 835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 parent: 1 - - uid: 131 + - uid: 846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-4.5 + pos: 3.5,0.5 parent: 1 - - uid: 132 + - uid: 848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 2.5,-1.5 + parent: 1 + - uid: 890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 parent: 1 - proto: RemoteSignaller entities: @@ -5771,10 +5752,11 @@ entities: parent: 1 - proto: SinkWide entities: - - uid: 368 + - uid: 36 components: - type: Transform - pos: -3.5,8.5 + rot: 1.5707963267948966 rad + pos: -3.5,9.5 parent: 1 - proto: SMESBasic entities: @@ -5783,33 +5765,12 @@ entities: - type: Transform pos: 1.5,2.5 parent: 1 -- proto: SpawnPointBorg - entities: - - uid: 484 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 662 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 372 - components: - - type: Transform - pos: -4.5,5.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 277 + - uid: 816 components: - type: Transform - pos: -5.5,5.5 + pos: 2.5,5.5 parent: 1 - proto: SprayBottleSpaceCleaner entities: @@ -5825,6 +5786,13 @@ entities: - type: Transform pos: 0.5,2.5 parent: 1 +- proto: SuitStorageEngi + entities: + - uid: 693 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 - proto: SuitStorageSalv entities: - uid: 679 @@ -5875,16 +5843,9 @@ entities: parent: 1 - proto: TableCounterWood entities: - - uid: 371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,6.5 - parent: 1 - - uid: 377 + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 1 - proto: TableReinforced @@ -6054,8 +6015,6 @@ entities: entities: - uid: 241 components: - - type: MetaData - flags: InContainer - type: Transform parent: 238 - type: Physics @@ -6202,933 +6161,652 @@ entities: entities: - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,5.5 parent: 1 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 7 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,3.5 - parent: 1 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,-1.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,-3.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 1 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,11.5 parent: 1 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,6.5 parent: 1 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 33 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 0.5,4.5 - parent: 1 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,7.5 parent: 1 - - uid: 36 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,8.5 - parent: 1 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - uid: 39 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,5.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 1 - uid: 42 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-9.5 parent: 1 - uid: 47 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 14.5,4.5 parent: 1 - uid: 49 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 13.5,2.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,2.5 parent: 1 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 14.5,2.5 parent: 1 - - uid: 55 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-1.5 - parent: 1 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 1 - - uid: 59 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 1 - - uid: 60 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 1 - - uid: 63 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,-1.5 - parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,-1.5 parent: 1 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,-4.5 parent: 1 - - uid: 68 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-1.5 - parent: 1 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-6.5 parent: 1 - - uid: 70 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -6.5,3.5 - parent: 1 - - uid: 73 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,7.5 parent: 1 - uid: 76 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 1 - - uid: 82 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,4.5 - parent: 1 - uid: 83 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,9.5 parent: 1 - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,-2.5 parent: 1 - uid: 93 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 1 - uid: 94 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 1 - uid: 98 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,5.5 parent: 1 - uid: 104 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,9.5 parent: 1 - uid: 113 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,11.5 parent: 1 - uid: 114 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,12.5 parent: 1 - uid: 116 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-1.5 parent: 1 - - uid: 135 + - uid: 171 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,4.5 + pos: -5.5,9.5 parent: 1 - - uid: 137 + - uid: 174 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: 7.5,11.5 parent: 1 - - uid: 141 + - uid: 190 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 1 - - uid: 142 + - uid: 197 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,6.5 + pos: -6.5,6.5 parent: 1 - - uid: 150 + - uid: 198 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -5.5,3.5 + rot: 3.141592653589793 rad + pos: -8.5,-1.5 parent: 1 - - uid: 151 + - uid: 220 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-3.5 + pos: -9.5,-1.5 parent: 1 - - uid: 167 + - uid: 222 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,-0.5 + pos: 14.5,3.5 parent: 1 - - uid: 171 + - uid: 228 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -5.5,9.5 + pos: -7.5,4.5 parent: 1 - - uid: 174 + - uid: 230 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,11.5 + pos: 3.5,-9.5 parent: 1 - - uid: 182 + - uid: 236 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,6.5 + pos: -7.5,3.5 parent: 1 - - uid: 183 + - uid: 244 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,-1.5 + pos: 10.5,-1.5 parent: 1 - - uid: 188 + - uid: 255 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 + rot: 3.141592653589793 rad + pos: 9.5,7.5 parent: 1 - - uid: 190 + - uid: 257 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 + rot: 3.141592653589793 rad + pos: 7.5,-6.5 parent: 1 - - uid: 192 + - uid: 288 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 parent: 1 - - uid: 195 + - uid: 289 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: 9.5,-5.5 parent: 1 - - uid: 197 + - uid: 290 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,6.5 + rot: 3.141592653589793 rad + pos: 9.5,-4.5 parent: 1 - - uid: 198 + - uid: 300 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-1.5 + pos: -1.5,12.5 parent: 1 - - uid: 202 + - uid: 310 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,6.5 + pos: -1.5,11.5 parent: 1 - - uid: 203 + - uid: 317 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 + pos: -3.5,11.5 parent: 1 - - uid: 212 + - uid: 318 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + pos: -4.5,11.5 parent: 1 - - uid: 220 + - uid: 323 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-1.5 + pos: 5.5,-6.5 parent: 1 - - uid: 222 + - uid: 328 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 14.5,3.5 + rot: 3.141592653589793 rad + pos: -2.5,-6.5 parent: 1 - - uid: 228 + - uid: 331 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,4.5 + pos: -7.5,5.5 parent: 1 - - uid: 230 + - uid: 343 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-9.5 + pos: 3.5,-6.5 parent: 1 - - uid: 236 + - uid: 344 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,3.5 + pos: -0.5,-6.5 parent: 1 - - uid: 244 + - uid: 358 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 10.5,-1.5 + rot: 3.141592653589793 rad + pos: 10.5,-4.5 parent: 1 - - uid: 245 + - uid: 359 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,4.5 + rot: 3.141592653589793 rad + pos: 10.5,-3.5 parent: 1 - - uid: 250 + - uid: 361 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,-1.5 + pos: -6.5,7.5 parent: 1 - - uid: 255 + - uid: 364 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 9.5,7.5 + pos: -4.5,-6.5 parent: 1 - - uid: 257 + - uid: 374 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-6.5 + pos: 4.5,8.5 parent: 1 - - uid: 258 + - uid: 376 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,2.5 + rot: 1.5707963267948966 rad + pos: -8.5,3.5 parent: 1 - - uid: 261 + - uid: 386 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,7.5 + pos: 6.5,-6.5 parent: 1 - - uid: 264 + - uid: 412 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 parent: 1 - - uid: 268 + - uid: 442 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,3.5 + rot: 3.141592653589793 rad + pos: 8.5,9.5 parent: 1 - - uid: 281 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - uid: 847 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 7.5,9.5 + parent: 1 +- proto: WallShuttleInterior + entities: + - uid: 82 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -1.5,4.5 parent: 1 - - uid: 285 + - uid: 151 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,2.5 + pos: 4.5,7.5 parent: 1 - - uid: 288 + - uid: 167 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-5.5 + pos: 7.5,-1.5 parent: 1 - - uid: 289 + - uid: 182 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 + pos: -6.5,-1.5 parent: 1 - - uid: 290 + - uid: 183 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-4.5 + pos: 9.5,2.5 parent: 1 - - uid: 300 + - uid: 188 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,12.5 + pos: -1.5,-3.5 parent: 1 - - uid: 305 + - uid: 192 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 + pos: 4.5,-3.5 parent: 1 - - uid: 310 + - uid: 195 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,11.5 + pos: -3.5,3.5 parent: 1 - - uid: 317 + - uid: 202 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -3.5,11.5 + pos: -1.5,-1.5 parent: 1 - - uid: 318 + - uid: 203 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,11.5 + pos: -0.5,4.5 parent: 1 - - uid: 319 + - uid: 223 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,7.5 + pos: 8.5,4.5 parent: 1 - - uid: 323 + - uid: 245 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 + pos: 7.5,4.5 parent: 1 - - uid: 328 + - uid: 250 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 + pos: 7.5,7.5 parent: 1 - - uid: 331 + - uid: 258 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -7.5,5.5 + pos: -4.5,3.5 parent: 1 - - uid: 335 + - uid: 261 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 + pos: -5.5,-1.5 parent: 1 - - uid: 343 + - uid: 264 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-6.5 + pos: 7.5,-0.5 parent: 1 - - uid: 344 + - uid: 268 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,-6.5 + pos: -4.5,7.5 parent: 1 - - uid: 358 + - uid: 281 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-4.5 + pos: 9.5,-1.5 parent: 1 - - uid: 359 + - uid: 305 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 + pos: 3.5,2.5 parent: 1 - - uid: 361 + - uid: 319 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,7.5 + pos: 4.5,-1.5 parent: 1 - - uid: 364 + - uid: 335 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-6.5 + pos: 4.5,6.5 parent: 1 - uid: 365 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + pos: -3.5,7.5 parent: 1 - uid: 366 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,7.5 + pos: 4.5,-5.5 parent: 1 - - uid: 370 + - uid: 368 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 + pos: 2.5,4.5 parent: 1 - - uid: 373 + - uid: 370 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,4.5 + pos: 8.5,-1.5 parent: 1 - - uid: 374 + - uid: 373 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 + pos: 7.5,2.5 parent: 1 - - uid: 376 + - uid: 411 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 + pos: -0.5,3.5 parent: 1 - - uid: 379 + - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,3.5 + pos: -4.5,-1.5 parent: 1 - - uid: 386 + - uid: 455 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -0.5,2.5 parent: 1 - - uid: 411 + - uid: 456 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 + pos: -6.5,3.5 parent: 1 - - uid: 412 + - uid: 477 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 + pos: -1.5,7.5 parent: 1 - - uid: 441 + - uid: 523 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,2.5 + pos: 3.5,3.5 parent: 1 - - uid: 442 + - uid: 532 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,9.5 + pos: 3.5,4.5 parent: 1 - - uid: 455 + - uid: 550 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-1.5 + pos: 6.5,4.5 parent: 1 - - uid: 456 + - uid: 612 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,-1.5 + pos: 8.5,2.5 parent: 1 - - uid: 468 + - uid: 632 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 + pos: 9.5,4.5 parent: 1 - - uid: 498 + - uid: 691 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-7.5 + pos: -5.5,3.5 parent: 1 - - uid: 500 + - uid: 748 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,-7.5 + pos: 6.5,7.5 parent: 1 - - uid: 550 + - uid: 749 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 + pos: 7.5,1.5 parent: 1 - - uid: 632 + - uid: 750 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,9.5 + pos: -1.5,-4.5 parent: 1 - - uid: 795 + - uid: 813 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 + pos: 3.5,-1.5 parent: 1 - - uid: 817 + - uid: 815 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,-1.5 + pos: -1.5,6.5 parent: 1 - - uid: 847 + - uid: 818 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,9.5 + pos: -0.5,-1.5 parent: 1 - - uid: 850 + - uid: 838 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-1.5 + pos: 5.5,-1.5 parent: 1 - proto: WarningAir entities: @@ -7146,6 +6824,13 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,5.5 parent: 1 +- proto: WaterCooler + entities: + - uid: 855 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 - proto: WeaponCapacitorRecharger entities: - uid: 383 @@ -7153,10 +6838,10 @@ entities: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 451 + - uid: 809 components: - type: Transform - pos: -0.5,6.5 + pos: -0.5,7.5 parent: 1 - proto: WeaponGrapplingGun entities: @@ -7188,6 +6873,11 @@ entities: parent: 1 - proto: Windoor entities: + - uid: 73 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 - uid: 340 components: - type: Transform @@ -7200,6 +6890,14 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 +- proto: WindowDirectional + entities: + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 1 - proto: Wrench entities: - uid: 266 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml b/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml index 66dcdfc5b18..486e4dd4672 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml @@ -1059,7 +1059,8 @@ entities: 0: 65024 1: 14 4,1: - 0: 61168 + 0: 16 + 5: 61152 -4,0: 0: 65471 -4,-1: @@ -1133,11 +1134,12 @@ entities: 4,0: 0: 61152 4,2: - 0: 14 + 5: 14 5,0: 0: 48056 5,1: - 0: 5513 + 0: 1161 + 5: 4352 1: 49152 5,-1: 0: 65263 @@ -1268,7 +1270,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 2500 - 0 - 0 - 0 @@ -1282,7 +1284,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 2500 - 0 - 0 - 0 @@ -1309,6 +1311,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -1432,12 +1449,12 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-1.5 parent: 1 -- proto: AirlockGlass +- proto: AirlockFreezer entities: - - uid: 1739 + - uid: 123 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 16.5,5.5 parent: 1 - proto: AirlockGlassShuttle @@ -1548,8 +1565,12 @@ entities: - uid: 12 components: - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,5.5 parent: 1 + - type: DeviceLinkSink + links: + - 1099 - proto: AirlockNfsdLocked entities: - uid: 13 @@ -1582,6 +1603,9 @@ entities: - type: Transform pos: 8.5,3.5 parent: 1 + - type: DeviceLinkSink + links: + - 1099 - uid: 19 components: - type: Transform @@ -1620,6 +1644,7 @@ entities: pos: -30.5,-1.5 parent: 1 - type: AmeController + injectionAmount: 4 injecting: True - type: ContainerContainer containers: @@ -1630,9 +1655,15 @@ entities: fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: null + ent: 124 - proto: AmeJar entities: + - uid: 124 + components: + - type: Transform + parent: 713 + - type: Physics + canCollide: False - uid: 135 components: - type: Transform @@ -1707,7 +1738,7 @@ entities: pos: -28.5,-3.5 parent: 1 - type: PointLight - radius: 1 + radius: 2 enabled: True - uid: 297 components: @@ -1715,7 +1746,7 @@ entities: pos: -28.5,-2.5 parent: 1 - type: PointLight - radius: 1 + radius: 2 enabled: True - uid: 298 components: @@ -1839,6 +1870,12 @@ entities: - type: Transform pos: 11.5,-3.5 parent: 1 + - uid: 735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 - proto: AtmosFixBlockerMarker entities: - uid: 1826 @@ -2446,30 +2483,102 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 1 -- proto: AtmosFixNitrogenMarker +- proto: AtmosFixFreezerMarker entities: - - uid: 747 + - uid: 938 components: - type: Transform - pos: -28.5,4.5 + pos: 17.5,7.5 parent: 1 - - uid: 748 + - uid: 1147 components: - type: Transform - pos: -28.5,5.5 + pos: 17.5,5.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 20.5,6.5 parent: 1 -- proto: AtmosFixOxygenMarker +- proto: AtmosFixShuttleNitrogenMarker entities: - - uid: 745 + - uid: 271 components: - type: Transform - pos: -26.5,4.5 + pos: -28.5,5.5 parent: 1 - - uid: 746 + - uid: 329 + components: + - type: Transform + pos: -28.5,4.5 + parent: 1 +- proto: AtmosFixShuttleOxygenMarker + entities: + - uid: 330 components: - type: Transform pos: -26.5,5.5 parent: 1 + - uid: 334 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 - proto: Autolathe entities: - uid: 805 @@ -2658,7 +2767,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1787 + - 689 - uid: 1782 components: - type: Transform @@ -2666,7 +2775,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1788 + - 601 - uid: 1783 components: - type: Transform @@ -2674,7 +2783,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1786 + - 581 - uid: 1784 components: - type: Transform @@ -2682,7 +2791,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1785 + - 527 - uid: 2367 components: - type: Transform @@ -2690,7 +2799,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1690 + - 497 - uid: 2368 components: - type: Transform @@ -2698,7 +2807,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 1137 + - 490 - uid: 2369 components: - type: Transform @@ -2706,7 +2815,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2375 + - 1010 - uid: 2370 components: - type: Transform @@ -2714,7 +2823,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2376 + - 697 - proto: BlastDoorOpen entities: - uid: 2371 @@ -2724,7 +2833,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - uid: 2372 components: - type: Transform @@ -2732,7 +2841,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - proto: BookChemicalCompendium entities: - uid: 1637 @@ -2792,13 +2901,6 @@ entities: - type: Transform pos: -0.29593712,-9.424562 parent: 1 -- proto: BoxTrashbag - entities: - - uid: 708 - components: - - type: Transform - pos: -21.499075,-9.480177 - parent: 1 - proto: BrigTimer entities: - uid: 709 @@ -2826,7 +2928,69 @@ entities: - uid: 628 components: - type: Transform - pos: 13.602248,7.592946 + pos: 13.972758,6.6439924 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 1013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 parent: 1 - proto: CableApcExtension entities: @@ -2835,6 +2999,31 @@ entities: - type: Transform pos: -13.5,2.5 parent: 1 + - uid: 453 + components: + - type: Transform + pos: -24.5,6.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -25.5,6.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: -27.5,6.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -28.5,6.5 + parent: 1 - uid: 1757 components: - type: Transform @@ -3350,21 +3539,6 @@ entities: - type: Transform pos: -24.5,5.5 parent: 1 - - uid: 1942 - components: - - type: Transform - pos: -23.5,5.5 - parent: 1 - - uid: 1943 - components: - - type: Transform - pos: -23.5,6.5 - parent: 1 - - uid: 1944 - components: - - type: Transform - pos: -23.5,7.5 - parent: 1 - uid: 1949 components: - type: Transform @@ -3540,21 +3714,6 @@ entities: - type: Transform pos: -18.5,-8.5 parent: 1 - - uid: 1984 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1 - - uid: 1985 - components: - - type: Transform - pos: -25.5,7.5 - parent: 1 - - uid: 1986 - components: - - type: Transform - pos: -26.5,7.5 - parent: 1 - uid: 2045 components: - type: Transform @@ -5566,6 +5725,11 @@ entities: - type: Transform pos: -30.5,-0.5 parent: 1 + - uid: 318 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 - uid: 405 components: - type: Transform @@ -5593,6 +5757,11 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-10.5 parent: 1 + - uid: 720 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 - uid: 752 components: - type: Transform @@ -5701,11 +5870,6 @@ entities: - type: Transform pos: -26.5,0.5 parent: 1 - - uid: 778 - components: - - type: Transform - pos: -23.5,-0.5 - parent: 1 - uid: 779 components: - type: Transform @@ -5886,11 +6050,6 @@ entities: - type: Transform pos: -24.5,2.5 parent: 1 - - uid: 1744 - components: - - type: Transform - pos: -23.5,0.5 - parent: 1 - uid: 1745 components: - type: Transform @@ -5999,13 +6158,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-12.5 parent: 1 -- proto: chem_master - entities: - - uid: 594 - components: - - type: Transform - pos: -3.5,6.5 - parent: 1 - proto: ChemDispenser entities: - uid: 592 @@ -6020,20 +6172,19 @@ entities: - type: Transform pos: -0.5,7.5 parent: 1 -- proto: CigarGoldCase +- proto: ChemMaster entities: - - uid: 1234 + - uid: 594 components: - type: Transform - pos: 26.70925,5.241996 + pos: -3.5,6.5 parent: 1 -- proto: CleanerDispenser +- proto: CigarGoldCase entities: - - uid: 701 + - uid: 1234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-7.5 + pos: 26.70925,5.241996 parent: 1 - proto: CloningPod entities: @@ -6044,31 +6195,54 @@ entities: parent: 1 - proto: ClosetWall entities: - - uid: 821 + - uid: 530 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-3.5 parent: 1 -- proto: ClothingBeltJanitorFilled - entities: - - uid: 704 - components: - - type: Transform - pos: -21.467825,-9.451295 - parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 811 + - 812 - proto: ClothingBeltUtilityEngineering entities: - uid: 811 components: - type: Transform - pos: -24.554947,-2.3773594 - parent: 1 + parent: 530 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 812 components: - type: Transform - pos: -24.367447,-2.5336094 - parent: 1 + parent: 530 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingEyesGlassesChemical entities: - uid: 600 @@ -6076,13 +6250,6 @@ entities: - type: Transform pos: -0.48900163,7.9824142 parent: 1 -- proto: ClothingHandsGlovesJanitor - entities: - - uid: 705 - components: - - type: Transform - pos: -21.509493,-9.534628 - parent: 1 - proto: ComfyChair entities: - uid: 973 @@ -6269,6 +6436,16 @@ entities: ents: [] bank-ATM-cashSlot: !type:ContainerSlot {} - type: ItemSlots +- proto: ConveyorBelt + entities: + - uid: 1145 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 1 + - type: DeviceLinkSink + links: + - 532 - proto: CrateChemistrySupplies entities: - uid: 593 @@ -6306,15 +6483,15 @@ entities: parent: 1 - proto: CrateHydroponicsTools entities: - - uid: 541 + - uid: 931 components: - type: Transform - pos: 19.5,6.5 + pos: -19.5,3.5 parent: 1 - - uid: 931 + - uid: 1170 components: - type: Transform - pos: -19.5,3.5 + pos: 17.5,6.5 parent: 1 - proto: CrateMaterialSteel entities: @@ -6372,17 +6549,17 @@ entities: parent: 1 - proto: CrateServiceJanitorialSupplies entities: - - uid: 702 + - uid: 540 components: - type: Transform - pos: -21.5,-4.5 + pos: -21.5,-6.5 parent: 1 - proto: CrateServiceJanitorialSupplies2 entities: - - uid: 703 + - uid: 541 components: - type: Transform - pos: -21.5,-5.5 + pos: -21.5,-7.5 parent: 1 - proto: CrateTrashCart entities: @@ -6428,6 +6605,24 @@ entities: parent: 1 - proto: DisposalBend entities: + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 1 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 1 + - uid: 708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 1 - uid: 2403 components: - type: Transform @@ -6445,62 +6640,73 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,3.5 parent: 1 - - uid: 2467 +- proto: DisposalJunction + entities: + - uid: 2416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-0.5 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 parent: 1 - - uid: 2468 + - uid: 2417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,5.5 + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 parent: 1 - - uid: 2469 + - uid: 2466 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,5.5 + pos: -18.5,-0.5 parent: 1 - - uid: 2470 +- proto: DisposalPipe + entities: + - uid: 543 components: - type: Transform - pos: -23.5,7.5 + rot: 3.141592653589793 rad + pos: -20.5,-4.5 parent: 1 - - uid: 2471 + - uid: 560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,7.5 + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 parent: 1 - - uid: 2472 + - uid: 700 components: - type: Transform - pos: -27.5,8.5 + pos: -20.5,-1.5 parent: 1 -- proto: DisposalJunction - entities: - - uid: 2416 + - uid: 701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 + pos: -20.5,-2.5 parent: 1 - - uid: 2417 + - uid: 702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + pos: -20.5,-3.5 parent: 1 - - uid: 2466 + - uid: 703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 + rot: 3.141592653589793 rad + pos: -20.5,-5.5 + parent: 1 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-6.5 + parent: 1 + - uid: 705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-7.5 parent: 1 -- proto: DisposalPipe - entities: - uid: 2404 components: - type: Transform @@ -6843,96 +7049,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,-0.5 parent: 1 - - uid: 2473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 1 - - uid: 2474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 1 - - uid: 2475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 1 - - uid: 2476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-0.5 - parent: 1 - - uid: 2477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 1 - - uid: 2478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,0.5 - parent: 1 - - uid: 2479 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 1 - - uid: 2480 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 1 - - uid: 2481 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,3.5 - parent: 1 - - uid: 2482 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,4.5 - parent: 1 - - uid: 2483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,6.5 - parent: 1 - - uid: 2484 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 1 - - uid: 2485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,7.5 - parent: 1 - - uid: 2486 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,7.5 - parent: 1 - - uid: 2487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,8.5 - parent: 1 - proto: DisposalTrunk entities: - uid: 2399 @@ -7263,20 +7379,14 @@ entities: parent: 1 - type: Fixtures fixtures: {} - - uid: 543 + - uid: 1148 components: - type: Transform - pos: 19.5,7.5 + rot: -1.5707963267948966 rad + pos: 18.5,6.5 parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBoxDonkpocketDink - entities: - - uid: 938 - components: - - type: Transform - pos: -15.433867,8.66142 - parent: 1 - proto: GasAnalyzer entities: - uid: 826 @@ -7289,72 +7399,80 @@ entities: - type: Transform pos: -28.708189,2.4510486 parent: 1 -- proto: GasFilterFlipped +- proto: GasFilterNitrogenOnFlipped entities: - - uid: 123 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 271 + color: '#990000FF' +- proto: GasFilterOxygenOnFlipped + entities: + - uid: 737 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' -- proto: GasMixerFlipped + color: '#990000FF' +- proto: GasMixerOnFlipped entities: - - uid: 330 + - uid: 745 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,2.5 parent: 1 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 - type: AtmosPipeColor - color: '#0000AAFF' -- proto: GasPassiveGate - entities: - - uid: 1122 - components: - - type: Transform - pos: -24.5,3.5 - parent: 1 -- proto: GasPassiveVent + color: '#0055CCFF' +- proto: GasOutletInjector entities: - - uid: 1829 - components: - - type: Transform - pos: -24.5,7.5 - parent: 1 - - uid: 2497 + - uid: 747 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 2498 + color: '#990000FF' + - uid: 748 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,5.5 parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPassiveVent + entities: + - uid: 1829 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 2499 components: - type: Transform pos: -28.5,4.5 parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2500 components: - type: Transform pos: -26.5,4.5 parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeBend entities: - uid: 331 @@ -7363,6 +7481,8 @@ entities: rot: 3.141592653589793 rad pos: -28.5,2.5 parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 343 components: - type: Transform @@ -7370,7 +7490,7 @@ entities: pos: -24.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 344 components: - type: Transform @@ -7378,21 +7498,21 @@ entities: pos: -28.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 475 components: - type: Transform pos: -25.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 476 components: - type: Transform pos: -27.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 546 components: - type: Transform @@ -7400,7 +7520,23 @@ entities: pos: -28.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' + - uid: 1141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1316 components: - type: Transform @@ -7408,7 +7544,7 @@ entities: pos: 0.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1332 components: - type: Transform @@ -7416,7 +7552,7 @@ entities: pos: -1.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1351 components: - type: Transform @@ -7424,14 +7560,14 @@ entities: pos: 0.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1367 components: - type: Transform pos: 14.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1373 components: - type: Transform @@ -7439,7 +7575,7 @@ entities: pos: 14.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1436 components: - type: Transform @@ -7447,7 +7583,7 @@ entities: pos: 25.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 120 @@ -7456,56 +7592,56 @@ entities: pos: -19.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 122 components: - type: Transform pos: -23.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1248 components: - type: Transform pos: -1.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1251 components: - type: Transform pos: -8.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1338 components: - type: Transform pos: 7.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1421 components: - type: Transform pos: 21.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1451 components: - type: Transform pos: 21.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1457 components: - type: Transform pos: 22.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - proto: GasPipeStraight entities: - uid: 312 @@ -7515,7 +7651,7 @@ entities: pos: -25.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 313 components: - type: Transform @@ -7523,7 +7659,7 @@ entities: pos: -15.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 322 components: - type: Transform @@ -7531,15 +7667,7 @@ entities: pos: -17.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 332 components: - type: Transform @@ -7547,7 +7675,7 @@ entities: pos: -18.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 333 components: - type: Transform @@ -7555,15 +7683,7 @@ entities: pos: -20.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000AAFF' + color: '#990000FF' - uid: 336 components: - type: Transform @@ -7571,7 +7691,7 @@ entities: pos: -22.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 337 components: - type: Transform @@ -7579,13 +7699,15 @@ entities: pos: -23.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,2.5 parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 339 components: - type: Transform @@ -7593,7 +7715,7 @@ entities: pos: -16.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 341 components: - type: Transform @@ -7601,7 +7723,7 @@ entities: pos: -15.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 342 components: - type: Transform @@ -7609,7 +7731,7 @@ entities: pos: -26.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 347 components: - type: Transform @@ -7617,7 +7739,7 @@ entities: pos: -16.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 348 components: - type: Transform @@ -7625,7 +7747,7 @@ entities: pos: -17.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 351 components: - type: Transform @@ -7633,7 +7755,7 @@ entities: pos: -19.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 352 components: - type: Transform @@ -7641,7 +7763,7 @@ entities: pos: -26.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 353 components: - type: Transform @@ -7649,7 +7771,7 @@ entities: pos: -27.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 357 components: - type: Transform @@ -7657,7 +7779,7 @@ entities: pos: -22.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 358 components: - type: Transform @@ -7665,29 +7787,22 @@ entities: pos: -21.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,0.5 + pos: -23.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 464 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,3.5 parent: 1 - - uid: 467 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,2.5 - parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#0055CCFF' - uid: 468 components: - type: Transform @@ -7695,7 +7810,7 @@ entities: pos: -27.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 469 components: - type: Transform @@ -7703,21 +7818,15 @@ entities: pos: -27.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 471 components: - type: Transform rot: 3.141592653589793 rad pos: -26.5,3.5 parent: 1 - - uid: 472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,2.5 - parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#0055CCFF' - uid: 473 components: - type: Transform @@ -7725,7 +7834,7 @@ entities: pos: -25.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 474 components: - type: Transform @@ -7733,15 +7842,14 @@ entities: pos: -25.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,1.5 + pos: -20.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 489 components: - type: Transform @@ -7749,7 +7857,7 @@ entities: pos: -24.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 491 components: - type: Transform @@ -7757,7 +7865,7 @@ entities: pos: -24.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 492 components: - type: Transform @@ -7765,7 +7873,7 @@ entities: pos: -24.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 493 components: - type: Transform @@ -7773,15 +7881,14 @@ entities: pos: -24.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 718 components: - type: Transform - rot: 3.141592653589793 rad pos: -20.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 719 components: - type: Transform @@ -7789,15 +7896,7 @@ entities: pos: -18.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' - - uid: 720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 721 components: - type: Transform @@ -7805,7 +7904,7 @@ entities: pos: -20.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 722 components: - type: Transform @@ -7813,7 +7912,7 @@ entities: pos: -20.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 723 components: - type: Transform @@ -7821,7 +7920,7 @@ entities: pos: -19.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 724 components: - type: Transform @@ -7829,7 +7928,7 @@ entities: pos: -19.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 725 components: - type: Transform @@ -7837,7 +7936,7 @@ entities: pos: -19.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 726 components: - type: Transform @@ -7845,7 +7944,7 @@ entities: pos: -19.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 727 components: - type: Transform @@ -7853,7 +7952,7 @@ entities: pos: -19.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 728 components: - type: Transform @@ -7861,7 +7960,7 @@ entities: pos: -19.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 730 components: - type: Transform @@ -7869,15 +7968,14 @@ entities: pos: -23.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,0.5 + pos: -20.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 733 components: - type: Transform @@ -7885,7 +7983,7 @@ entities: pos: -23.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 734 components: - type: Transform @@ -7893,31 +7991,106 @@ entities: pos: -23.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' - - uid: 735 + color: '#0055CCFF' + - uid: 809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-0.5 + rot: -1.5707963267948966 rad + pos: -24.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 736 + color: '#990000FF' + - uid: 1124 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-1.5 + pos: -25.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 737 + color: '#990000FF' + - uid: 1125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-2.5 + pos: -25.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1127 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1137 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1140 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' + - uid: 1156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1167 components: - type: Transform @@ -7925,7 +8098,7 @@ entities: pos: -14.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1168 components: - type: Transform @@ -7933,7 +8106,7 @@ entities: pos: -13.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1169 components: - type: Transform @@ -7941,7 +8114,7 @@ entities: pos: -12.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1238 components: - type: Transform @@ -7949,7 +8122,7 @@ entities: pos: -10.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1239 components: - type: Transform @@ -7957,7 +8130,7 @@ entities: pos: -9.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1241 components: - type: Transform @@ -7965,7 +8138,7 @@ entities: pos: -7.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1243 components: - type: Transform @@ -7973,7 +8146,7 @@ entities: pos: -5.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1244 components: - type: Transform @@ -7981,7 +8154,7 @@ entities: pos: -4.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1245 components: - type: Transform @@ -7989,7 +8162,7 @@ entities: pos: -3.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1246 components: - type: Transform @@ -7997,7 +8170,7 @@ entities: pos: -2.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1247 components: - type: Transform @@ -8005,7 +8178,7 @@ entities: pos: -1.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1249 components: - type: Transform @@ -8013,7 +8186,7 @@ entities: pos: -14.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1250 components: - type: Transform @@ -8021,7 +8194,7 @@ entities: pos: -13.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1252 components: - type: Transform @@ -8029,7 +8202,7 @@ entities: pos: -11.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1253 components: - type: Transform @@ -8037,7 +8210,7 @@ entities: pos: -10.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1255 components: - type: Transform @@ -8045,7 +8218,7 @@ entities: pos: -8.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1256 components: - type: Transform @@ -8053,7 +8226,7 @@ entities: pos: -7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1257 components: - type: Transform @@ -8061,7 +8234,7 @@ entities: pos: -6.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1260 components: - type: Transform @@ -8069,7 +8242,7 @@ entities: pos: -3.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1261 components: - type: Transform @@ -8077,7 +8250,7 @@ entities: pos: -2.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1263 components: - type: Transform @@ -8085,7 +8258,7 @@ entities: pos: -0.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1264 components: - type: Transform @@ -8093,7 +8266,7 @@ entities: pos: -11.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1265 components: - type: Transform @@ -8101,7 +8274,7 @@ entities: pos: -11.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1266 components: - type: Transform @@ -8109,7 +8282,7 @@ entities: pos: -11.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1267 components: - type: Transform @@ -8117,7 +8290,7 @@ entities: pos: -11.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1268 components: - type: Transform @@ -8125,7 +8298,7 @@ entities: pos: -12.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1269 components: - type: Transform @@ -8133,7 +8306,7 @@ entities: pos: -12.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1270 components: - type: Transform @@ -8141,7 +8314,7 @@ entities: pos: -12.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1271 components: - type: Transform @@ -8149,7 +8322,7 @@ entities: pos: -12.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1272 components: - type: Transform @@ -8157,7 +8330,7 @@ entities: pos: -12.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1273 components: - type: Transform @@ -8165,7 +8338,7 @@ entities: pos: -12.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1274 components: - type: Transform @@ -8173,7 +8346,7 @@ entities: pos: -12.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1275 components: - type: Transform @@ -8181,7 +8354,7 @@ entities: pos: -8.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1276 components: - type: Transform @@ -8189,7 +8362,7 @@ entities: pos: -8.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1277 components: - type: Transform @@ -8197,7 +8370,7 @@ entities: pos: -8.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1278 components: - type: Transform @@ -8205,7 +8378,7 @@ entities: pos: -8.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1279 components: - type: Transform @@ -8213,7 +8386,7 @@ entities: pos: -8.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1280 components: - type: Transform @@ -8221,7 +8394,7 @@ entities: pos: -8.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1281 components: - type: Transform @@ -8229,7 +8402,7 @@ entities: pos: -9.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1282 components: - type: Transform @@ -8237,7 +8410,7 @@ entities: pos: -9.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1283 components: - type: Transform @@ -8245,7 +8418,7 @@ entities: pos: -9.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1284 components: - type: Transform @@ -8253,7 +8426,7 @@ entities: pos: -9.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1285 components: - type: Transform @@ -8261,7 +8434,7 @@ entities: pos: -9.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1286 components: - type: Transform @@ -8269,7 +8442,7 @@ entities: pos: -9.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1287 components: - type: Transform @@ -8277,7 +8450,7 @@ entities: pos: -6.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1288 components: - type: Transform @@ -8285,7 +8458,7 @@ entities: pos: -6.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1289 components: - type: Transform @@ -8293,7 +8466,7 @@ entities: pos: -6.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1290 components: - type: Transform @@ -8301,7 +8474,7 @@ entities: pos: -6.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1291 components: - type: Transform @@ -8309,7 +8482,7 @@ entities: pos: -5.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1292 components: - type: Transform @@ -8317,7 +8490,7 @@ entities: pos: -5.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1293 components: - type: Transform @@ -8325,7 +8498,7 @@ entities: pos: -5.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1294 components: - type: Transform @@ -8333,7 +8506,7 @@ entities: pos: -5.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1295 components: - type: Transform @@ -8341,7 +8514,7 @@ entities: pos: -5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1296 components: - type: Transform @@ -8349,7 +8522,7 @@ entities: pos: -5.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1297 components: - type: Transform @@ -8357,7 +8530,7 @@ entities: pos: -5.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1298 components: - type: Transform @@ -8365,7 +8538,7 @@ entities: pos: -5.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1299 components: - type: Transform @@ -8373,31 +8546,7 @@ entities: pos: -23.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' - - uid: 1300 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-3.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1302 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#0055CCFF' - uid: 1303 components: - type: Transform @@ -8405,7 +8554,7 @@ entities: pos: -1.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1304 components: - type: Transform @@ -8413,7 +8562,7 @@ entities: pos: -1.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1305 components: - type: Transform @@ -8421,7 +8570,7 @@ entities: pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1307 components: - type: Transform @@ -8429,7 +8578,7 @@ entities: pos: -1.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1308 components: - type: Transform @@ -8437,7 +8586,7 @@ entities: pos: -1.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1309 components: - type: Transform @@ -8445,7 +8594,7 @@ entities: pos: -1.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1310 components: - type: Transform @@ -8453,7 +8602,7 @@ entities: pos: -1.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1311 components: - type: Transform @@ -8461,7 +8610,7 @@ entities: pos: -1.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1312 components: - type: Transform @@ -8469,7 +8618,7 @@ entities: pos: -1.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1313 components: - type: Transform @@ -8477,7 +8626,7 @@ entities: pos: -1.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1314 components: - type: Transform @@ -8485,7 +8634,7 @@ entities: pos: -1.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1315 components: - type: Transform @@ -8493,7 +8642,7 @@ entities: pos: -1.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1317 components: - type: Transform @@ -8501,7 +8650,7 @@ entities: pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1318 components: - type: Transform @@ -8509,7 +8658,7 @@ entities: pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1319 components: - type: Transform @@ -8517,7 +8666,7 @@ entities: pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1320 components: - type: Transform @@ -8525,7 +8674,7 @@ entities: pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1321 components: - type: Transform @@ -8533,7 +8682,7 @@ entities: pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1322 components: - type: Transform @@ -8541,7 +8690,7 @@ entities: pos: 0.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1323 components: - type: Transform @@ -8549,7 +8698,7 @@ entities: pos: 0.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1325 components: - type: Transform @@ -8557,7 +8706,7 @@ entities: pos: 0.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1326 components: - type: Transform @@ -8565,7 +8714,7 @@ entities: pos: 0.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1327 components: - type: Transform @@ -8573,7 +8722,7 @@ entities: pos: 0.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1328 components: - type: Transform @@ -8581,7 +8730,7 @@ entities: pos: 0.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1329 components: - type: Transform @@ -8589,7 +8738,7 @@ entities: pos: 0.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1330 components: - type: Transform @@ -8597,7 +8746,7 @@ entities: pos: 0.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1331 components: - type: Transform @@ -8605,7 +8754,7 @@ entities: pos: 0.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1333 components: - type: Transform @@ -8613,7 +8762,7 @@ entities: pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1334 components: - type: Transform @@ -8621,7 +8770,7 @@ entities: pos: 1.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1335 components: - type: Transform @@ -8629,7 +8778,7 @@ entities: pos: 2.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1336 components: - type: Transform @@ -8637,7 +8786,7 @@ entities: pos: 3.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1339 components: - type: Transform @@ -8645,7 +8794,7 @@ entities: pos: 6.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1340 components: - type: Transform @@ -8653,7 +8802,7 @@ entities: pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1341 components: - type: Transform @@ -8661,7 +8810,7 @@ entities: pos: 8.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1343 components: - type: Transform @@ -8669,7 +8818,7 @@ entities: pos: -1.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1344 components: - type: Transform @@ -8677,7 +8826,7 @@ entities: pos: -1.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1347 components: - type: Transform @@ -8685,7 +8834,7 @@ entities: pos: -1.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1348 components: - type: Transform @@ -8693,7 +8842,7 @@ entities: pos: -0.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1349 components: - type: Transform @@ -8701,7 +8850,7 @@ entities: pos: -0.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1350 components: - type: Transform @@ -8709,7 +8858,7 @@ entities: pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1352 components: - type: Transform @@ -8717,7 +8866,7 @@ entities: pos: 1.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1353 components: - type: Transform @@ -8725,7 +8874,7 @@ entities: pos: -1.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1354 components: - type: Transform @@ -8733,7 +8882,7 @@ entities: pos: 3.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1355 components: - type: Transform @@ -8741,7 +8890,7 @@ entities: pos: 4.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1356 components: - type: Transform @@ -8749,7 +8898,7 @@ entities: pos: 5.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1357 components: - type: Transform @@ -8757,7 +8906,7 @@ entities: pos: 6.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1359 components: - type: Transform @@ -8765,7 +8914,7 @@ entities: pos: 8.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1360 components: - type: Transform @@ -8773,7 +8922,7 @@ entities: pos: 9.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1361 components: - type: Transform @@ -8781,7 +8930,7 @@ entities: pos: 10.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1362 components: - type: Transform @@ -8789,7 +8938,7 @@ entities: pos: 9.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1363 components: - type: Transform @@ -8797,7 +8946,7 @@ entities: pos: 10.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1365 components: - type: Transform @@ -8805,7 +8954,7 @@ entities: pos: 12.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1366 components: - type: Transform @@ -8813,7 +8962,7 @@ entities: pos: 13.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1368 components: - type: Transform @@ -8821,7 +8970,7 @@ entities: pos: 11.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1369 components: - type: Transform @@ -8829,7 +8978,7 @@ entities: pos: 12.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1371 components: - type: Transform @@ -8837,7 +8986,7 @@ entities: pos: 14.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1372 components: - type: Transform @@ -8845,7 +8994,7 @@ entities: pos: 15.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1374 components: - type: Transform @@ -8853,7 +9002,7 @@ entities: pos: 7.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1375 components: - type: Transform @@ -8861,7 +9010,7 @@ entities: pos: 7.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1376 components: - type: Transform @@ -8869,7 +9018,7 @@ entities: pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1377 components: - type: Transform @@ -8877,7 +9026,7 @@ entities: pos: 5.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1378 components: - type: Transform @@ -8885,7 +9034,7 @@ entities: pos: 5.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1379 components: - type: Transform @@ -8893,7 +9042,7 @@ entities: pos: 5.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1380 components: - type: Transform @@ -8901,7 +9050,7 @@ entities: pos: 5.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1381 components: - type: Transform @@ -8909,7 +9058,7 @@ entities: pos: 5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1382 components: - type: Transform @@ -8917,7 +9066,7 @@ entities: pos: 5.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1383 components: - type: Transform @@ -8925,7 +9074,7 @@ entities: pos: 7.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1384 components: - type: Transform @@ -8933,7 +9082,7 @@ entities: pos: 7.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1385 components: - type: Transform @@ -8941,7 +9090,7 @@ entities: pos: 7.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1386 components: - type: Transform @@ -8949,7 +9098,7 @@ entities: pos: 11.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1387 components: - type: Transform @@ -8957,7 +9106,7 @@ entities: pos: 11.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1388 components: - type: Transform @@ -8965,15 +9114,7 @@ entities: pos: 11.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1390 components: - type: Transform @@ -8981,7 +9122,7 @@ entities: pos: 11.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1391 components: - type: Transform @@ -8989,7 +9130,7 @@ entities: pos: 13.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1394 components: - type: Transform @@ -8997,7 +9138,7 @@ entities: pos: 14.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1395 components: - type: Transform @@ -9005,7 +9146,7 @@ entities: pos: 15.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1396 components: - type: Transform @@ -9013,7 +9154,7 @@ entities: pos: 16.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1397 components: - type: Transform @@ -9021,55 +9162,7 @@ entities: pos: 17.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' - - uid: 1398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1400 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1403 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#0055CCFF' - uid: 1404 components: - type: Transform @@ -9077,7 +9170,7 @@ entities: pos: 15.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1405 components: - type: Transform @@ -9085,7 +9178,7 @@ entities: pos: 16.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1406 components: - type: Transform @@ -9093,7 +9186,7 @@ entities: pos: 17.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1407 components: - type: Transform @@ -9101,7 +9194,7 @@ entities: pos: 18.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1408 components: - type: Transform @@ -9109,7 +9202,7 @@ entities: pos: 19.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1409 components: - type: Transform @@ -9117,7 +9210,7 @@ entities: pos: 20.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1410 components: - type: Transform @@ -9125,7 +9218,7 @@ entities: pos: 16.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1411 components: - type: Transform @@ -9133,7 +9226,7 @@ entities: pos: 17.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1412 components: - type: Transform @@ -9141,7 +9234,7 @@ entities: pos: 18.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1413 components: - type: Transform @@ -9149,7 +9242,7 @@ entities: pos: 19.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1415 components: - type: Transform @@ -9157,7 +9250,7 @@ entities: pos: 21.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1416 components: - type: Transform @@ -9165,7 +9258,7 @@ entities: pos: 22.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1418 components: - type: Transform @@ -9173,7 +9266,7 @@ entities: pos: 24.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1419 components: - type: Transform @@ -9181,7 +9274,7 @@ entities: pos: 25.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1420 components: - type: Transform @@ -9189,56 +9282,56 @@ entities: pos: 26.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1422 components: - type: Transform pos: 21.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1423 components: - type: Transform pos: 21.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1424 components: - type: Transform pos: 23.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1425 components: - type: Transform pos: 23.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1427 components: - type: Transform pos: 23.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1428 components: - type: Transform pos: 23.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1429 components: - type: Transform pos: 23.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1431 components: - type: Transform @@ -9246,7 +9339,7 @@ entities: pos: 20.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1432 components: - type: Transform @@ -9254,7 +9347,7 @@ entities: pos: 19.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1433 components: - type: Transform @@ -9262,7 +9355,7 @@ entities: pos: 22.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1434 components: - type: Transform @@ -9270,7 +9363,7 @@ entities: pos: 23.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1435 components: - type: Transform @@ -9278,7 +9371,7 @@ entities: pos: 24.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1437 components: - type: Transform @@ -9286,15 +9379,7 @@ entities: pos: 22.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1438 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1439 components: - type: Transform @@ -9302,7 +9387,7 @@ entities: pos: 23.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1440 components: - type: Transform @@ -9310,7 +9395,7 @@ entities: pos: 24.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1441 components: - type: Transform @@ -9318,7 +9403,7 @@ entities: pos: 25.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1442 components: - type: Transform @@ -9326,7 +9411,7 @@ entities: pos: 26.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1443 components: - type: Transform @@ -9334,7 +9419,7 @@ entities: pos: 24.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1444 components: - type: Transform @@ -9342,7 +9427,7 @@ entities: pos: 25.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1445 components: - type: Transform @@ -9350,7 +9435,7 @@ entities: pos: 26.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1446 components: - type: Transform @@ -9358,7 +9443,7 @@ entities: pos: 27.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1447 components: - type: Transform @@ -9366,7 +9451,7 @@ entities: pos: 28.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1448 components: - type: Transform @@ -9374,7 +9459,7 @@ entities: pos: 27.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1449 components: - type: Transform @@ -9382,21 +9467,21 @@ entities: pos: 28.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1452 components: - type: Transform pos: 21.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1453 components: - type: Transform pos: 21.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1454 components: - type: Transform @@ -9404,21 +9489,21 @@ entities: pos: 20.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1458 components: - type: Transform pos: 22.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1459 components: - type: Transform pos: 22.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1461 components: - type: Transform @@ -9426,7 +9511,7 @@ entities: pos: 20.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1462 components: - type: Transform @@ -9434,7 +9519,7 @@ entities: pos: 19.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1463 components: - type: Transform @@ -9442,7 +9527,7 @@ entities: pos: 21.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1464 components: - type: Transform @@ -9450,7 +9535,7 @@ entities: pos: 20.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1465 components: - type: Transform @@ -9458,7 +9543,7 @@ entities: pos: 19.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1466 components: - type: Transform @@ -9466,7 +9551,7 @@ entities: pos: 22.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1467 components: - type: Transform @@ -9474,7 +9559,7 @@ entities: pos: 23.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1468 components: - type: Transform @@ -9482,7 +9567,7 @@ entities: pos: 24.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1469 components: - type: Transform @@ -9490,7 +9575,7 @@ entities: pos: 25.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1470 components: - type: Transform @@ -9498,7 +9583,7 @@ entities: pos: 26.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1471 components: - type: Transform @@ -9506,7 +9591,7 @@ entities: pos: 24.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1472 components: - type: Transform @@ -9514,7 +9599,7 @@ entities: pos: 25.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1473 components: - type: Transform @@ -9522,7 +9607,7 @@ entities: pos: 19.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1474 components: - type: Transform @@ -9530,7 +9615,7 @@ entities: pos: 21.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1475 components: - type: Transform @@ -9538,7 +9623,7 @@ entities: pos: 20.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1476 components: - type: Transform @@ -9546,7 +9631,7 @@ entities: pos: 19.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1477 components: - type: Transform @@ -9554,7 +9639,7 @@ entities: pos: 22.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1478 components: - type: Transform @@ -9562,7 +9647,7 @@ entities: pos: 23.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1479 components: - type: Transform @@ -9570,7 +9655,7 @@ entities: pos: 24.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1480 components: - type: Transform @@ -9578,7 +9663,7 @@ entities: pos: 23.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1481 components: - type: Transform @@ -9586,7 +9671,7 @@ entities: pos: 24.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1579 components: - type: Transform @@ -9594,7 +9679,7 @@ entities: pos: -18.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1580 components: - type: Transform @@ -9602,42 +9687,42 @@ entities: pos: -18.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1599 components: - type: Transform pos: -19.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1600 components: - type: Transform pos: -19.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1601 components: - type: Transform pos: -20.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1602 components: - type: Transform pos: -20.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1603 components: - type: Transform pos: -20.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 121 @@ -9646,21 +9731,14 @@ entities: pos: -21.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 124 - components: - - type: Transform - pos: -24.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 335 components: - type: Transform pos: -20.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 350 components: - type: Transform @@ -9668,22 +9746,45 @@ entities: pos: -18.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1139 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#990000FF' - uid: 1235 components: - type: Transform pos: 4.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1237 components: - type: Transform @@ -9691,7 +9792,7 @@ entities: pos: -9.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1240 components: - type: Transform @@ -9699,7 +9800,7 @@ entities: pos: -4.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1242 components: - type: Transform @@ -9707,7 +9808,7 @@ entities: pos: -12.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1254 components: - type: Transform @@ -9715,7 +9816,7 @@ entities: pos: -6.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1258 components: - type: Transform @@ -9723,7 +9824,7 @@ entities: pos: -11.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1259 components: - type: Transform @@ -9731,7 +9832,7 @@ entities: pos: -5.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1262 components: - type: Transform @@ -9739,7 +9840,7 @@ entities: pos: -0.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1306 components: - type: Transform @@ -9747,7 +9848,7 @@ entities: pos: 0.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1324 components: - type: Transform @@ -9755,7 +9856,7 @@ entities: pos: -1.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1337 components: - type: Transform @@ -9763,7 +9864,7 @@ entities: pos: 5.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1342 components: - type: Transform @@ -9771,7 +9872,7 @@ entities: pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1346 components: - type: Transform @@ -9779,7 +9880,7 @@ entities: pos: -1.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1358 components: - type: Transform @@ -9787,7 +9888,7 @@ entities: pos: 2.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1364 components: - type: Transform @@ -9795,7 +9896,7 @@ entities: pos: 13.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1370 components: - type: Transform @@ -9803,15 +9904,7 @@ entities: pos: 11.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1393 components: - type: Transform @@ -9819,21 +9912,21 @@ entities: pos: 13.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1414 components: - type: Transform pos: 20.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1417 components: - type: Transform pos: 23.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1426 components: - type: Transform @@ -9841,14 +9934,14 @@ entities: pos: 23.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1430 components: - type: Transform pos: 21.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1450 components: - type: Transform @@ -9856,7 +9949,7 @@ entities: pos: 21.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1455 components: - type: Transform @@ -9864,7 +9957,7 @@ entities: pos: 21.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1456 components: - type: Transform @@ -9872,7 +9965,7 @@ entities: pos: 23.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1460 components: - type: Transform @@ -9880,16 +9973,60 @@ entities: pos: 22.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - proto: GasPort entities: + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 740 components: - type: Transform pos: -23.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' +- proto: GasPressurePumpOn + entities: + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePumpOnMax + entities: + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentPump entities: - uid: 738 @@ -9899,7 +10036,7 @@ entities: pos: -24.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1795 components: - type: Transform @@ -9907,7 +10044,7 @@ entities: pos: -23.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1796 components: - type: Transform @@ -9915,7 +10052,7 @@ entities: pos: -20.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1797 components: - type: Transform @@ -9925,7 +10062,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1798 components: - type: Transform @@ -9935,7 +10072,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1799 components: - type: Transform @@ -9945,7 +10082,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1800 components: - type: Transform @@ -9955,7 +10092,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1801 components: - type: Transform @@ -9966,14 +10103,14 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1802 components: - type: Transform pos: -0.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1803 components: - type: Transform @@ -9981,7 +10118,7 @@ entities: pos: 1.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1804 components: - type: Transform @@ -9989,7 +10126,7 @@ entities: pos: 1.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1805 components: - type: Transform @@ -9997,14 +10134,14 @@ entities: pos: 7.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1806 components: - type: Transform pos: 13.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1807 components: - type: Transform @@ -10012,14 +10149,14 @@ entities: pos: 18.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1808 components: - type: Transform pos: 7.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1809 components: - type: Transform @@ -10027,7 +10164,7 @@ entities: pos: 20.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1810 components: - type: Transform @@ -10038,7 +10175,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1811 components: - type: Transform @@ -10049,7 +10186,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1812 components: - type: Transform @@ -10060,7 +10197,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1813 components: - type: Transform @@ -10071,7 +10208,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1814 components: - type: Transform @@ -10082,7 +10219,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1815 components: - type: Transform @@ -10093,7 +10230,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1816 components: - type: Transform @@ -10103,14 +10240,14 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - uid: 1817 components: - type: Transform pos: 2.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0000AAFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 739 @@ -10120,7 +10257,7 @@ entities: pos: -21.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1120 components: - type: Transform @@ -10128,7 +10265,31 @@ entities: pos: 18.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1345 components: - type: Transform @@ -10136,7 +10297,7 @@ entities: pos: 4.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1790 components: - type: Transform @@ -10144,15 +10305,7 @@ entities: pos: -2.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1819 components: - type: Transform @@ -10160,7 +10313,7 @@ entities: pos: -19.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1820 components: - type: Transform @@ -10170,7 +10323,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1821 components: - type: Transform @@ -10180,7 +10333,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1822 components: - type: Transform @@ -10190,7 +10343,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1823 components: - type: Transform @@ -10200,7 +10353,7 @@ entities: deviceLists: - 1779 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1825 components: - type: Transform @@ -10208,14 +10361,14 @@ entities: pos: -2.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1827 components: - type: Transform pos: -1.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1828 components: - type: Transform @@ -10223,29 +10376,14 @@ entities: pos: -0.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1830 components: - type: Transform pos: 5.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1831 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' - - uid: 1832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1833 components: - type: Transform @@ -10255,7 +10393,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1834 components: - type: Transform @@ -10266,7 +10404,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1835 components: - type: Transform @@ -10277,7 +10415,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1836 components: - type: Transform @@ -10288,7 +10426,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1837 components: - type: Transform @@ -10299,7 +10437,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 1838 components: - type: Transform @@ -10310,14 +10448,14 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 2581 components: - type: Transform pos: -4.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - uid: 2649 components: - type: Transform @@ -10328,7 +10466,7 @@ entities: deviceLists: - 1780 - type: AtmosPipeColor - color: '#AA0000FF' + color: '#990000FF' - proto: GravityGeneratorMini entities: - uid: 568 @@ -11134,15 +11272,11 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 661 components: - type: Transform pos: -23.5,-10.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - proto: HandheldCrewMonitor entities: - uid: 646 @@ -11241,12 +11375,6 @@ entities: parent: 1 - proto: hydroponicsTrayAnchored entities: - - uid: 534 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,8.5 - parent: 1 - uid: 535 components: - type: Transform @@ -11259,11 +11387,6 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,8.5 parent: 1 - - uid: 542 - components: - - type: Transform - pos: 17.5,7.5 - parent: 1 - uid: 909 components: - type: Transform @@ -11296,11 +11419,11 @@ entities: parent: 1 - proto: JanitorialTrolley entities: - - uid: 706 + - uid: 542 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-8.5 + pos: -21.5,-5.5 parent: 1 - proto: JetpackNfsdFilled entities: @@ -11321,31 +11444,25 @@ entities: parent: 1 - proto: KitchenDeepFryer entities: - - uid: 530 + - uid: 1161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,8.5 + pos: 15.5,8.5 parent: 1 - proto: KitchenMicrowave entities: - - uid: 532 - components: - - type: Transform - pos: 14.5,7.5 - parent: 1 - uid: 925 components: - type: Transform pos: -14.5,8.5 parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 533 + - uid: 1162 components: - type: Transform - pos: 15.5,7.5 + pos: 14.5,8.5 parent: 1 +- proto: KitchenReagentGrinder + entities: - uid: 598 components: - type: Transform @@ -11356,6 +11473,11 @@ entities: - type: Transform pos: -14.5,7.5 parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 - proto: KitchenSpike entities: - uid: 537 @@ -11398,6 +11520,120 @@ entities: - type: Transform pos: -5.476282,-1.393225 parent: 1 +- proto: LockableButtonSecurity + entities: + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2368: + - Pressed: Toggle + - uid: 497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2367: + - Pressed: Toggle + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1784: + - Pressed: Toggle + - uid: 581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1783: + - Pressed: Toggle + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1782: + - Pressed: Toggle + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1781: + - Pressed: Toggle + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2370: + - Pressed: Toggle + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2369: + - Pressed: Toggle + - uid: 1099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 2542: + - Pressed: Toggle + 2543: + - Pressed: Toggle + 12: [] + 2541: + - Pressed: Toggle + 2544: + - Pressed: Toggle + 2540: + - Pressed: Toggle + 2545: + - Pressed: Toggle + 2372: + - Pressed: Toggle + 2371: + - Pressed: Toggle +- proto: LockerJanitorFilled + entities: + - uid: 1150 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 - proto: LockerNfsdBailiff entities: - uid: 698 @@ -11426,11 +11662,6 @@ entities: - type: Transform pos: -9.5,-0.5 parent: 1 - - uid: 614 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 1 - uid: 669 components: - type: Transform @@ -11460,6 +11691,24 @@ entities: - type: Transform pos: 27.5,5.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerNfsdSilver entities: - uid: 2659 @@ -11484,6 +11733,13 @@ entities: - type: Transform pos: 29.692461,1.1016078 parent: 1 +- proto: MaterialReclaimer + entities: + - uid: 529 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 1 - proto: MedicalBed entities: - uid: 481 @@ -11546,7 +11802,7 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,-3.5 parent: 1 - - uid: 641 + - uid: 1149 components: - type: Transform rot: -1.5707963267948966 rad @@ -12288,10 +12544,17 @@ entities: anchored: False pos: -11.5,-1.5 parent: 1 - - type: TriggerOnProximity - enabled: False - - type: Physics - bodyType: Dynamic + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic +- proto: PortableScrubber + entities: + - uid: 533 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 - proto: PottedPlantRandom entities: - uid: 1133 @@ -12819,16 +13082,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 1 - - uid: 700 - components: - - type: Transform - pos: -21.5,-9.5 - parent: 1 - - uid: 809 - components: - - type: Transform - pos: -24.5,-2.5 - parent: 1 - uid: 828 components: - type: Transform @@ -13243,7 +13496,7 @@ entities: - uid: 629 components: - type: Transform - pos: 13.323926,7.6148663 + pos: 13.462341,6.5919094 parent: 1 - proto: RubberStampApproved entities: @@ -13626,7 +13879,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - uid: 2541 components: - type: Transform @@ -13634,7 +13887,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - uid: 2542 components: - type: Transform @@ -13642,7 +13895,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - uid: 2543 components: - type: Transform @@ -13650,7 +13903,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - uid: 2544 components: - type: Transform @@ -13658,7 +13911,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - uid: 2545 components: - type: Transform @@ -13666,7 +13919,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 2538 + - 1099 - proto: SignalButtonDirectional entities: - uid: 1058 @@ -13680,26 +13933,6 @@ entities: - Pressed: Toggle 2583: - Pressed: Toggle - - uid: 1137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-1.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2368: - - Pressed: Toggle - - uid: 1690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-1.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2367: - - Pressed: Toggle - uid: 1707 components: - type: Transform @@ -13710,90 +13943,6 @@ entities: linkedPorts: 2605: - Pressed: Toggle - - uid: 1785 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,3.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1784: - - Pressed: Toggle - - uid: 1786 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1783: - - Pressed: Toggle - - uid: 1787 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1781: - - Pressed: Toggle - - uid: 1788 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1782: - - Pressed: Toggle - - uid: 2375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-1.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2369: - - Pressed: Toggle - - uid: 2376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2370: - - Pressed: Toggle - - uid: 2538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 2542: - - Pressed: Toggle - 2543: - - Pressed: Toggle - 2541: - - Pressed: Toggle - 2540: - - Pressed: Toggle - 2545: - - Pressed: Toggle - 2544: - - Pressed: Toggle - 2371: - - Pressed: Toggle - 2372: - - Pressed: Toggle - uid: 2558 components: - type: Transform @@ -13976,43 +14125,6 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,1.5 parent: 1 -- proto: SignSecureSmall - entities: - - uid: 2389 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 - parent: 1 - - uid: 2390 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,3.5 - parent: 1 - - uid: 2391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,3.5 - parent: 1 - - uid: 2392 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 1 - - uid: 2539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 1 - - uid: 2628 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 1 - proto: SignSpace entities: - uid: 1789 @@ -14084,13 +14196,6 @@ entities: - type: Transform pos: 26.336834,5.310274 parent: 1 -- proto: soda_dispenser - entities: - - uid: 2384 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - proto: SpacemenFigureSpawner entities: - uid: 2633 @@ -14108,20 +14213,6 @@ entities: parent: 1 - type: SpamEmitSound enabled: False -- proto: SpawnPointBrigmedic - entities: - - uid: 2657 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 2648 - components: - - type: Transform - pos: 18.5,7.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 561 @@ -14130,13 +14221,6 @@ entities: rot: 3.141592653589793 rad pos: 22.5,-1.5 parent: 1 -- proto: SpawnPointPrisonGuard - entities: - - uid: 2568 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1 - proto: SpawnPointSecurityCadet entities: - uid: 2571 @@ -14144,20 +14228,6 @@ entities: - type: Transform pos: 21.5,-5.5 parent: 1 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 2572 - components: - - type: Transform - pos: 21.5,-2.5 - parent: 1 -- proto: SpawnPointWarden - entities: - - uid: 2570 - components: - - type: Transform - pos: 27.5,0.5 - parent: 1 - proto: StationMap entities: - uid: 1736 @@ -14741,30 +14811,6 @@ entities: - type: Transform pos: 7.5,-1.5 parent: 1 - - uid: 414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 1 - - uid: 453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,7.5 - parent: 1 - - uid: 454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,7.5 - parent: 1 - - uid: 455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,7.5 - parent: 1 - uid: 578 components: - type: Transform @@ -14883,6 +14929,24 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 1 + - uid: 1146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,6.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 1 - uid: 1210 components: - type: Transform @@ -15016,281 +15080,209 @@ entities: - type: Transform pos: -26.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1005 components: - type: Transform pos: -25.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1006 components: - type: Transform pos: -24.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1014 components: - type: Transform pos: -23.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1028 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-11.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad pos: -25.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1030 components: - type: Transform rot: 3.141592653589793 rad pos: -23.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1047 components: - type: Transform rot: 3.141592653589793 rad pos: 20.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1050 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1051 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1052 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1053 components: - type: Transform pos: 22.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1059 components: - type: Transform pos: 23.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1060 components: - type: Transform pos: 25.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1061 components: - type: Transform pos: 24.5,8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1062 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1063 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-9.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1070 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-11.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1092 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-11.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1128 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1129 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-11.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1213 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-10.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1214 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-9.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1222 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1223 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-9.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1224 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-10.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 1231 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-11.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 2336 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 2338 components: - type: Transform rot: 3.141592653589793 rad pos: -21.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 2507 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 2652 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-9.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 2653 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-8.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - proto: ToiletDirtyWater entities: - uid: 915 @@ -15355,13 +15347,19 @@ entities: - type: Transform pos: 29.509594,0.66229606 parent: 1 -- proto: VendingMachineBooze +- proto: TwoWayLever entities: - - uid: 529 + - uid: 532 components: - type: Transform - pos: 15.5,8.5 + pos: -20.5,-8.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1145: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: VendingMachineBountyVend entities: - uid: 1215 @@ -15371,10 +15369,10 @@ entities: parent: 1 - proto: VendingMachineChefvend entities: - - uid: 528 + - uid: 1144 components: - type: Transform - pos: 14.5,8.5 + pos: 17.5,7.5 parent: 1 - proto: VendingMachineChemicals entities: @@ -15392,10 +15390,10 @@ entities: parent: 1 - proto: VendingMachineCoffee entities: - - uid: 2557 + - uid: 1164 components: - type: Transform - pos: 6.5,1.5 + pos: 5.5,1.5 parent: 1 - proto: VendingMachineCondiments entities: @@ -15418,13 +15416,6 @@ entities: - type: Transform pos: 3.5,1.5 parent: 1 -- proto: VendingMachineJaniDrobe - entities: - - uid: 2351 - components: - - type: Transform - pos: -20.5,0.5 - parent: 1 - proto: VendingMachineMedical entities: - uid: 580 @@ -15448,22 +15439,15 @@ entities: parent: 1 - proto: VendingMachineSeeds entities: - - uid: 540 - components: - - type: Transform - pos: 17.5,6.5 - parent: 1 - uid: 922 components: - type: Transform pos: -16.5,8.5 parent: 1 -- proto: VendingMachineSustenance - entities: - - uid: 560 + - uid: 1143 components: - type: Transform - pos: 5.5,1.5 + pos: 17.5,8.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: @@ -16405,12 +16389,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,1.5 parent: 1 - - uid: 318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,1.5 - parent: 1 - uid: 319 components: - type: Transform @@ -17060,6 +17038,11 @@ entities: - type: Transform pos: 26.5,-4.5 parent: 1 + - uid: 778 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 - uid: 814 components: - type: Transform @@ -17224,6 +17207,13 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 1 +- proto: WaterCooler + entities: + - uid: 1152 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 - proto: WeaponCapacitorRecharger entities: - uid: 2337 @@ -17338,6 +17328,13 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 1 +- proto: WindowDirectional + entities: + - uid: 414 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 1 - proto: WindowReinforcedDirectional entities: - uid: 603 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml b/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml index cfccb0e2c5a..0323969371a 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml @@ -287,157 +287,75 @@ entities: id: WarnLineGreyscaleW decals: 92: -4,-4 - - node: - cleanable: True - color: '#FF000034' - id: c - decals: - 12: -6.8325577,4.033863 - - node: - cleanable: True - color: '#FF000034' - id: e - decals: - 9: -7.506169,3.9991407 - - node: - cleanable: True - color: '#FF000034' - id: k - decals: - 8: -7.92978,4.033863 - - node: - cleanable: True - color: '#FF000034' - id: o - decals: - 11: -6.4853354,4.019974 - - node: - cleanable: True - color: '#FF000034' - id: s - decals: - 10: -7.1520023,4.0060854 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 64511 - 1: 1024 + 0: 30704 + 0,-1: + 0: 30583 + -1,0: + 0: 56827 0,1: - 0: 65535 + 0: 65303 + -1,1: + 0: 61197 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,2: - 0: 65393 - 1,3: - 0: 65535 - 2,2: - 0: 65216 - 2,3: - 0: 65535 - 3,2: - 0: 4352 - 3,3: - 0: 273 - 0,4: - 0: 65535 - 0,5: - 0: 53247 - 0,6: - 0: 35020 - 1,4: - 0: 65535 - 1,5: - 0: 65535 - 1,6: - 0: 13175 - 2,4: - 0: 13183 - 2,5: - 0: 17 - -3,4: - 0: 35022 - -2,4: - 0: 65535 - -2,5: - 0: 61183 - -2,6: - 0: 35020 - -1,4: - 0: 65535 - -1,5: - 0: 32767 - -1,6: - 0: 13175 - -3,2: - 0: 65376 - -3,3: - 0: 61439 - -2,2: - 0: 65216 - -2,3: - 0: 65535 + 0: 7 -1,2: - 0: 65535 - -1,3: - 0: 65535 + 0: 12 1,0: - 0: 65535 + 0: 4479 + 1: 49152 1,1: - 0: 14335 + 0: 259 + 1: 140 + 2: 1024 + 1,-1: + 0: 8157 2,0: - 0: 14207 + 0: 51 + 2: 8192 2,1: - 0: 1 + 1: 1 -3,0: - 0: 36046 + 0: 136 + 2: 32768 -2,0: - 0: 65535 + 0: 127 + 1: 24576 -2,1: - 0: 36079 - -1,0: - 0: 48127 + 1: 39 + 0: 8 2: 1024 - 1: 16384 - -1,1: - 0: 65535 - -3,-2: - 0: 65393 + -1,-1: + 0: 43963 -3,-1: - 0: 65535 + 0: 3822 + -3,-2: + 2: 2112 -2,-2: - 0: 65216 - 3: 256 + 2: 832 -2,-1: - 0: 65535 + 0: 1919 -1,-2: - 0: 65535 - -1,-1: - 0: 65535 + 0: 11912 -1,-3: - 0: 57344 - 0,-3: - 0: 61440 + 2: 8192 + 0: 32768 0,-2: - 0: 65535 - 0,-1: - 0: 65535 + 0: 2979 + 0,-3: + 0: 8192 + 2: 32768 1,-2: - 0: 65393 - 1,-1: - 0: 65535 + 0: 4352 + 2: 2112 2,-2: - 0: 65216 - 3: 256 + 2: 832 2,-1: - 0: 65535 - 3,-2: - 0: 4369 - 3,-1: - 0: 4369 + 0: 1911 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -455,10 +373,8 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.1499 + temperature: 293.15 moles: - - 18.472576 - - 69.49208 - 0 - 0 - 0 @@ -469,23 +385,10 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -602,6 +505,10 @@ entities: showEnts: False occludes: True ent: 18 + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 57 - proto: AmeJar entities: - uid: 18 @@ -620,6 +527,12 @@ entities: - type: Transform pos: -6.8893666,-2.352498 parent: 1 + - uid: 57 + components: + - type: Transform + parent: 17 + - type: Physics + canCollide: False - proto: AmeShielding entities: - uid: 21 @@ -792,6 +705,66 @@ entities: - type: Transform pos: 3.5,-8.5 parent: 1 + - uid: 409 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 - proto: Bed entities: - uid: 53 @@ -809,24 +782,26 @@ entities: - type: Transform pos: -8.5,1.5 parent: 1 -- proto: BedsheetOrange +- proto: BedsheetNfsd entities: - - uid: 56 + - uid: 58 components: - type: Transform - pos: 9.5,1.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 1 -- proto: BedsheetRed - entities: - - uid: 57 + - uid: 229 components: - type: Transform + rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 1 - - uid: 58 +- proto: BedsheetOrange + entities: + - uid: 56 components: - type: Transform - pos: -8.5,1.5 + pos: 9.5,1.5 parent: 1 - proto: BenchSteelLeft entities: @@ -1697,6 +1672,13 @@ entities: - type: Transform pos: 6.291652,-3.3226833 parent: 1 +- proto: ComputerAdvancedRadar + entities: + - uid: 217 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 - proto: ComputerCriminalRecords entities: - uid: 216 @@ -1704,19 +1686,19 @@ entities: - type: Transform pos: -2.5,7.5 parent: 1 -- proto: ComputerIFFSyndicate +- proto: ComputerIFF entities: - - uid: 217 + - uid: 218 components: - type: Transform - pos: 0.5,8.5 + pos: 3.5,7.5 parent: 1 - proto: ComputerMedicalRecords entities: - - uid: 218 + - uid: 220 components: - type: Transform - pos: 3.5,7.5 + pos: -0.5,8.5 parent: 1 - proto: ComputerPowerMonitoring entities: @@ -1728,10 +1710,17 @@ entities: parent: 1 - proto: ComputerRadar entities: - - uid: 220 + - uid: 620 components: - type: Transform - pos: -0.5,8.5 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 parent: 1 - proto: ComputerShuttle entities: @@ -1800,16 +1789,17 @@ entities: - type: Transform pos: 2.5,8.5 parent: 1 -- proto: GasMixerFlipped +- proto: GasMixerOnFlipped entities: - - uid: 229 + - uid: 292 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPassiveVent @@ -1820,8 +1810,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 231 @@ -1830,8 +1818,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -1938,6 +1924,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 312 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 245 @@ -2298,13 +2291,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 292 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 293 components: - type: Transform @@ -2336,6 +2322,38 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 297 @@ -2433,7 +2451,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 2.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -2444,8 +2462,6 @@ entities: - type: Transform pos: -5.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 311 @@ -2453,18 +2469,14 @@ entities: - type: Transform pos: -6.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: GasPressurePump +- proto: GasPressurePumpOn entities: - - uid: 312 + - uid: 408 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPump @@ -2475,8 +2487,6 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 314 @@ -2485,8 +2495,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 315 @@ -2494,8 +2502,6 @@ entities: - type: Transform pos: 0.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 316 @@ -2504,8 +2510,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 317 @@ -2514,8 +2518,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 318 @@ -2524,8 +2526,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 319 @@ -2534,8 +2534,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 320 @@ -2544,8 +2542,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 321 @@ -2554,8 +2550,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -2566,8 +2560,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 323 @@ -2576,8 +2568,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 324 @@ -2586,8 +2576,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 325 @@ -2595,8 +2583,6 @@ entities: - type: Transform pos: 2.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 326 @@ -2604,8 +2590,6 @@ entities: - type: Transform pos: 2.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 327 @@ -2614,8 +2598,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 328 @@ -2624,8 +2606,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 329 @@ -2634,8 +2614,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 330 @@ -2644,8 +2622,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini @@ -2787,19 +2763,21 @@ entities: - uid: 353 components: - type: Transform + anchored: True pos: -6.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: Physics + bodyType: Static - proto: OxygenCanister entities: - uid: 354 components: - type: Transform + anchored: True pos: -5.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: Physics + bodyType: Static - proto: PaperBin10 entities: - uid: 355 @@ -3174,24 +3152,13 @@ entities: - type: Transform pos: -7.5,-1.5 parent: 1 -- proto: soda_dispenser - entities: - - uid: 408 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 409 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1 - - uid: 410 + - uid: 412 components: - type: Transform - pos: -8.5,0.5 + rot: 3.141592653589793 rad + pos: 0.5,1.5 parent: 1 - proto: SubstationWallBasic entities: @@ -3201,13 +3168,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-2.5 parent: 1 -- proto: SuitStorageBailiff - entities: - - uid: 412 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1 - proto: SuitStorageDeputy entities: - uid: 413 @@ -3225,6 +3185,11 @@ entities: - type: Transform pos: 2.5,3.5 parent: 1 + - uid: 450 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 - proto: SuitStorageWallmountEVAPrisoner entities: - uid: 416 @@ -3475,13 +3440,6 @@ entities: - type: Transform pos: -1.5,4.5 parent: 1 -- proto: VendingMachineSustenance - entities: - - uid: 450 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - proto: WallmountTelevision entities: - uid: 451 @@ -4294,6 +4252,13 @@ entities: parent: 1 - type: WarpPoint location: Prowler +- proto: WaterCooler + entities: + - uid: 622 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 - proto: WeaponGrapplingGun entities: - uid: 609 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/rogue.yml b/Resources/Maps/_NF/Shuttles/Nfsd/rogue.yml index 538497b4968..a4114539838 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/rogue.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/rogue.yml @@ -273,6 +273,14 @@ entities: - type: Transform pos: 2.5,3.5 parent: 1 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 - proto: CableApcExtension entities: - uid: 77 @@ -504,6 +512,14 @@ entities: rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 +- proto: ComputerIFF + entities: + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 - proto: ComputerShuttle entities: - uid: 44 @@ -530,25 +546,27 @@ entities: - type: Transform pos: 1.5,3.5 parent: 1 -- proto: Grille +- proto: GrenadeEMP entities: - - uid: 52 + - uid: 67 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - - uid: 53 + parent: 54 + - type: Physics + canCollide: False + - uid: 68 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - - uid: 54 + parent: 54 + - type: Physics + canCollide: False +- proto: Grille + entities: + - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,1.5 + pos: 1.5,2.5 parent: 1 - uid: 55 components: @@ -586,17 +604,31 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 -- proto: PlastitaniumWindow +- proto: LockableButtonSecurity entities: - - uid: 14 + - uid: 121 components: - type: Transform - pos: 1.5,2.5 + rot: 1.5707963267948966 rad + pos: 0.5,1.5 parent: 1 - - uid: 15 + - type: DeviceLinkSource + linkedPorts: + 54: + - Pressed: Trigger +- proto: MagazineGrenadeEMP + entities: + - uid: 120 components: - type: Transform - pos: 0.5,1.5 + pos: 0.48425126,3.4548554 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 14 + components: + - type: Transform + pos: 1.5,2.5 parent: 1 - uid: 16 components: @@ -623,31 +655,6 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 1 -- proto: PowerCellHigh - entities: - - uid: 124 - components: - - type: Transform - pos: -1.676467,1.1426032 - parent: 1 - - uid: 125 - components: - - type: Transform - pos: -1.2806337,1.1426032 - parent: 1 - - uid: 126 - components: - - type: Transform - pos: -1.488967,0.89260316 - parent: 1 -- proto: PowerCellRecharger - entities: - - uid: 69 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 1 - proto: Poweredlight entities: - uid: 123 @@ -690,13 +697,37 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,3.5 parent: 1 -- proto: SignSecureSmallRed +- proto: ShuttleGunFriendship entities: - - uid: 120 + - uid: 54 components: - type: Transform - pos: 0.5,1.5 + rot: 3.141592653589793 rad + pos: 0.5,4.5 parent: 1 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 67 + - 68 + - type: BallisticAmmoProvider + entities: + - 67 + - 68 + - type: DeviceLinkSink + links: + - 121 - proto: SmallGyroscopeNfsd entities: - uid: 50 @@ -727,12 +758,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 1 - - uid: 67 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 - proto: ThrusterNfsd entities: - uid: 22 @@ -815,6 +840,12 @@ entities: - type: Transform pos: 2.5,2.5 parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 - proto: WarpPointShip entities: - uid: 122 diff --git a/Resources/Maps/_NF/Shuttles/bazaar.yml b/Resources/Maps/_NF/Shuttles/bazaar.yml index 9ee4b4ca5e5..6c3e51f6592 100644 --- a/Resources/Maps/_NF/Shuttles/bazaar.yml +++ b/Resources/Maps/_NF/Shuttles/bazaar.yml @@ -5,7 +5,9 @@ tilemap: 0: Space 30: FloorDark 35: FloorDarkMono + 2: FloorFreezer 46: FloorGlass + 1: FloorLino 65: FloorMetalDiamond 73: FloorOldConcreteSmooth 77: FloorRGlass @@ -29,19 +31,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: dwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAABSQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAASQAAAAAASQAAAAACSQAAAAAASQAAAAABSQAAAAAASQAAAAAASQAAAAADIwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAASQAAAAADSQAAAAACSQAAAAACIwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAASQAAAAAASQAAAAABSQAAAAACIwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAASQAAAAADSQAAAAACSQAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAASQAAAAABSQAAAAABSQAAAAAASQAAAAABSQAAAAADSQAAAAACSQAAAAAAegAAAAAAegAAAAAAIwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAAAAAAAAASQAAAAABSQAAAAAASQAAAAADSQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAASQAAAAACSQAAAAAASQAAAAACSQAAAAADeQAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAACTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAADTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAABSQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAASQAAAAAASQAAAAACSQAAAAAASQAAAAABSQAAAAAASQAAAAAASQAAAAADIwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAASQAAAAADSQAAAAACSQAAAAACIwAAAAADZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAASQAAAAAASQAAAAABSQAAAAACIwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAASQAAAAADSQAAAAACSQAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAAAAAAAASQAAAAABSQAAAAABSQAAAAAASQAAAAABSQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAAAAAAAAASQAAAAABSQAAAAAASQAAAAADSQAAAAADegAAAAAAAQAAAAAAAQAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAASQAAAAACSQAAAAAASQAAAAACSQAAAAADegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAAgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAAgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAdwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAAgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAACTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAADTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAACSQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADSQAAAAACSQAAAAADSQAAAAACSQAAAAACSQAAAAAASQAAAAACAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADSQAAAAACSQAAAAAASQAAAAACQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADSQAAAAABSQAAAAAASQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAASQAAAAAASQAAAAACSQAAAAADQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAABegAAAAAAegAAAAAASQAAAAABSQAAAAADSQAAAAADSQAAAAABSQAAAAABSQAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAABSQAAAAACSQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAASQAAAAABSQAAAAADSQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAACSQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADSQAAAAACSQAAAAADSQAAAAACSQAAAAACSQAAAAAASQAAAAACAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADSQAAAAACSQAAAAAASQAAAAACQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAIwAAAAADSQAAAAABSQAAAAAASQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAASQAAAAAASQAAAAACSQAAAAADQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAAASQAAAAABSQAAAAABSQAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAASQAAAAABSQAAAAACSQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAASQAAAAABSQAAAAADSQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAADLgAAAAADLgAAAAACLgAAAAACLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADegAAAAAAdwAAAAAAdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABegAAAAAAdwAAAAABdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIwAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAIwAAAAABegAAAAAAdwAAAAADdwAAAAACdwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAADLgAAAAADLgAAAAACLgAAAAACLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADegAAAAAAdwAAAAAAdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABegAAAAAAdwAAAAABdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAABegAAAAAAdwAAAAADdwAAAAACdwAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAACLgAAAAAALgAAAAAALgAAAAABLgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAABLgAAAAABLgAAAAABLgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAADLgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAHgAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAAAHgAAAAACIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAADHgAAAAADIwAAAAACIwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAACLgAAAAAALgAAAAAALgAAAAABLgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAABLgAAAAABLgAAAAABLgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAADLgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAHgAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAAAHgAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAAAHgAAAAACIwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAADHgAAAAADIwAAAAACegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -76,22 +78,81 @@ entities: 17: -13,2 - node: color: '#FFFFFFFF' - id: BrickTileDarkBox + id: BrickTileDarkCornerNe decals: - 124: 9,8 + 144: 9,9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 142: 5,8 + 143: 7,9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 138: 6,6 + 141: 9,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 137: 5,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 139: 8,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 149: 7,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 150: 6,7 + 151: 8,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 152: 8,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 148: 9,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 146: 6,8 + 147: 8,9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 140: 7,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 145: 5,7 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 125: 9.750678,3.7486362 - 126: 8.251255,1.250835 - 127: -11.249821,1.7499099 - 128: -10.247505,4.752153 + 102: 9.750678,3.7486362 + 103: 8.251255,1.250835 + 104: -11.249821,1.7499099 + 105: -10.247505,4.752153 - node: color: '#FFA800FF' id: BrickTileSteelInnerNw decals: - 141: 10,4 + 117: 10,4 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe @@ -153,7 +214,7 @@ entities: 28: 12,1 39: -11,1 40: -10,1 - 97: -9,1 + 92: -9,1 - node: color: '#A46106FF' id: BrickTileWhiteLineW @@ -163,20 +224,39 @@ entities: 13: -13,3 32: 8,2 33: 8,3 + - node: + color: '#96DAFFFF' + id: DeliveryGreyscale + decals: + 165: -7,6 + - node: + color: '#FF5C5CFF' + id: DeliveryGreyscale + decals: + 166: -8,6 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 160: -9,7 + 161: -8,9 + 162: -5,8 + 163: -5,7 + 164: -5,6 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 146: -12,-5 - 147: -12,-7 + 122: -12,-5 + 123: -12,-7 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 150: -1,-9 - 151: 1,-9 + 126: -1,-9 + 127: 1,-9 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -184,8 +264,8 @@ entities: decals: 36: 13,3 37: 13,1 - 148: 12,-5 - 149: 12,-7 + 124: 12,-5 + 125: 12,-7 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -197,172 +277,139 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 130: -1,-5 + 107: -1,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign10 decals: - 133: 0,-7 + 110: 0,-7 - node: color: '#FFFFFFFF' id: SpaceStationSign11 decals: - 138: 1,-7 + 115: 1,-7 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 131: 0,-5 + 108: 0,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 137: -3,-6 + 114: -3,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 142: -2,-6 + 118: -2,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 143: -1,-6 + 119: -1,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 132: 0,-6 + 109: 0,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 134: 1,-6 + 111: 1,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign8 decals: - 135: 2,-6 + 112: 2,-6 - node: color: '#FFFFFFFF' id: SpaceStationSign9 decals: - 136: 3,-6 + 113: 3,-6 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 152: 0,-9 + 128: 0,-9 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: 38: 13,2 - 145: 12,-6 + 121: 12,-6 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: 16: -13,2 - 144: -12,-6 - - node: - color: '#951710FF' - id: WarnCornerNE - decals: - 100: 11,9 + 120: -12,-6 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 96: -5,8 - - node: - color: '#951710FF' - id: WarnCornerNW - decals: - 110: 5,8 + 91: -5,8 + 156: -7,9 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 99: -7,9 - - node: - color: '#951710FF' - id: WarnCornerSE - decals: - 102: 11,7 + 154: -9,9 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 95: -5,7 + 134: -5,6 - node: - color: '#951710FF' + color: '#FFFFFFFF' id: WarnCornerSW decals: - 103: 5,7 + 131: -8,6 + 153: -9,7 - node: color: '#FED83DFF' id: WarnCornerSmallNE decals: 89: -4,1 - - node: - color: '#FED83DFF' - id: WarnCornerSmallNW - decals: - 88: 4,1 - node: color: '#FFFFFFFF' - id: WarnCornerSmallNW + id: WarnCornerSmallNE decals: - 92: -7,7 + 157: -7,8 - node: - color: '#951710FF' - id: WarnCornerSmallSE + color: '#FED83DFF' + id: WarnCornerSmallNW decals: - 105: 8,7 + 88: 4,1 - node: color: '#FED83DFF' id: WarnCornerSmallSE decals: 87: -4,5 - - node: - color: '#951710FF' - id: WarnCornerSmallSW - decals: - 104: 8,7 - node: color: '#FED83DFF' id: WarnCornerSmallSW decals: 86: 4,5 - - node: - color: '#951710FF' - id: WarnEndS - decals: - 101: 8,6 - node: color: '#FFFFFFFF' - id: WarnEndW + id: WarnCornerSmallSW decals: - 91: -8,7 + 158: -8,7 - node: color: '#FFFFFFFF' id: WarnFull decals: - 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 + 96: 14,3 + 97: 14,2 + 98: 14,1 + 99: -14,3 + 100: -14,2 + 101: -14,1 - node: color: '#FED83DFF' id: WarnLineE @@ -371,13 +418,10 @@ entities: 68: -4,3 69: -4,4 - node: - color: '#951710FF' - id: WarnLineN + color: '#FFFFFFFF' + id: WarnLineE decals: - 106: 9,7 - 107: 10,7 - 108: 6,7 - 109: 7,7 + 135: -5,7 - node: color: '#FED83DFF' id: WarnLineN @@ -400,8 +444,8 @@ entities: 45: 1,-4 46: 2,-4 47: 3,-4 - 93: -7,7 - 94: -6,7 + 132: -7,6 + 133: -6,6 - node: color: '#FED83DFF' id: WarnLineS @@ -413,15 +457,7 @@ entities: color: '#FFFFFFFF' id: WarnLineS decals: - 98: -7,8 - - node: - color: '#951710FF' - id: WarnLineW - decals: - 111: 7,9 - 112: 8,9 - 113: 9,9 - 114: 10,9 + 159: -9,8 - node: color: '#FED83DFF' id: WarnLineW @@ -436,7 +472,13 @@ entities: color: '#FFCD00FF' id: WarnLineW decals: - 140: -3,1 + 116: -3,1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 136: -6,8 + 155: -8,9 - node: color: '#A46106FF' id: WoodTrimThinCornerNe @@ -461,7 +503,7 @@ entities: color: '#A05212FF' id: WoodTrimThinLineE decals: - 116: -1,-1 + 94: -1,-1 - node: color: '#A46106FF' id: WoodTrimThinLineE @@ -478,7 +520,7 @@ entities: color: '#A05212FF' id: WoodTrimThinLineS decals: - 115: -1,-1 + 93: -1,-1 - node: color: '#A46106FF' id: WoodTrimThinLineS @@ -497,7 +539,7 @@ entities: color: '#A05212FF' id: WoodTrimThinLineW decals: - 117: 1,-1 + 95: 1,-1 - node: color: '#A46106FF' id: WoodTrimThinLineW @@ -508,132 +550,119 @@ entities: color: '#FFFFFFFF' id: body decals: - 129: -0.03648758,9.691378 + 106: -0.03648758,9.691378 - node: color: '#86FF5BFF' id: shop decals: - 153: -4,-5 - 154: 4,-5 + 129: -4,-5 + 130: 4,-5 - type: RadiationGridResistance - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 65535 + 0: 65521 + 0,-1: + 0: 65520 + -1,0: + 0: 65520 0,1: 0: 65535 + -1,1: + 0: 61183 0,2: - 0: 65535 + 0: 6000 + 1: 32768 + -1,2: + 0: 3268 + 1: 8448 + 0,3: + 0: 19 + -1,3: + 0: 8 1,0: - 0: 65535 + 0: 65398 1,1: - 0: 65535 + 0: 58967 + 1,2: + 1: 1792 + 0: 142 + 1,-1: + 0: 8738 + 1: 32768 2,0: - 0: 65535 + 0: 65520 2,1: - 0: 65535 + 0: 61903 + 2,2: + 0: 187 + 2,-1: + 1: 57344 + 3,0: + 0: 30576 + 3,1: + 0: 51 + 1: 9216 + 3,2: + 1: 256 + 3,-1: + 1: 4096 + -4,0: + 0: 52416 + -4,1: + 0: 136 + 1: 33792 -3,0: - 0: 65535 + 0: 65520 -3,1: - 0: 65535 + 0: 41087 + -3,-1: + 1: 61440 + -3,2: + 0: 170 + 1: 256 -2,0: - 0: 65535 + 0: 65500 -2,1: - 0: 65535 - -1,0: - 0: 65535 - -1,1: - 0: 65535 - -1,2: - 0: 61439 - -4,-3: - 0: 52224 + 0: 65357 + -2,2: + 0: 63 + 1: 3072 + -2,-1: + 1: 8192 + 0: 34952 + -1,-1: + 0: 61152 -4,-2: - 0: 52428 - -3,-3: - 0: 65472 + 0: 34944 -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-3: - 0: 65534 + 0: 65520 + -3,-3: + 1: 49152 -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 0: 65535 + 0: 65520 -1,-2: - 0: 65535 - -1,-1: - 0: 65535 - -1,-4: - 0: 65535 - 0,-4: - 0: 65535 + 0: 65528 + -1,-3: + 1: 12800 + 0: 34816 0,-3: - 0: 65535 + 0: 13056 + 1: 34816 0,-2: - 0: 65535 - 0,-1: - 0: 65535 + 0: 65523 1,-3: - 0: 65535 + 1: 4096 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-3: - 0: 65392 + 0: 65520 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-3: - 0: 30464 + 0: 65520 + 2,-3: + 1: 24576 3,-2: - 0: 30583 - -1,-5: - 0: 63344 - 0,-5: - 0: 64704 - 0,3: - 0: 887 - 1,2: - 0: 4095 - 2,2: - 0: 4095 - 3,0: - 0: 30583 - 3,1: - 0: 14199 - 3,2: - 0: 273 - -4,0: - 0: 52428 - -4,1: - 0: 36044 - -3,2: - 0: 4095 - -2,2: - 0: 4095 - -1,3: - 0: 2252 - -4,-1: - 0: 52360 - -2,-4: - 0: 52428 - 1,-4: - 0: 30583 - 3,-1: - 0: 30515 - 1,-5: - 0: 30576 - -2,-5: - 0: 52416 + 0: 13104 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -650,202 +679,231 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: BecomesStation id: Bazaar -- proto: ActionToggleInternals +- proto: AirAlarm entities: - - uid: 192 + - uid: 529 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 191 - - type: InstantAction - container: 191 -- proto: AirCanister - entities: - - uid: 85 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: DeviceList + devices: + - 935 + - 936 + - uid: 1025 components: - type: Transform - anchored: True - pos: -7.5,7.5 + rot: 3.141592653589793 rad + pos: -7.5,0.5 parent: 1 - - type: Physics - bodyType: Static - - type: AtmosDevice - joinedGrid: 1 -- proto: AirlockCargo - entities: - - uid: 2 + - type: DeviceList + devices: + - 422 + - 392 + - uid: 1026 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 + rot: 3.141592653589793 rad + pos: 8.5,0.5 parent: 1 - - type: Door - secondsUntilStateChange: -3485.167 - state: Opening - - type: DeviceLinkSink - links: - - 593 - - uid: 3 + - type: DeviceList + devices: + - 395 + - 400 + - uid: 1027 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,3.5 + rot: 3.141592653589793 rad + pos: 7.5,6.5 parent: 1 - - uid: 4 + - type: DeviceList + devices: + - 110 + - 128 + - 117 + - uid: 1028 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 + pos: 5.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 590 - - uid: 5 + - type: DeviceList + devices: + - 130 + - 129 + - uid: 1029 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,3.5 + pos: -9.5,7.5 parent: 1 - - uid: 6 + - type: DeviceList + devices: + - 1024 + - 298 + - uid: 1031 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + rot: 3.141592653589793 rad + pos: 2.5,-7.5 parent: 1 - - type: DeviceLinkSink - links: - - 593 - - uid: 7 + - type: DeviceList + devices: + - 921 + - 932 + - 929 + - 922 + - 931 + - 892 + - uid: 1033 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-3.5 + pos: -1.5,11.5 parent: 1 - - type: DeviceLinkSink - links: - - 590 - - uid: 8 + - type: DeviceList + devices: + - 186 + - 273 + - 433 + - 185 +- proto: Airlock + entities: + - uid: 521 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,2.5 + pos: 6.5,5.5 parent: 1 - - uid: 9 + - uid: 595 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 + pos: 10.5,7.5 parent: 1 -- proto: AirlockCommand +- proto: AirlockCargoGlass entities: - - uid: 10 + - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + pos: -6.5,3.5 parent: 1 - - uid: 11 + - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 + pos: 7.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 5.5,-3.5 parent: 1 -- proto: AirlockEngineering - entities: - uid: 12 components: - - type: MetaData - flags: PvsPriority + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 +- proto: AirlockCommand + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 11 + components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,6.5 + pos: -1.5,8.5 + parent: 1 +- proto: AirlockEngineering + entities: + - uid: 659 + components: + - type: Transform + pos: -5.5,5.5 parent: 1 - proto: AirlockExternal entities: - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-5.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-6.5 parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-4.5 parent: 1 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-7.5 parent: 1 - uid: 17 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-7.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-7.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-5.5 parent: 1 - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-4.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-6.5 parent: 1 @@ -857,9 +915,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,2.5 parent: 1 - - type: DeviceLinkSink - links: - - 592 - uid: 23 components: - type: Transform @@ -882,9 +937,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,3.5 parent: 1 - - type: DeviceLinkSink - links: - - 592 - uid: 27 components: - type: Transform @@ -914,9 +966,6 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 592 - uid: 32 components: - type: Transform @@ -929,115 +978,24 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,3.5 parent: 1 - - type: DeviceLinkSink - links: - - 594 - uid: 34 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,2.5 parent: 1 - - type: DeviceLinkSink - links: - - 594 - uid: 35 components: - type: Transform rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 1 - - type: DeviceLinkSink - links: - - 594 - uid: 36 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,-4.5 parent: 1 -- proto: AirlockMercenaryGlass - entities: - - uid: 37 - components: - - type: Transform - pos: 6.5,6.5 - parent: 1 -- proto: AmeController - entities: - - uid: 38 - components: - - type: Transform - pos: -7.5,9.5 - parent: 1 - - type: AmeController - injecting: True - - type: ContainerContainer - containers: - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: 39 -- proto: AmeJar - entities: - - uid: 39 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 38 - - type: Physics - canCollide: False -- proto: AmeShielding - entities: - - uid: 40 - components: - - type: Transform - pos: -10.5,8.5 - parent: 1 - - uid: 41 - components: - - type: Transform - pos: -9.5,7.5 - parent: 1 - - uid: 42 - components: - - type: Transform - pos: -10.5,7.5 - parent: 1 - - uid: 43 - components: - - type: Transform - pos: -9.5,9.5 - parent: 1 - - uid: 44 - components: - - type: Transform - pos: -8.5,7.5 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1 - - uid: 46 - components: - - type: Transform - pos: -9.5,8.5 - parent: 1 - - type: PointLight - radius: 2 - enabled: True - - uid: 47 - components: - - type: Transform - pos: -8.5,8.5 - parent: 1 - - uid: 48 - components: - - type: Transform - pos: -10.5,9.5 - parent: 1 - proto: APCBasic entities: - uid: 49 @@ -1207,1101 +1165,1348 @@ entities: - type: Transform pos: -13.5,1.5 parent: 1 -- proto: Autolathe +- proto: AtmosFixBlockerMarker entities: - - uid: 76 + - uid: 610 components: - type: Transform - pos: -0.5,1.5 + pos: -8.5,-0.5 parent: 1 -- proto: BannerCargo - entities: - - uid: 77 + - uid: 611 components: - type: Transform - pos: -3.5,1.5 + pos: -10.5,-0.5 parent: 1 - - uid: 78 + - uid: 612 components: - type: Transform - pos: 4.5,1.5 + pos: -11.5,-0.5 parent: 1 -- proto: BlastDoorExterior1 - entities: - - uid: 79 + - uid: 665 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 10.5,0.5 + pos: -9.5,-0.5 parent: 1 - - uid: 80 + - uid: 672 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,0.5 + pos: -6.5,-0.5 parent: 1 -- proto: BlastDoorExterior3 - entities: - - uid: 81 + - uid: 851 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -9.5,0.5 + pos: -9.5,-8.5 parent: 1 - - uid: 82 + - uid: 852 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,0.5 + pos: -8.5,-8.5 parent: 1 -- proto: BoxZiptie - entities: - - uid: 83 + - uid: 853 components: - type: Transform - pos: 10.612946,9.631557 + pos: -3.5,-8.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 50 + - uid: 854 components: - type: Transform - pos: -11.5,3.5 + pos: -2.5,-8.5 parent: 1 - - uid: 52 + - uid: 855 components: - type: Transform - pos: 12.5,2.5 + pos: -2.5,-9.5 parent: 1 - - uid: 88 + - uid: 856 components: - type: Transform - pos: -8.5,1.5 + pos: 3.5,-9.5 parent: 1 - - uid: 90 + - uid: 858 components: - type: Transform - pos: -0.5,9.5 + pos: 3.5,-8.5 parent: 1 - - uid: 94 + - uid: 859 components: - type: Transform - pos: 12.5,1.5 + pos: 4.5,-8.5 parent: 1 - - uid: 101 + - uid: 861 components: - type: Transform - pos: 9.5,1.5 + pos: 10.5,-8.5 parent: 1 - - uid: 102 + - uid: 862 components: - type: Transform - pos: 9.5,5.5 + pos: 9.5,-8.5 parent: 1 - - uid: 103 + - uid: 863 components: - type: Transform - pos: -3.5,-1.5 + pos: 9.5,-0.5 parent: 1 - - uid: 104 + - uid: 864 components: - type: Transform - pos: -2.5,-1.5 + pos: 10.5,-0.5 parent: 1 - - uid: 106 + - uid: 865 components: - type: Transform - pos: -8.5,3.5 + pos: 11.5,-0.5 parent: 1 - - uid: 108 + - uid: 867 components: - type: Transform - pos: 0.5,-0.5 + pos: 12.5,-0.5 parent: 1 - - uid: 111 + - uid: 868 components: - type: Transform - pos: -9.5,3.5 + pos: 7.5,-0.5 parent: 1 - - uid: 112 + - uid: 869 components: - type: Transform - pos: -10.5,3.5 + pos: -12.5,7.5 parent: 1 - - uid: 114 + - uid: 870 components: - type: Transform - pos: 0.5,-2.5 + pos: -13.5,6.5 parent: 1 - - uid: 118 + - uid: 871 components: - type: Transform - pos: 3.5,-1.5 + pos: -11.5,10.5 parent: 1 - - uid: 125 + - uid: 872 components: - type: Transform - pos: -11.5,2.5 + pos: -5.5,10.5 parent: 1 - - uid: 126 + - uid: 873 components: - type: Transform - pos: -11.5,1.5 + pos: -4.5,10.5 parent: 1 - - uid: 127 + - uid: 874 components: - type: Transform - pos: -8.5,2.5 + pos: -3.5,10.5 parent: 1 - - uid: 133 + - uid: 875 components: - type: Transform - pos: 9.5,2.5 + pos: -2.5,11.5 parent: 1 - - uid: 134 + - uid: 876 components: - type: Transform - pos: 9.5,4.5 + pos: 3.5,11.5 parent: 1 - - uid: 135 + - uid: 877 components: - type: Transform - pos: 12.5,3.5 + pos: 4.5,10.5 parent: 1 - - uid: 136 + - uid: 878 components: - type: Transform - pos: -5.5,9.5 + pos: 5.5,10.5 parent: 1 - - uid: 137 + - uid: 879 components: - type: Transform - pos: -5.5,8.5 + pos: 6.5,10.5 parent: 1 - - uid: 140 + - uid: 882 components: - type: Transform - pos: 2.5,5.5 + pos: 12.5,10.5 parent: 1 - - uid: 141 + - uid: 889 components: - type: Transform - pos: 1.5,5.5 + pos: 13.5,7.5 parent: 1 - - uid: 142 + - uid: 890 components: - type: Transform - pos: 0.5,5.5 + pos: 14.5,6.5 parent: 1 - - uid: 143 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1 - - uid: 144 +- proto: Autolathe + entities: + - uid: 76 components: - type: Transform - pos: -1.5,5.5 + pos: -0.5,1.5 parent: 1 - - uid: 147 +- proto: BannerCargo + entities: + - uid: 77 components: - type: Transform - pos: -8.5,4.5 + pos: -3.5,1.5 parent: 1 - - uid: 148 + - uid: 78 components: - type: Transform - pos: -8.5,5.5 + pos: 4.5,1.5 parent: 1 - - uid: 152 +- proto: BenchSofaCorpCorner + entities: + - uid: 2 components: - type: Transform - pos: 0.5,10.5 + rot: 1.5707963267948966 rad + pos: 7.5,9.5 parent: 1 - - uid: 153 + - type: Physics + canCollide: False + bodyType: Static + - type: Fixtures + fixtures: {} +- proto: BenchSofaCorpLeft + entities: + - uid: 100 components: - type: Transform - pos: 0.5,11.5 + pos: 9.5,9.5 parent: 1 - - uid: 154 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpMiddle + entities: + - uid: 597 components: - type: Transform - pos: 0.5,12.5 + pos: 8.5,9.5 parent: 1 - - uid: 156 + - type: Physics + bodyType: Static +- proto: BenchSofaCorpRight + entities: + - uid: 596 components: - type: Transform - pos: 3.5,5.5 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 parent: 1 - - uid: 157 + - type: Physics + bodyType: Static +- proto: BlastDoor + entities: + - uid: 82 components: - type: Transform - pos: 2.5,4.5 + pos: 11.5,0.5 parent: 1 - - uid: 158 + - type: DeviceLinkSink + links: + - 938 + - uid: 83 components: - type: Transform - pos: 0.5,9.5 + pos: -10.5,0.5 parent: 1 - - uid: 159 + - type: DeviceLinkSink + links: + - 943 + - uid: 85 components: - type: Transform - pos: 2.5,3.5 + pos: -9.5,0.5 parent: 1 - - uid: 160 + - type: DeviceLinkSink + links: + - 943 + - uid: 590 components: - type: Transform - pos: 2.5,7.5 + pos: 10.5,0.5 parent: 1 - - uid: 161 + - type: DeviceLinkSink + links: + - 938 + - uid: 591 components: - type: Transform - pos: 2.5,6.5 + rot: -1.5707963267948966 rad + pos: -13.5,4.5 parent: 1 - - uid: 162 + - type: DeviceLinkSink + links: + - 942 + - uid: 937 components: - type: Transform - pos: 2.5,2.5 + rot: 1.5707963267948966 rad + pos: 14.5,4.5 parent: 1 - - uid: 167 + - type: DeviceLinkSink + links: + - 939 +- proto: ButtonFrameCaution + entities: + - uid: 4 components: - type: Transform - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: -6.5,4.5 parent: 1 - - uid: 168 + - uid: 8 components: - type: Transform - pos: -3.5,5.5 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 parent: 1 - - uid: 169 + - uid: 80 components: - type: Transform - pos: -4.5,5.5 + rot: 1.5707963267948966 rad + pos: -9.5,9.5 parent: 1 - - uid: 171 + - uid: 81 components: - type: Transform - pos: 2.5,8.5 + rot: 3.141592653589793 rad + pos: 12.5,0.5 parent: 1 - - uid: 173 + - uid: 574 components: - type: Transform - pos: -4.5,1.5 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 parent: 1 - - uid: 174 + - uid: 576 components: - type: Transform - pos: -3.5,1.5 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 parent: 1 - - uid: 175 + - uid: 794 components: - type: Transform - pos: -2.5,1.5 + pos: 11.5,6.5 parent: 1 - - uid: 176 + - uid: 940 components: - type: Transform - pos: -1.5,1.5 + rot: 3.141592653589793 rad + pos: -11.5,0.5 parent: 1 - - uid: 177 + - uid: 941 components: - type: Transform - pos: -0.5,1.5 + pos: -10.5,6.5 parent: 1 - - uid: 178 +- proto: ButtonFrameGrey + entities: + - uid: 528 components: - type: Transform - pos: 0.5,1.5 + pos: 1.5,0.5 parent: 1 - - uid: 179 +- proto: CableApcExtension + entities: + - uid: 50 components: - type: Transform - pos: 1.5,1.5 + pos: -11.5,3.5 parent: 1 - - uid: 180 + - uid: 52 components: - type: Transform - pos: 2.5,1.5 + pos: 12.5,2.5 parent: 1 - - uid: 181 + - uid: 88 components: - type: Transform - pos: 3.5,1.5 + pos: -8.5,1.5 parent: 1 - - uid: 182 + - uid: 90 components: - type: Transform - pos: 4.5,1.5 + pos: -0.5,9.5 parent: 1 - - uid: 183 + - uid: 94 components: - type: Transform - pos: 5.5,1.5 + pos: 12.5,1.5 parent: 1 - - uid: 184 + - uid: 101 components: - type: Transform - pos: 9.5,8.5 + pos: 9.5,1.5 parent: 1 - - uid: 187 + - uid: 102 components: - type: Transform - pos: 5.5,5.5 + pos: 9.5,5.5 parent: 1 - - uid: 188 + - uid: 103 components: - type: Transform - pos: 4.5,5.5 + pos: -3.5,-1.5 parent: 1 - - uid: 190 + - uid: 104 components: - type: Transform - pos: 8.5,8.5 + pos: -2.5,-1.5 parent: 1 - - uid: 200 + - uid: 106 components: - type: Transform - pos: -1.5,9.5 + pos: -8.5,3.5 parent: 1 - - uid: 201 + - uid: 108 components: - type: Transform - pos: -2.5,9.5 + pos: 0.5,-0.5 parent: 1 - - uid: 204 + - uid: 111 components: - type: Transform - pos: 10.5,3.5 + pos: -9.5,3.5 parent: 1 - - uid: 205 + - uid: 112 components: - type: Transform - pos: 11.5,3.5 + pos: -10.5,3.5 parent: 1 - - uid: 206 + - uid: 114 components: - type: Transform - pos: 10.5,-6.5 + pos: 0.5,-2.5 parent: 1 - - uid: 207 + - uid: 118 components: - type: Transform - pos: 4.5,-6.5 + pos: 3.5,-1.5 parent: 1 - - uid: 208 + - uid: 125 components: - type: Transform - pos: -3.5,-6.5 + pos: -11.5,2.5 parent: 1 - - uid: 209 + - uid: 126 components: - type: Transform - pos: 0.5,-1.5 + pos: -11.5,1.5 parent: 1 - - uid: 210 + - uid: 127 components: - type: Transform - pos: 6.5,8.5 + pos: -8.5,2.5 parent: 1 - - uid: 211 + - uid: 133 components: - type: Transform - pos: 7.5,8.5 + pos: 9.5,2.5 parent: 1 - - uid: 212 + - uid: 134 components: - type: Transform - pos: 1.5,-1.5 + pos: 9.5,4.5 parent: 1 - - uid: 213 + - uid: 135 components: - type: Transform - pos: 2.5,-1.5 + pos: 12.5,3.5 parent: 1 - - uid: 214 + - uid: 136 components: - type: Transform - pos: -5.5,-5.5 + pos: -5.5,9.5 parent: 1 - - uid: 215 + - uid: 137 components: - type: Transform - pos: -4.5,-5.5 + pos: -5.5,8.5 parent: 1 - - uid: 216 + - uid: 140 components: - type: Transform - pos: 3.5,-5.5 + pos: 2.5,5.5 parent: 1 - - uid: 217 + - uid: 141 components: - type: Transform - pos: 11.5,8.5 + pos: 1.5,5.5 parent: 1 - - uid: 218 + - uid: 142 components: - type: Transform - pos: 2.5,-5.5 + pos: 0.5,5.5 parent: 1 - - uid: 219 + - uid: 143 components: - type: Transform - pos: 1.5,-5.5 + pos: -0.5,5.5 parent: 1 - - uid: 220 + - uid: 144 components: - type: Transform - pos: -0.5,-1.5 + pos: -1.5,5.5 parent: 1 - - uid: 221 + - uid: 147 components: - type: Transform - pos: -0.5,-5.5 + pos: -8.5,4.5 parent: 1 - - uid: 222 + - uid: 148 components: - type: Transform - pos: -1.5,-5.5 + pos: -8.5,5.5 parent: 1 - - uid: 223 + - uid: 152 components: - type: Transform - pos: -2.5,-5.5 + pos: 0.5,10.5 parent: 1 - - uid: 224 + - uid: 153 components: - type: Transform - pos: -3.5,-5.5 + pos: 0.5,11.5 parent: 1 - - uid: 225 + - uid: 154 components: - type: Transform - pos: -1.5,-1.5 + pos: 0.5,12.5 parent: 1 - - uid: 226 + - uid: 156 components: - type: Transform - pos: -6.5,8.5 + pos: 3.5,5.5 parent: 1 - - uid: 227 + - uid: 157 components: - type: Transform - pos: -7.5,8.5 + pos: 2.5,4.5 parent: 1 - - uid: 252 + - uid: 158 components: - type: Transform - pos: -9.5,-5.5 + pos: 0.5,9.5 parent: 1 - - uid: 253 + - uid: 159 components: - type: Transform - pos: -7.5,-5.5 + pos: 2.5,3.5 parent: 1 - - uid: 254 + - uid: 160 components: - type: Transform - pos: -10.5,-5.5 + pos: 2.5,7.5 parent: 1 - - uid: 255 + - uid: 161 components: - type: Transform - pos: 4.5,-5.5 + pos: 2.5,6.5 parent: 1 - - uid: 256 + - uid: 162 components: - type: Transform - pos: 5.5,-5.5 + pos: 2.5,2.5 parent: 1 - - uid: 257 + - uid: 167 components: - type: Transform - pos: -6.5,-5.5 + pos: -2.5,5.5 parent: 1 - - uid: 258 + - uid: 168 components: - type: Transform - pos: -8.5,-5.5 + pos: -3.5,5.5 parent: 1 - - uid: 264 + - uid: 169 components: - type: Transform - pos: 7.5,-5.5 + pos: -4.5,5.5 parent: 1 - - uid: 265 + - uid: 171 components: - type: Transform - pos: 6.5,-5.5 + pos: 2.5,8.5 parent: 1 - - uid: 381 + - uid: 173 components: - type: Transform - pos: 10.5,8.5 + pos: -4.5,1.5 parent: 1 - - uid: 382 + - uid: 174 components: - type: Transform - pos: 6.5,9.5 + pos: -3.5,1.5 parent: 1 - - uid: 383 + - uid: 175 components: - type: Transform - pos: 9.5,3.5 + pos: -2.5,1.5 parent: 1 - - uid: 388 + - uid: 176 components: - type: Transform - pos: 1.5,9.5 + pos: -1.5,1.5 parent: 1 - - uid: 429 + - uid: 177 components: - type: Transform - pos: 8.5,-5.5 + pos: -0.5,1.5 parent: 1 - - uid: 430 + - uid: 178 components: - type: Transform - pos: 9.5,-5.5 + pos: 0.5,1.5 parent: 1 - - uid: 431 + - uid: 179 components: - type: Transform - pos: 11.5,-5.5 + pos: 1.5,1.5 parent: 1 - - uid: 432 + - uid: 180 components: - type: Transform - pos: 10.5,-5.5 + pos: 2.5,1.5 parent: 1 - - uid: 826 + - uid: 181 components: - type: Transform - pos: -6.5,-3.5 + pos: 3.5,1.5 parent: 1 - - uid: 827 + - uid: 182 components: - type: Transform - pos: 7.5,-3.5 + pos: 4.5,1.5 parent: 1 - - uid: 828 + - uid: 183 components: - type: Transform - pos: 7.5,-4.5 + pos: 5.5,1.5 parent: 1 - - uid: 834 + - uid: 184 components: - type: Transform - pos: 12.5,-5.5 + pos: 9.5,8.5 parent: 1 - - uid: 846 + - uid: 187 components: - type: Transform - pos: 1.5,-6.5 + pos: 5.5,5.5 parent: 1 - - uid: 848 + - uid: 188 components: - type: Transform - pos: -0.5,-6.5 + pos: 4.5,5.5 parent: 1 - - uid: 857 + - uid: 190 components: - type: Transform - pos: -9.5,-6.5 + pos: 8.5,8.5 parent: 1 - - uid: 860 + - uid: 200 components: - type: Transform - pos: -11.5,-5.5 + pos: -1.5,9.5 parent: 1 - - uid: 866 + - uid: 201 components: - type: Transform - pos: -6.5,-4.5 + pos: -2.5,9.5 parent: 1 - - uid: 880 + - uid: 204 components: - type: Transform - pos: -0.5,-7.5 + pos: 10.5,3.5 parent: 1 - - uid: 881 + - uid: 205 components: - type: Transform - pos: -0.5,-8.5 + pos: 11.5,3.5 parent: 1 - - uid: 883 + - uid: 206 components: - type: Transform - pos: 1.5,-8.5 + pos: 10.5,-6.5 parent: 1 - - uid: 884 + - uid: 207 components: - type: Transform - pos: 1.5,-7.5 + pos: 4.5,-6.5 parent: 1 -- proto: CableHV - entities: - - uid: 228 + - uid: 208 components: - type: Transform - pos: -6.5,5.5 + pos: -3.5,-6.5 parent: 1 - - uid: 229 + - uid: 209 components: - type: Transform - pos: -4.5,6.5 + pos: 0.5,-1.5 parent: 1 - - uid: 230 + - uid: 210 components: - type: Transform - pos: -6.5,8.5 + pos: 6.5,8.5 parent: 1 - - uid: 231 + - uid: 211 components: - type: Transform - pos: -7.5,5.5 + pos: 7.5,8.5 parent: 1 - - uid: 232 + - uid: 212 components: - type: Transform - pos: -9.5,8.5 + pos: 1.5,-1.5 parent: 1 - - uid: 233 + - uid: 213 components: - type: Transform - pos: -9.5,9.5 + pos: 2.5,-1.5 parent: 1 - - uid: 234 + - uid: 214 components: - type: Transform - pos: -8.5,9.5 + pos: -5.5,-5.5 parent: 1 - - uid: 235 + - uid: 215 components: - type: Transform - pos: -7.5,9.5 + pos: -4.5,-5.5 parent: 1 - - uid: 236 + - uid: 216 components: - type: Transform - pos: -5.5,7.5 + pos: 3.5,-5.5 parent: 1 - - uid: 237 + - uid: 218 components: - type: Transform - pos: -6.5,9.5 + pos: 2.5,-5.5 parent: 1 - - uid: 238 + - uid: 219 components: - type: Transform - pos: -4.5,5.5 + pos: 1.5,-5.5 parent: 1 - - uid: 239 + - uid: 220 components: - type: Transform - pos: -5.5,5.5 + pos: -0.5,-1.5 parent: 1 - - uid: 240 + - uid: 221 components: - type: Transform - pos: -7.5,6.5 + pos: -0.5,-5.5 parent: 1 - - uid: 241 + - uid: 222 components: - type: Transform - pos: -5.5,8.5 + pos: -1.5,-5.5 parent: 1 - - uid: 242 + - uid: 223 components: - type: Transform - pos: -4.5,8.5 + pos: -2.5,-5.5 parent: 1 - - uid: 243 + - uid: 224 components: - type: Transform - pos: -4.5,7.5 + pos: -3.5,-5.5 parent: 1 -- proto: CableMV - entities: - - uid: 54 + - uid: 225 components: - type: Transform - pos: 6.5,9.5 + pos: -1.5,-1.5 parent: 1 - - uid: 98 + - uid: 226 components: - type: Transform - pos: -2.5,9.5 + pos: -6.5,8.5 parent: 1 - - uid: 113 + - uid: 227 components: - type: Transform - pos: 0.5,5.5 + pos: -7.5,8.5 parent: 1 - - uid: 115 + - uid: 237 components: - type: Transform - pos: -0.5,7.5 + pos: -8.5,8.5 parent: 1 - - uid: 116 + - uid: 252 components: - type: Transform - pos: 0.5,7.5 + pos: -9.5,-5.5 parent: 1 - - uid: 120 + - uid: 253 components: - type: Transform - pos: 0.5,4.5 + pos: -7.5,-5.5 parent: 1 - - uid: 146 + - uid: 254 components: - type: Transform - pos: 9.5,5.5 + pos: -10.5,-5.5 parent: 1 - - uid: 165 + - uid: 255 components: - type: Transform - pos: -8.5,3.5 + pos: 4.5,-5.5 parent: 1 - - uid: 244 + - uid: 256 components: - type: Transform - pos: -7.5,6.5 + pos: 5.5,-5.5 parent: 1 - - uid: 245 + - uid: 257 components: - type: Transform - pos: -7.5,7.5 + pos: -6.5,-5.5 parent: 1 - - uid: 246 + - uid: 258 components: - type: Transform - pos: -6.5,7.5 + pos: -8.5,-5.5 parent: 1 - - uid: 247 + - uid: 264 components: - type: Transform - pos: -5.5,7.5 + pos: 7.5,-5.5 parent: 1 - - uid: 248 + - uid: 265 components: - type: Transform - pos: -5.5,6.5 + pos: 6.5,-5.5 parent: 1 - - uid: 249 + - uid: 382 components: - type: Transform - pos: -5.5,5.5 + pos: 6.5,9.5 parent: 1 - - uid: 250 + - uid: 383 components: - type: Transform - pos: -5.5,4.5 + pos: 9.5,3.5 parent: 1 - - uid: 251 + - uid: 388 components: - type: Transform - pos: -5.5,3.5 + pos: 1.5,9.5 parent: 1 - - uid: 259 + - uid: 429 components: - type: Transform - pos: 0.5,1.5 + pos: 8.5,-5.5 parent: 1 - - uid: 260 + - uid: 430 components: - type: Transform - pos: 0.5,0.5 + pos: 9.5,-5.5 parent: 1 - - uid: 261 + - uid: 431 components: - type: Transform - pos: 0.5,-0.5 + pos: 11.5,-5.5 parent: 1 - - uid: 262 + - uid: 432 components: - type: Transform - pos: 0.5,-1.5 + pos: 10.5,-5.5 parent: 1 - - uid: 263 + - uid: 826 components: - type: Transform - pos: 0.5,-2.5 + pos: -6.5,-3.5 parent: 1 - - uid: 266 + - uid: 827 components: - type: Transform - pos: -7.5,3.5 + pos: 7.5,-3.5 parent: 1 - - uid: 268 + - uid: 828 components: - type: Transform - pos: -8.5,4.5 + pos: 7.5,-4.5 parent: 1 - - uid: 269 + - uid: 834 components: - type: Transform - pos: -8.5,5.5 + pos: 12.5,-5.5 parent: 1 - - uid: 270 + - uid: 846 components: - type: Transform - pos: 0.5,-3.5 + pos: 1.5,-6.5 parent: 1 - - uid: 277 + - uid: 848 components: - type: Transform - pos: -6.5,3.5 + pos: -0.5,-6.5 parent: 1 - - uid: 278 + - uid: 857 components: - type: Transform - pos: 9.5,3.5 + pos: -9.5,-6.5 parent: 1 - - uid: 279 + - uid: 860 components: - type: Transform - pos: 9.5,4.5 + pos: -11.5,-5.5 parent: 1 - - uid: 280 + - uid: 866 components: - type: Transform - pos: 8.5,3.5 + pos: -6.5,-4.5 parent: 1 - - uid: 283 + - uid: 880 components: - type: Transform - pos: -0.5,-1.5 + pos: -0.5,-7.5 parent: 1 - - uid: 284 + - uid: 881 components: - type: Transform - pos: -1.5,-1.5 + pos: -0.5,-8.5 parent: 1 - - uid: 285 + - uid: 883 components: - type: Transform - pos: -2.5,-1.5 + pos: 1.5,-8.5 parent: 1 - - uid: 286 + - uid: 884 components: - type: Transform - pos: -3.5,-1.5 + pos: 1.5,-7.5 parent: 1 - - uid: 287 +- proto: CableHV + entities: + - uid: 40 components: - type: Transform - pos: -4.5,5.5 + pos: -10.5,9.5 parent: 1 - - uid: 288 + - uid: 43 components: - type: Transform - pos: -3.5,5.5 + pos: -10.5,8.5 parent: 1 - - uid: 289 + - uid: 44 components: - type: Transform - pos: -2.5,5.5 + pos: -9.5,8.5 parent: 1 - - uid: 290 + - uid: 89 components: - type: Transform - pos: -1.5,5.5 + pos: -7.5,8.5 parent: 1 - - uid: 291 + - uid: 229 components: - type: Transform - pos: -1.5,6.5 + pos: -4.5,6.5 parent: 1 - - uid: 292 + - uid: 230 components: - type: Transform - pos: -1.5,7.5 + pos: -6.5,8.5 parent: 1 - - uid: 293 + - uid: 236 components: - type: Transform - pos: -1.5,9.5 + pos: -5.5,7.5 parent: 1 - - uid: 294 + - uid: 241 components: - type: Transform - pos: -1.5,8.5 + pos: -5.5,8.5 parent: 1 - - uid: 295 + - uid: 242 components: - type: Transform - pos: 2.5,6.5 + pos: -4.5,8.5 parent: 1 - - uid: 296 + - uid: 243 components: - type: Transform - pos: 2.5,5.5 + pos: -4.5,7.5 parent: 1 - - uid: 297 + - uid: 799 components: - type: Transform - pos: 3.5,5.5 + pos: -10.5,7.5 parent: 1 - - uid: 298 + - uid: 962 components: - type: Transform - pos: 0.5,6.5 + pos: -8.5,8.5 parent: 1 - - uid: 299 +- proto: CableMV + entities: + - uid: 39 components: - type: Transform - pos: 4.5,5.5 + pos: 2.5,4.5 parent: 1 - - uid: 300 + - uid: 54 components: - type: Transform - pos: 5.5,5.5 + pos: 6.5,9.5 parent: 1 - - uid: 301 + - uid: 96 components: - type: Transform - pos: 2.5,7.5 + pos: -0.5,4.5 parent: 1 - - uid: 302 + - uid: 98 components: - type: Transform - pos: 2.5,8.5 + pos: -2.5,9.5 parent: 1 - - uid: 303 + - uid: 116 components: - type: Transform - pos: 6.5,3.5 + pos: 1.5,4.5 parent: 1 - - uid: 304 + - uid: 120 components: - type: Transform - pos: 6.5,4.5 + pos: 0.5,4.5 parent: 1 - - uid: 305 + - uid: 146 components: - type: Transform - pos: 6.5,5.5 + pos: 9.5,5.5 parent: 1 - - uid: 306 + - uid: 165 components: - type: Transform - pos: 6.5,6.5 + pos: -8.5,3.5 parent: 1 - - uid: 307 + - uid: 197 components: - type: Transform - pos: 6.5,7.5 + pos: -4.5,6.5 parent: 1 - - uid: 308 + - uid: 217 components: - type: Transform - pos: 6.5,8.5 + pos: -2.5,4.5 parent: 1 - - uid: 309 + - uid: 228 components: - type: Transform - pos: 7.5,3.5 + pos: -3.5,4.5 parent: 1 - - uid: 310 + - uid: 231 components: - type: Transform - pos: 0.5,2.5 + pos: -4.5,4.5 parent: 1 - - uid: 343 + - uid: 247 components: - type: Transform - pos: 0.5,3.5 + pos: -5.5,7.5 parent: 1 - - uid: 344 + - uid: 248 components: - type: Transform - pos: 1.5,7.5 + pos: -5.5,6.5 parent: 1 - - uid: 569 + - uid: 249 components: - type: Transform - pos: -5.5,9.5 + pos: -5.5,5.5 parent: 1 - - uid: 618 + - uid: 250 components: - type: Transform - pos: -5.5,8.5 + pos: -5.5,4.5 parent: 1 - - uid: 804 + - uid: 251 components: - type: Transform - pos: 0.5,-4.5 + pos: -5.5,3.5 parent: 1 - - uid: 807 + - uid: 259 components: - type: Transform - pos: 0.5,-5.5 + pos: 0.5,1.5 parent: 1 - - uid: 808 + - uid: 260 components: - type: Transform - pos: -0.5,-5.5 + pos: 0.5,0.5 parent: 1 - - uid: 809 + - uid: 261 components: - type: Transform - pos: -4.5,-5.5 + pos: 0.5,-0.5 parent: 1 - - uid: 810 + - uid: 262 components: - type: Transform - pos: -6.5,-5.5 + pos: 0.5,-1.5 parent: 1 - - uid: 811 + - uid: 263 components: - type: Transform - pos: -5.5,-5.5 + pos: 0.5,-2.5 parent: 1 - - uid: 812 + - uid: 266 components: - type: Transform - pos: -3.5,-5.5 + pos: -7.5,3.5 parent: 1 - - uid: 813 + - uid: 268 components: - type: Transform - pos: -6.5,-3.5 + pos: -8.5,4.5 parent: 1 - - uid: 814 + - uid: 269 components: - type: Transform - pos: -6.5,-4.5 + pos: -8.5,5.5 parent: 1 - - uid: 815 + - uid: 270 components: - type: Transform - pos: 1.5,-5.5 + pos: 0.5,-3.5 parent: 1 - - uid: 816 + - uid: 277 components: - type: Transform - pos: 3.5,-5.5 + pos: -6.5,3.5 parent: 1 - - uid: 817 + - uid: 278 components: - type: Transform - pos: -1.5,-5.5 + pos: 9.5,3.5 parent: 1 - - uid: 818 + - uid: 279 components: - type: Transform - pos: 2.5,-5.5 + pos: 9.5,4.5 parent: 1 - - uid: 819 + - uid: 280 components: - type: Transform - pos: 4.5,-5.5 + pos: 8.5,3.5 parent: 1 - - uid: 820 + - uid: 283 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 820 components: - type: Transform pos: -2.5,-5.5 @@ -2490,76 +2695,195 @@ entities: - type: Transform pos: -2.5,4.5 parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 340 + - uid: 599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,8.5 + pos: -8.5,-8.5 parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 341 + - uid: 603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 + pos: -9.5,-8.5 parent: 1 -- proto: Cigar - entities: - - uid: 197 + - uid: 802 components: - type: Transform - pos: 9.21195,9.714891 + pos: -3.5,-8.5 parent: 1 -- proto: CigarSpent - entities: - - uid: 198 + - uid: 829 components: - type: Transform - pos: 9.52445,9.631557 + pos: -2.5,-8.5 parent: 1 -- proto: ComfyChair - entities: - - uid: 342 + - uid: 830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 + pos: -2.5,-9.5 parent: 1 -- proto: ComputerTabletopCrewMonitoring - entities: - - uid: 196 + - uid: 831 components: - type: Transform - pos: 8.5,9.5 + pos: 3.5,-9.5 parent: 1 -- proto: ComputerTabletopRadar - entities: - - uid: 384 + - uid: 832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,12.5 + pos: 3.5,-8.5 parent: 1 -- proto: ComputerTabletopShuttle - entities: - - uid: 385 + - uid: 833 components: - type: Transform - pos: 0.5,13.5 + pos: 4.5,-8.5 parent: 1 -- proto: ComputerTabletopStationRecords - entities: - - uid: 203 + - uid: 835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 + pos: 9.5,-8.5 parent: 1 -- proto: ComputerWallmountWithdrawBankATM - entities: + - uid: 836 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 539 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 +- proto: ComfyChair + entities: + - uid: 342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 385 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 238 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 +- proto: ComputerWallmountWithdrawBankATM + entities: - uid: 386 components: - type: Transform @@ -2591,151 +2915,473 @@ entities: - uid: 348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,4.5 + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 650 + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 650 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 650 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 649 + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 649 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 649 +- proto: ConveyorBeltAssembly + entities: + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.366159,5.625069 + parent: 1 + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.897409,5.636788 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.131784,5.636788 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.488132,5.5664754 + parent: 1 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.054539,5.5664754 + parent: 1 + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.32407,5.5664754 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 360 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 +- proto: DisposalBend + entities: + - uid: 968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1 + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 +- proto: DisposalJunction + entities: + - uid: 984 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 1015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 1 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 1 + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,8.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + - uid: 982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + - uid: 983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 1 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1 + - uid: 991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: -4.5,-4.5 parent: 1 - - type: DeviceLinkSink - links: - - 650 - - uid: 349 + - uid: 1007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,4.5 + pos: -4.5,-3.5 parent: 1 - - type: DeviceLinkSink - links: - - 650 - - uid: 350 + - uid: 1008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,4.5 + pos: -4.5,-2.5 parent: 1 - - type: DeviceLinkSink - links: - - 650 - - uid: 351 + - uid: 1009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,4.5 + pos: -4.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 649 - - uid: 352 + - uid: 1010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,4.5 + pos: -4.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 649 - - uid: 353 + - uid: 1011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,4.5 + pos: -4.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 649 -- proto: ConveyorBeltAssembly - entities: - - uid: 354 + - uid: 1012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.366159,5.625069 + pos: -4.5,1.5 parent: 1 - - uid: 355 + - uid: 1013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.897409,5.636788 + pos: -4.5,2.5 parent: 1 - - uid: 356 + - uid: 1017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.131784,5.636788 + rot: 1.5707963267948966 rad + pos: -6.5,3.5 parent: 1 - - uid: 357 +- proto: DisposalTrunk + entities: + - uid: 976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.488132,5.5664754 + pos: 11.5,9.5 parent: 1 - - uid: 358 + - uid: 979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.054539,5.5664754 + rot: 1.5707963267948966 rad + pos: 5.5,6.5 parent: 1 - - uid: 359 + - uid: 998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.32407,5.5664754 + pos: 8.5,4.5 parent: 1 -- proto: CrateEmptySpawner - entities: - - uid: 360 + - uid: 1001 components: - type: Transform - pos: 0.5,4.5 + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 parent: 1 - - uid: 361 + - uid: 1018 components: - type: Transform - pos: -1.5,3.5 + pos: -7.5,4.5 parent: 1 - - uid: 362 +- proto: DisposalUnit + entities: + - uid: 113 components: - type: Transform - pos: 3.5,4.5 + pos: 5.5,6.5 parent: 1 - - uid: 363 + - uid: 956 components: - type: Transform - pos: 10.5,1.5 + pos: -1.5,-6.5 parent: 1 - - uid: 364 + - uid: 957 components: - type: Transform - pos: -10.5,3.5 + pos: 8.5,4.5 parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 163 + - uid: 958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 + pos: -7.5,4.5 parent: 1 - - uid: 164 + - uid: 959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,1.5 + pos: 1.5,1.5 parent: 1 -- proto: DoubleEmergencyOxygenTankFilled +- proto: DisposalYJunction entities: - - uid: 191 + - uid: 1014 components: - type: Transform - pos: 11.558004,7.628132 + rot: 3.141592653589793 rad + pos: -5.5,3.5 parent: 1 - - type: GasTank - toggleActionEntity: 192 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 192 - proto: EmergencyLight entities: - uid: 84 @@ -2782,25 +3428,25 @@ entities: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 467 + - uid: 472 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,7.5 + pos: 1.5,12.5 parent: 1 - - uid: 472 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,12.5 + pos: -6.5,6.5 parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 155 + - uid: 1030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,6.5 + rot: 3.141592653589793 rad + pos: -8.5,6.5 parent: 1 - proto: FaxMachineShip entities: @@ -2811,6 +3457,11 @@ entities: parent: 1 - proto: Firelock entities: + - uid: 245 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 - uid: 366 components: - type: Transform @@ -2858,18 +3509,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 - - uid: 374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - - uid: 375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 1 - uid: 376 components: - type: Transform @@ -2882,8 +3521,18 @@ entities: rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 1 + - uid: 955 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 - proto: FirelockGlass entities: + - uid: 613 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 - uid: 901 components: - type: Transform @@ -2938,13 +3587,19 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 -- proto: FlippoLighter +- proto: GasMixerOn entities: - - uid: 100 + - uid: 132 components: - type: Transform - pos: 9.83695,9.579475 + rot: 1.5707963267948966 rad + pos: -6.5,7.5 parent: 1 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 508 @@ -2953,27 +3608,18 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend entities: - - uid: 110 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 139 + - uid: 3 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-4.5 + rot: 1.5707963267948966 rad + pos: -7.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 189 components: - type: Transform @@ -2989,15 +3635,7 @@ entities: pos: 1.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 435 components: - type: Transform @@ -3006,47 +3644,39 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 458 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 531 + - uid: 449 components: - type: Transform - pos: -4.5,8.5 + pos: -5.5,8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 910 +- proto: GasPipeFourway + entities: + - uid: 138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + pos: -4.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasPipeFourway + color: '#0055CCFF' +- proto: GasPipeStraight entities: - - uid: 404 + - uid: 47 components: - type: Transform - pos: -5.5,3.5 + rot: -1.5707963267948966 rad + pos: -7.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' -- proto: GasPipeStraight - entities: + color: '#990000FF' - uid: 95 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 + pos: -4.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 97 components: - type: Transform @@ -3055,22 +3685,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 99 + - uid: 105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 105 + color: '#0055CCFF' + - uid: 109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 + pos: 3.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#990000FF' - uid: 119 components: - type: Transform @@ -3078,7 +3707,7 @@ entities: pos: 5.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 121 components: - type: Transform @@ -3102,7 +3731,7 @@ entities: pos: 5.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 124 components: - type: Transform @@ -3110,7 +3739,7 @@ entities: pos: 5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 131 components: - type: Transform @@ -3119,17 +3748,34 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 138 + - uid: 166 components: - type: Transform - pos: -5.5,2.5 + pos: -0.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 166 + color: '#990000FF' + - uid: 191 components: - type: Transform - pos: -0.5,11.5 + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -3139,14 +3785,14 @@ entities: pos: 1.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 272 components: - type: Transform pos: 1.5,10.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 275 components: - type: Transform @@ -3154,7 +3800,7 @@ entities: pos: 2.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 276 components: - type: Transform @@ -3162,7 +3808,7 @@ entities: pos: 2.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 281 components: - type: Transform @@ -3170,15 +3816,38 @@ entities: pos: 2.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,3.5 + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 297 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#990000FF' - uid: 380 components: - type: Transform @@ -3186,7 +3855,7 @@ entities: pos: 1.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 390 components: - type: Transform @@ -3202,7 +3871,7 @@ entities: pos: 2.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 393 components: - type: Transform @@ -3211,13 +3880,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 394 - components: - - type: Transform - pos: -5.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#98FF98FF' - uid: 396 components: - type: Transform @@ -3225,7 +3887,7 @@ entities: pos: -4.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 397 components: - type: Transform @@ -3249,7 +3911,7 @@ entities: pos: 6.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 403 components: - type: Transform @@ -3257,7 +3919,15 @@ entities: pos: -3.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 406 components: - type: Transform @@ -3298,6 +3968,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 412 components: - type: Transform @@ -3330,14 +4008,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 416 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 417 components: - type: Transform @@ -3356,8 +4026,7 @@ entities: - uid: 419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -5.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -3369,10 +4038,18 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 423 components: - type: Transform - pos: -4.5,5.5 + pos: -5.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -3384,6 +4061,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 425 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 427 components: - type: Transform @@ -3407,15 +4091,15 @@ entities: pos: 4.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 + rot: 3.141592653589793 rad + pos: -4.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 438 components: - type: Transform @@ -3423,7 +4107,7 @@ entities: pos: -1.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 439 components: - type: Transform @@ -3431,7 +4115,7 @@ entities: pos: -0.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 440 components: - type: Transform @@ -3439,7 +4123,7 @@ entities: pos: -0.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 441 components: - type: Transform @@ -3447,7 +4131,7 @@ entities: pos: -1.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 442 components: - type: Transform @@ -3455,7 +4139,7 @@ entities: pos: 7.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 443 components: - type: Transform @@ -3463,15 +4147,15 @@ entities: pos: -2.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#990000FF' - uid: 445 components: - type: Transform @@ -3479,7 +4163,7 @@ entities: pos: -4.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 446 components: - type: Transform @@ -3487,21 +4171,23 @@ entities: pos: -4.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 448 components: - type: Transform - pos: -4.5,3.5 + rot: 3.141592653589793 rad + pos: -4.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 449 + color: '#0055CCFF' + - uid: 452 components: - type: Transform - pos: -4.5,4.5 + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 454 components: - type: Transform @@ -3509,7 +4195,7 @@ entities: pos: 3.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 455 components: - type: Transform @@ -3524,133 +4210,341 @@ entities: pos: -6.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 457 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#990000FF' + - uid: 458 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,3.5 + pos: -5.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#990000FF' + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 465 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 506 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 781 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 789 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 464 + color: '#990000FF' + - uid: 926 components: - type: Transform - pos: -5.5,4.5 + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 465 + color: '#990000FF' + - uid: 927 components: - type: Transform - pos: -0.5,10.5 + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 509 + - uid: 928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,8.5 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 510 + - uid: 933 components: - type: Transform - pos: -4.5,7.5 + pos: -2.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 530 + color: '#0055CCFF' + - uid: 934 components: - type: Transform - pos: -4.5,6.5 + pos: -2.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 911 + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 91 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-4.5 + pos: -4.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 912 + color: '#0055CCFF' + - uid: 99 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: 5.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 913 + - uid: 139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-6.5 + pos: -2.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 914 + color: '#0055CCFF' + - uid: 170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-6.5 + pos: -1.5,9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 915 + - uid: 274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + rot: -1.5707963267948966 rad + pos: 2.5,9.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 916 + color: '#0055CCFF' + - uid: 289 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + pos: 6.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeTJunction - entities: - - uid: 170 + - uid: 344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 + pos: -8.5,8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 274 + - uid: 378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 + pos: 3.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#990000FF' - uid: 379 components: - type: Transform @@ -3658,7 +4552,7 @@ entities: pos: 2.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 389 components: - type: Transform @@ -3666,7 +4560,15 @@ entities: pos: 5.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 398 components: - type: Transform @@ -3686,24 +4588,16 @@ entities: - uid: 405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 411 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 421 + color: '#990000FF' + - uid: 416 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,2.5 + pos: 4.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -3723,14 +4617,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 447 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 453 components: - type: Transform @@ -3745,149 +4631,189 @@ entities: pos: 2.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' -- proto: GasPort - entities: - - uid: 468 + color: '#0055CCFF' + - uid: 930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 + pos: -3.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#98FF98FF' -- proto: GasPressurePump + color: '#0055CCFF' +- proto: GasPort entities: - - uid: 450 + - uid: 199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 + rot: 3.141592653589793 rad + pos: -7.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 461 + color: '#0055CCFF' + - uid: 300 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,9.5 + pos: -6.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#990000FF' -- proto: GasVentPump + color: '#0055CCFF' +- proto: GasPressurePumpOn entities: - - uid: 109 + - uid: 461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 + rot: 1.5707963267948966 rad + pos: -5.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 117 + color: '#0055CCFF' +- proto: GasPressurePumpOnMax + entities: + - uid: 509 components: - type: Transform - pos: 5.5,8.5 + rot: 3.141592653589793 rad + pos: -6.5,9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 128 + color: '#990000FF' +- proto: GasVentPump + entities: + - uid: 117 components: - type: Transform - pos: -5.5,8.5 + pos: 5.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1027 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1028 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 185 components: - type: Transform pos: 1.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1033 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 198 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 273 components: - type: Transform pos: 2.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1033 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 392 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1025 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - uid: 400 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1026 - type: AtmosPipeColor - color: '#98FF98FF' - - uid: 460 + color: '#0055CCFF' + - uid: 892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1031 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + pos: 8.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1031 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1031 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 529 - type: AtmosPipeColor - color: '#98FF98FF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 96 + - uid: 110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 + rot: -1.5707963267948966 rad + pos: 11.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1027 - type: AtmosPipeColor color: '#990000FF' - - uid: 107 + - uid: 128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 6.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1027 - type: AtmosPipeColor color: '#990000FF' - uid: 130 @@ -3896,8 +4822,9 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1028 - type: AtmosPipeColor color: '#990000FF' - uid: 186 @@ -3905,28 +4832,20 @@ entities: - type: Transform pos: -1.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 345 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1033 - type: AtmosPipeColor color: '#990000FF' - - uid: 378 + - uid: 298 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -10.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1029 - type: AtmosPipeColor color: '#990000FF' - uid: 395 @@ -3935,8 +4854,9 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1026 - type: AtmosPipeColor color: '#990000FF' - uid: 422 @@ -3945,8 +4865,9 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1025 - type: AtmosPipeColor color: '#990000FF' - uid: 433 @@ -3954,16 +4875,71 @@ entities: - type: Transform pos: -0.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: DeviceNetwork + deviceLists: + - 1033 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1031 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1031 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 932 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1031 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 529 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1029 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 89 + - uid: 964 components: - type: Transform - pos: -7.5,8.5 + pos: -8.5,7.5 parent: 1 - proto: Grille entities: @@ -4111,62 +5087,73 @@ entities: - type: Transform pos: 4.5,-7.5 parent: 1 -- proto: GunSafeShuttleT1Spawner +- proto: Gyroscope entities: - - uid: 506 + - uid: 791 components: - type: Transform - pos: 8.5,6.5 + pos: -2.5,-8.5 parent: 1 -- proto: Gyroscope - entities: - - uid: 91 + - uid: 793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-0.5 + pos: 3.5,-8.5 parent: 1 - - uid: 452 +- proto: HospitalCurtainsOpen + entities: + - uid: 609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-0.5 + pos: 11.5,9.5 parent: 1 -- proto: LockerCaptainFilled +- proto: LockerFreezerBase entities: - - uid: 132 + - uid: 239 components: - type: Transform - pos: -1.5,10.5 + pos: 5.5,8.5 parent: 1 -- proto: LockerMercenaryFilled +- proto: LockerQuarterMasterFilled entities: - - uid: 195 + - uid: 510 components: - type: Transform - pos: 5.5,7.5 + pos: -1.5,10.5 parent: 1 -- proto: LockerQuarterMasterFilled +- proto: MaterialReclaimer entities: - - uid: 511 + - uid: 540 components: - type: Transform - pos: 3.5,7.5 + pos: -7.5,9.5 parent: 1 - proto: Multitool entities: - uid: 512 components: - type: Transform - pos: 3.280076,1.401608 + pos: 3.280076,1.401608 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 194 + components: + - type: Transform + anchored: True + pos: -7.5,6.5 parent: 1 -- proto: NFAshtray + - type: Physics + bodyType: Static +- proto: OxygenCanister entities: - - uid: 193 + - uid: 299 components: - type: Transform - pos: 9.420283,9.391975 + anchored: True + pos: -6.5,6.5 parent: 1 + - type: Physics + bodyType: Static - proto: PaperBin10 entities: - uid: 513 @@ -4188,50 +5175,40 @@ entities: parent: 1 - proto: PlasticFlapsAirtightClear entities: - - uid: 516 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,4.5 - parent: 1 - uid: 517 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,4.5 parent: 1 -- proto: PosterContrabandBreadLies - entities: - - uid: 518 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 1 -- proto: PosterContrabandHaveaPuff +- proto: PlasticFlapsClear entities: - - uid: 519 + - uid: 381 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,10.5 + rot: -1.5707963267948966 rad + pos: -13.5,4.5 parent: 1 -- proto: PosterLegitBlessThisSpess +- proto: PortableGeneratorSuperPacmanShuttle entities: - - uid: 520 + - uid: 45 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,5.5 + pos: -10.5,9.5 parent: 1 -- proto: PosterLegitBuild - entities: - - uid: 521 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,5.5 + pos: -10.5,7.5 parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static - proto: PosterLegitCarpMount entities: - uid: 522 @@ -4240,188 +5217,104 @@ entities: rot: 3.141592653589793 rad pos: 1.5,8.5 parent: 1 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,10.5 - parent: 1 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 524 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 1 -- proto: PosterLegitNoTouching - entities: - - uid: 525 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 1 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 526 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 1 -- proto: PosterLegitSecWatch - entities: - - uid: 527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,6.5 - parent: 1 -- proto: PosterLegitSMHardhats +- proto: PottedPlantRandom entities: - - uid: 528 + - uid: 1023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 + pos: 2.5,-6.5 parent: 1 - proto: Poweredlight entities: - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - uid: 473 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -0.5,7.5 - parent: 1 - uid: 474 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 1 - - uid: 529 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 2.5,10.5 - parent: 1 - uid: 532 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - uid: 533 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,9.5 parent: 1 - uid: 534 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,5.5 parent: 1 - uid: 535 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-0.5 parent: 1 - uid: 536 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,1.5 parent: 1 - uid: 537 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,5.5 parent: 1 - uid: 538 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,9.5 parent: 1 + - uid: 614 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 - uid: 797 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 1 - uid: 798 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-6.5 + pos: 10.5,-4.5 parent: 1 - - uid: 799 + - uid: 801 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 1 - - uid: 800 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-4.5 + pos: 0.5,9.5 parent: 1 - - uid: 801 + - uid: 960 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,-4.5 + pos: -9.5,-4.5 parent: 1 - proto: PoweredSmallLight entities: - - uid: 539 + - uid: 374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 parent: 1 - - uid: 540 + - uid: 473 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-1.5 + pos: -10.5,8.5 parent: 1 - uid: 541 components: @@ -4435,24 +5328,26 @@ entities: rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 1 - - uid: 803 + - uid: 615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 parent: 1 -- proto: Rack - entities: - - uid: 199 + - uid: 800 components: - type: Transform - pos: 10.5,7.5 + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - - uid: 466 + - uid: 803 components: - type: Transform - pos: 11.5,7.5 + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 parent: 1 +- proto: Rack + entities: - uid: 543 components: - type: Transform @@ -4483,11 +5378,6 @@ entities: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 549 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1 - uid: 550 components: - type: Transform @@ -4513,6 +5403,58 @@ entities: - type: Transform pos: 12.5,5.5 parent: 1 + - uid: 954 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 450 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 - proto: ReinforcedWindow entities: - uid: 555 @@ -4558,105 +5500,182 @@ entities: - uid: 563 components: - type: Transform - pos: -9.5,-7.5 + pos: -9.5,-7.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 +- proto: SheetUranium + entities: + - uid: 48 + components: + - type: Transform + pos: -10.492079,7.4558206 + parent: 1 + - type: Stack + count: 15 +- proto: SheetUranium1 + entities: + - uid: 963 + components: + - type: Transform + pos: -10.538954,9.408945 + parent: 1 + - type: Stack + count: 15 +- proto: ShuttersNormal + entities: + - uid: 525 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 571 + - uid: 526 + components: + - type: Transform + pos: -1.5,-3.5 parent: 1 - - uid: 564 + - type: DeviceLinkSink + links: + - 571 + - uid: 527 components: - type: Transform - pos: -7.5,-7.5 + pos: -2.5,-3.5 parent: 1 - - uid: 565 + - type: DeviceLinkSink + links: + - 571 + - uid: 549 components: - type: Transform - pos: 3.5,-7.5 + pos: 0.5,-3.5 parent: 1 - - uid: 566 + - type: DeviceLinkSink + links: + - 571 + - uid: 570 components: - type: Transform - pos: 10.5,-7.5 + pos: 1.5,-3.5 parent: 1 - - uid: 567 + - type: DeviceLinkSink + links: + - 571 + - uid: 573 components: - type: Transform - pos: 9.5,-7.5 + pos: 2.5,-3.5 parent: 1 - - uid: 568 + - type: DeviceLinkSink + links: + - 571 + - uid: 949 components: - type: Transform - pos: 11.5,-7.5 + pos: 3.5,-3.5 parent: 1 -- proto: ShuttersNormal + - type: DeviceLinkSink + links: + - 571 +- proto: ShuttersNormalOpen entities: - - uid: 570 + - uid: 192 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,-3.5 + pos: -4.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 591 - - uid: 571 + - 947 + - uid: 193 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,-3.5 + pos: -6.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 591 - - uid: 572 + - 944 + - uid: 775 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-3.5 + pos: -6.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 591 - - uid: 573 + - 944 + - uid: 776 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,-3.5 + pos: -4.5,-0.5 parent: 1 - type: DeviceLinkSink links: - - 591 - - uid: 574 + - 947 + - uid: 950 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,-3.5 + pos: 5.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 591 - - uid: 575 + - 945 + - uid: 951 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -2.5,-3.5 + pos: 5.5,-0.5 parent: 1 - type: DeviceLinkSink links: - - 591 - - uid: 576 + - 945 + - uid: 952 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,-3.5 + pos: 7.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 946 + - uid: 953 + components: + - type: Transform + pos: 7.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 591 + - 946 +- proto: ShuttersRadiation + entities: + - uid: 235 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 - proto: ShuttleWindow entities: - uid: 577 @@ -4739,66 +5758,76 @@ entities: parent: 1 - proto: SignalButton entities: - - uid: 590 + - uid: 41 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + rot: 1.5707963267948966 rad + pos: -9.5,9.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 4: - - Pressed: DoorBolt - 7: - - Pressed: DoorBolt - - uid: 591 + - uid: 571 components: - type: Transform pos: 1.5,0.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 575: + 527: - Pressed: Toggle - 574: + 526: + - Pressed: Toggle + 525: + - Pressed: Toggle + 549: - Pressed: Toggle 570: - Pressed: Toggle - 571: + 573: + - Pressed: Toggle + 949: - Pressed: Toggle - 572: + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 82: - Pressed: Toggle - 576: + 590: - Pressed: Toggle - 573: + - uid: 939 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 937: - Pressed: Toggle - - uid: 592 + - uid: 942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: -10.5,6.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 26: - - Pressed: DoorBolt - 22: - - Pressed: DoorBolt - 31: - - Pressed: DoorBolt - - uid: 593 + 591: + - Pressed: Toggle + - uid: 943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 + rot: 3.141592653589793 rad + pos: -11.5,0.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 6: - - Pressed: DoorBolt - 2: - - Pressed: DoorBolt - - uid: 594 + 83: + - Pressed: Toggle + 85: + - Pressed: Toggle + - uid: 944 components: - type: Transform rot: 1.5707963267948966 rad @@ -4806,36 +5835,46 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 33: - - Pressed: DoorBolt - 34: - - Pressed: DoorBolt - 35: - - Pressed: DoorBolt -- proto: SignalButtonExt1 - entities: - - uid: 595 + 775: + - Pressed: Toggle + 193: + - Pressed: Toggle + - uid: 945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 parent: 1 -- proto: SignalButtonExt3 - entities: - - uid: 596 + - type: DeviceLinkSource + linkedPorts: + 951: + - Pressed: Toggle + 950: + - Pressed: Toggle + - uid: 946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,0.5 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 parent: 1 -- proto: SignArmory - entities: - - uid: 597 + - type: DeviceLinkSource + linkedPorts: + 952: + - Pressed: Toggle + 953: + - Pressed: Toggle + - uid: 947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 776: + - Pressed: Toggle + 192: + - Pressed: Toggle - proto: SignBridge entities: - uid: 598 @@ -4843,13 +5882,6 @@ entities: - type: Transform pos: 1.5,11.5 parent: 1 -- proto: SignCanisters - entities: - - uid: 599 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - proto: SignCargoDock entities: - uid: 600 @@ -4868,12 +5900,12 @@ entities: - type: Transform pos: 14.5,5.5 parent: 1 -- proto: SignElectrical +- proto: SignElectricalMed entities: - - uid: 603 + - uid: 516 components: - type: Transform - pos: -4.5,6.5 + pos: -4.5,5.5 parent: 1 - proto: SignShipDock entities: @@ -4889,6 +5921,14 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 +- proto: SinkEmpty + entities: + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 - proto: SMESBasic entities: - uid: 606 @@ -4901,18 +5941,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 608 - components: - - type: Transform - pos: -3.5,3.5 - parent: 1 - - uid: 609 - components: - - type: Transform - pos: 4.5,3.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 917 @@ -4920,71 +5948,68 @@ entities: - type: Transform pos: 0.5,6.5 parent: 1 -- proto: SpawnPointMercenary +- proto: SteelBench entities: - - uid: 610 + - uid: 1019 components: - type: Transform - pos: 8.5,8.5 + pos: -2.5,-6.5 parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 611 + - uid: 1020 components: - type: Transform - pos: 0.5,5.5 + pos: -3.5,-6.5 parent: 1 -- proto: SpawnPointServiceWorker - entities: - - uid: 612 + - uid: 1021 components: - type: Transform - pos: 0.5,-2.5 + pos: 3.5,-6.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: 4.5,-6.5 parent: 1 -- proto: StorageCanister +- proto: SubstationBasic entities: - - uid: 613 + - uid: 246 components: - type: Transform - pos: 0.5,7.5 + pos: -4.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 614 +- proto: SuitStorageBasic + entities: + - uid: 511 components: - type: Transform - pos: 1.5,7.5 + pos: 3.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 615 + - uid: 617 components: - type: Transform - pos: -7.5,4.5 + pos: -2.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: SubstationBasic +- proto: SuitStorageEVA entities: - - uid: 616 + - uid: 115 components: - type: Transform - pos: -7.5,6.5 + pos: 0.5,7.5 parent: 1 -- proto: SuitStorageBasic - entities: - - uid: 617 + - uid: 155 components: - type: Transform - pos: -2.5,7.5 + pos: 1.5,7.5 parent: 1 -- proto: SuitStorageMercenary +- proto: SuitStorageWallmountQuartermaster entities: - - uid: 194 + - uid: 530 components: - type: Transform - pos: 5.5,8.5 + pos: -0.5,11.5 parent: 1 + - type: Physics + canCollide: False - proto: Table entities: - uid: 145 @@ -4999,21 +6024,23 @@ entities: rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 347 + - uid: 288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 + rot: 1.5707963267948966 rad + pos: 9.5,8.5 parent: 1 - - uid: 471 + - uid: 347 components: - type: Transform - pos: 10.5,9.5 + rot: 3.141592653589793 rad + pos: 1.5,12.5 parent: 1 - - uid: 476 + - uid: 375 components: - type: Transform - pos: 11.5,9.5 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - uid: 619 components: @@ -5045,23 +6072,14 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 625 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 626 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1 - - uid: 627 +- proto: TableCounterMetal + entities: + - uid: 616 components: - type: Transform - pos: 9.5,9.5 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 parent: 1 -- proto: TableCounterMetal - entities: - uid: 628 components: - type: Transform @@ -5234,6 +6252,13 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 244 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 - proto: TwoWayLever entities: - uid: 649 @@ -5276,975 +6301,748 @@ entities: - Middle: Off - proto: WallShuttle entities: + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 - uid: 477 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - uid: 478 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 1 + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 - uid: 651 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,8.5 parent: 1 - uid: 652 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,5.5 parent: 1 - uid: 653 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-7.5 parent: 1 - uid: 654 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -12.5,6.5 parent: 1 - uid: 655 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - uid: 656 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-9.5 parent: 1 - uid: 657 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 1 - uid: 658 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 11.5,6.5 parent: 1 - - uid: 659 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 1 - uid: 660 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - uid: 661 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,5.5 parent: 1 - uid: 662 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - uid: 663 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,11.5 parent: 1 - uid: 664 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 1 - - uid: 665 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1 - uid: 666 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 1 - uid: 667 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -8.5,6.5 parent: 1 - uid: 668 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,0.5 parent: 1 - uid: 669 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 - uid: 670 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,7.5 parent: 1 - uid: 671 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 672 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - uid: 673 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,6.5 parent: 1 - uid: 674 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 1 - uid: 675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,5.5 parent: 1 - uid: 676 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 7.5,1.5 parent: 1 - uid: 677 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,6.5 parent: 1 - uid: 678 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 1 - uid: 679 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - uid: 680 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,6.5 parent: 1 - uid: 681 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-3.5 parent: 1 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,6.5 parent: 1 - uid: 683 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,6.5 parent: 1 - uid: 684 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 1 - uid: 685 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 1 - uid: 686 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-2.5 parent: 1 - uid: 687 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 1 - uid: 688 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-2.5 parent: 1 - uid: 689 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - uid: 690 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-8.5 parent: 1 - uid: 691 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-7.5 parent: 1 - uid: 692 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-3.5 parent: 1 - uid: 693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-3.5 parent: 1 - uid: 694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-3.5 parent: 1 - uid: 695 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-3.5 parent: 1 - uid: 696 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-7.5 parent: 1 - uid: 697 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-7.5 parent: 1 - uid: 698 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-7.5 parent: 1 - uid: 699 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,0.5 parent: 1 - uid: 700 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,0.5 parent: 1 - uid: 701 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,0.5 parent: 1 - uid: 702 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,0.5 parent: 1 - uid: 703 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,9.5 parent: 1 - uid: 704 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 1 - uid: 705 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 1 - uid: 706 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,0.5 parent: 1 - uid: 707 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - uid: 708 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,10.5 parent: 1 - uid: 709 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,5.5 parent: 1 - uid: 710 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,0.5 parent: 1 - uid: 711 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,9.5 parent: 1 - uid: 712 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 1 - uid: 713 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,10.5 parent: 1 - uid: 714 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-3.5 parent: 1 - uid: 715 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - uid: 716 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,7.5 parent: 1 - uid: 717 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,8.5 parent: 1 - uid: 718 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-2.5 parent: 1 - uid: 719 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-7.5 parent: 1 - uid: 720 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-3.5 parent: 1 - uid: 721 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,-3.5 parent: 1 - uid: 722 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,6.5 parent: 1 - uid: 723 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - uid: 724 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,0.5 parent: 1 - uid: 725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-3.5 parent: 1 - uid: 726 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,9.5 parent: 1 - uid: 727 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,10.5 parent: 1 - uid: 728 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,8.5 parent: 1 - uid: 729 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,10.5 parent: 1 - uid: 730 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 1 - uid: 731 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,7.5 parent: 1 - uid: 732 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,8.5 parent: 1 - uid: 733 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - uid: 734 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,10.5 parent: 1 - uid: 735 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,9.5 parent: 1 - uid: 736 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 11.5,10.5 parent: 1 - uid: 737 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,7.5 parent: 1 - uid: 738 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,10.5 parent: 1 - uid: 739 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,10.5 parent: 1 - uid: 740 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-1.5 parent: 1 - uid: 741 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,0.5 parent: 1 - uid: 742 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,0.5 parent: 1 - uid: 743 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,0.5 parent: 1 - uid: 744 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,0.5 parent: 1 - uid: 745 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,0.5 parent: 1 - uid: 746 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-7.5 parent: 1 - uid: 747 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-7.5 parent: 1 - uid: 748 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 1 - uid: 749 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-7.5 parent: 1 - uid: 750 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 1 - uid: 751 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,4.5 parent: 1 - uid: 752 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,5.5 parent: 1 - uid: 753 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 1 - uid: 754 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,11.5 parent: 1 - uid: 755 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,11.5 parent: 1 - uid: 756 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-3.5 parent: 1 - uid: 757 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-3.5 parent: 1 - uid: 758 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 1 - uid: 759 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,8.5 parent: 1 - uid: 760 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,9.5 parent: 1 - uid: 761 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - uid: 762 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,5.5 parent: 1 - uid: 763 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,8.5 parent: 1 - uid: 764 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 1 - uid: 765 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 1 - uid: 766 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 1 - uid: 767 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,6.5 parent: 1 - uid: 768 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,6.5 parent: 1 - uid: 769 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-3.5 parent: 1 - uid: 770 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-3.5 parent: 1 - uid: 771 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-3.5 parent: 1 - uid: 772 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-9.5 parent: 1 - uid: 773 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-7.5 parent: 1 - uid: 774 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-8.5 parent: 1 - - uid: 775 +- proto: WallShuttleDiagonal + entities: + - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 + rot: 3.141592653589793 rad + pos: -3.5,5.5 parent: 1 - - uid: 776 + - uid: 234 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,6.5 + pos: 4.5,5.5 parent: 1 -- proto: WallShuttleDiagonal - entities: - uid: 507 components: - type: Transform @@ -6323,19 +7121,33 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,11.5 parent: 1 -- proto: WarpPointShip +- proto: WarningN2 entities: - - uid: 475 + - uid: 195 components: - type: Transform - pos: 0.5,-0.5 + pos: -7.5,5.5 parent: 1 -- proto: WaterTankFull +- proto: WarningO2 entities: - - uid: 794 + - uid: 468 components: - type: Transform - pos: 4.5,5.5 + pos: -6.5,5.5 + parent: 1 +- proto: WarningWaste + entities: + - uid: 593 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 475 + components: + - type: Transform + pos: 0.5,-0.5 parent: 1 - proto: WindoorSecure entities: @@ -6345,6 +7157,26 @@ entities: rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 1 + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 - proto: Wrench entities: - uid: 796 diff --git a/Resources/Maps/_NF/Shuttles/camper.yml b/Resources/Maps/_NF/Shuttles/camper.yml new file mode 100644 index 00000000000..271696446fd --- /dev/null +++ b/Resources/Maps/_NF/Shuttles/camper.yml @@ -0,0 +1,1556 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorDark + 5: FloorReinforced + 97: FloorSteel + 1: FloorWhite + 4: FloorWhiteMini + 3: FloorWood + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -9.170037,-0.1471653 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: ggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAABAAAAAAABAAAAAAAYQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAAgAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 25: -3,0 + 26: 0,0 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 7: 0.42295933,-1.9756684 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 8: -0.42716885,-2.0118566 + - node: + color: '#FFFFFFFF' + id: CheckerNWSE + decals: + 2: -4,0 + 3: -4,-1 + 4: -4,-2 + 22: -3,0 + 23: -3,-1 + 24: -3,-2 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: ConcreteTrimInnerNw + decals: + 20: -2,-3 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: ConcreteTrimInnerSw + decals: + 19: -2,1 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: ConcreteTrimLineW + decals: + 21: -2,-2 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineW + decals: + 17: -2,-1 + 18: -2,0 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 16: -1,2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 5: -1,-2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 9: 1,-2 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 0: -3,4 + 1: -1,4 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnBox + decals: + 6: -1,-2 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: WarnBox + decals: + 10: 1,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 12: -2,-1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 11: -2,3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 13: -2,0 + 14: -2,1 + 15: -2,2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 273 + 1: 8192 + -1,0: + 0: 20431 + 0,1: + 1: 4354 + -1,1: + 0: 238 + 1: 4352 + -2,1: + 1: 8 + -1,-1: + 0: 32582 + 2: 8 + 0,-2: + 1: 272 + -1,-2: + 1: 432 + 0: 57344 + 0,-1: + 1: 2 + 0: 768 + -2,-1: + 1: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 +- proto: AirCanister + entities: + - uid: 3 + components: + - type: Transform + anchored: True + pos: -0.5,2.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockExternal + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 8 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 1 +- proto: Bed + entities: + - uid: 23 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: BedsheetBlue + entities: + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: BoxPaper + entities: + - uid: 27 + components: + - type: Transform + pos: -1.4186039,5.4487333 + parent: 1 +- proto: Bucket + entities: + - uid: 28 + components: + - type: Transform + pos: -3.1369505,2.8069963 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 29 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: CableHV + entities: + - uid: 42 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 44 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: CarpetBlue + entities: + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 56 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 +- proto: ComfyChair + entities: + - uid: 65 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 66 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 67 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 69 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: CurtainsBlackOpen + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 1 +- proto: CurtainsBlueOpen + entities: + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 1 +- proto: CurtainsWhiteOpen + entities: + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 +- proto: DresserFilled + entities: + - uid: 74 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 75 + components: + - type: Transform + pos: -1.9612398,5.593486 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.8106375,-0.12930775 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5754948,-0.14740181 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 86 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' +- proto: GasPipeBend + entities: + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' + - uid: 90 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 93 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' +- proto: GasPort + entities: + - uid: 96 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePumpOn + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasValve + entities: + - uid: 78 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' +- proto: GasVentPump + entities: + - uid: 99 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 100 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#CC1111FF' +- proto: GravityGeneratorMini + entities: + - uid: 101 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: Grille + entities: + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 +- proto: KitchenKnife + entities: + - uid: 115 + components: + - type: Transform + pos: -3.4543009,-0.5313598 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 116 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 +- proto: LockerWoodenGeneric + entities: + - uid: 117 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: Plunger + entities: + - uid: 118 + components: + - type: Transform + pos: -3.9147282,2.3184562 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 119 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterContrabandEAT + entities: + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 +- proto: PosterContrabandTools + entities: + - uid: 123 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: PosterLegitEatMeat + entities: + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 +- proto: PosterLegitNoERP + entities: + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 +- proto: PoweredLightPostSmallRed + entities: + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 13 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 +- proto: Rack + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 79 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 +- proto: RollingPin + entities: + - uid: 137 + components: + - type: Transform + pos: -3.562829,-0.3866073 + parent: 1 +- proto: SheetPlasma + entities: + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.4961233,0.41857672 + parent: 1 +- proto: ShipyardCamperInfo + entities: + - uid: 211 + components: + - type: Transform + pos: 0.43701267,0.44958544 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 +- proto: SignFire + entities: + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: SignNosmoking + entities: + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: Sink + entities: + - uid: 155 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 +- proto: SmallGyroscope + entities: + - uid: 157 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: Thruster + originalPowerLoad: 200 +- proto: SmallThruster + entities: + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 + - uid: 160 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 + - uid: 163 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 +- proto: Soap + entities: + - uid: 164 + components: + - type: Transform + pos: -3.5809164,2.197432 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 +- proto: SuitStorageWallmountBasic + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: Physics + canCollide: False +- proto: TableCounterMetal + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 170 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 +- proto: TrashBag + entities: + - uid: 175 + components: + - type: Transform + pos: -2.4956446,0.6085676 + parent: 1 +- proto: WallShuttle + entities: + - uid: 176 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 +- proto: WallShuttleInterior + entities: + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: WarpPointShip + entities: + - uid: 206 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: Wrench + entities: + - uid: 81 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 +... diff --git a/Resources/Maps/_NF/Shuttles/eagle.yml b/Resources/Maps/_NF/Shuttles/eagle.yml index 03c013a53dc..6b8b8361bd8 100644 --- a/Resources/Maps/_NF/Shuttles/eagle.yml +++ b/Resources/Maps/_NF/Shuttles/eagle.yml @@ -7,6 +7,7 @@ tilemap: 35: FloorDarkMono 57: FloorHull 90: FloorSteel + 1: FloorTechMaint2 109: FloorWhite 114: FloorWhiteMono 121: Lattice @@ -25,19 +26,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: WgAAAAADWgAAAAAAcgAAAAADbQAAAAACbQAAAAABbQAAAAADcgAAAAABbQAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAACegAAAAAAbQAAAAADbQAAAAADbQAAAAABegAAAAAAbQAAAAADbQAAAAACbQAAAAACbQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAAegAAAAAAegAAAAAAcgAAAAADegAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAbQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADHgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WgAAAAAAWgAAAAABcgAAAAACbQAAAAADbQAAAAABbQAAAAADcgAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAAAegAAAAAAbQAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAcgAAAAABegAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAbQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADegAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAcgAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAACbQAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAcgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAAAAAAAAAWgAAAAABWgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAADIwAAAAADHgAAAAABegAAAAAAAAAAAAAAWgAAAAACWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADegAAAAAAHgAAAAADegAAAAAAAAAAAAAAWgAAAAABWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABegAAAAAAAAAAAAAAAAAAAAAAWgAAAAACWgAAAAABegAAAAAAbQAAAAAAbQAAAAADbQAAAAABegAAAAAAegAAAAAAegAAAAAAcgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAADegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAAAbQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAbQAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAAAAAAAAAWgAAAAABWgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAbQAAAAABHgAAAAADHgAAAAACegAAAAAAAAAAAAAAWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABegAAAAAAHgAAAAACegAAAAAAAAAAAAAAWgAAAAAAWgAAAAACegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAABegAAAAAAbQAAAAAAbQAAAAABbQAAAAABegAAAAAAeQAAAAAAAAAAAAAAWgAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAADegAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAADegAAAAAAbQAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAcgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAADegAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABegAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAbQAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAQAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAHgAAAAADHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABWgAAAAAB version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADIwAAAAADWgAAAAABWgAAAAADWgAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAAAIwAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACIwAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADegAAAAAAHgAAAAADIwAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -63,641 +64,613 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 74: 3,7 + 58: 3,7 + 205: -3,7 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 76: 0,9 + 60: 0,9 - node: - color: '#EFB34196' + color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 85: -6,1 - 86: -7,2 + 201: 12,-2 - node: color: '#EFB34196' - id: BrickTileWhiteCornerNw + id: BrickTileWhiteCornerNe decals: - 89: -9,2 + 65: -6,1 + 66: -7,2 - node: color: '#EFB34196' - id: BrickTileWhiteCornerSe + id: BrickTileWhiteCornerNw decals: - 84: -6,-1 + 69: -9,2 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 16: 8,-3 - 18: 10,-4 - 19: 11,-5 - - node: - color: '#52B4E996' - id: BrickTileWhiteEndE - decals: - 22: 12,-2 + 10: 10,-4 + 11: 11,-5 - node: - color: '#52B4E996' - id: BrickTileWhiteEndW + color: '#EFB34196' + id: BrickTileWhiteCornerSw decals: - 15: 7,-2 + 200: -8,-3 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 30: 11,-5 + 17: 11,-5 + 213: 10,-2 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 87: -7,1 + 67: -7,1 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 31: 13,-5 + 18: 13,-5 - node: color: '#EFB34196' id: BrickTileWhiteInnerNw decals: - 90: -9,1 + 70: -9,1 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 24: 11,-2 + 204: 11,-3 - node: color: '#EFB34196' id: BrickTileWhiteInnerSe decals: - 83: -7,-1 - 92: -10,-1 + 72: -10,-1 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 25: 11,-4 - 26: 10,-3 - 27: 8,-2 - 32: 13,-5 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerSw - decals: - 81: -8,-1 + 13: 11,-4 + 14: 10,-3 + 19: 13,-5 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 20: 11,-4 - 21: 11,-3 + 12: 11,-4 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 82: -7,-2 + 64: -7,-2 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 13: 10,-2 - 14: 8,-2 - 23: 11,-2 - 28: 12,-5 + 15: 12,-5 + 202: 11,-2 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 88: -8,2 + 68: -8,2 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 17: 9,-3 - 29: 12,-5 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 79: -9,-1 + 16: 12,-5 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 33: 13,-4 - 34: 13,-6 + 20: 13,-4 + 21: 13,-6 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 35: 12,0 - 36: -3,8 - 80: -8,-2 - 91: -10,-1 + 22: 12,0 + 23: -3,8 + 63: -8,-2 + 71: -10,-1 - node: color: '#EDB14293' id: CheckerNESW decals: - 46: 3,3 - 47: 4,3 - 48: 4,4 - 49: 3,4 - 50: 5,3 - 51: 5,4 - 52: 4,5 - 53: 3,5 - 54: 5,5 + 32: 3,3 + 33: 4,3 + 34: 4,4 + 35: 3,4 + 36: 5,3 + 37: 5,4 + 38: 4,5 + 39: 3,5 + 40: 5,5 - node: color: '#EFB34196' id: CheckerNESW decals: - 96: 2,3 - 97: 2,4 - 98: 2,5 + 74: 2,3 + 75: 2,4 + 76: 2,5 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 105: -10,0 - 110: -10,-1 - 111: -10,-3 - 112: -11,-3 - 113: -13,-4 - 192: -2,3 - 193: -1,3 + 86: -10,-1 + 87: -11,-3 + 88: -13,-4 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 106: -10,-1 - 107: -9,-1 - 109: -8,2 - 114: -12,-3 - 115: -12,-4 - 116: -12,-5 - 123: -4,3 - 124: 0,3 - 130: -1,7 - 131: -2,7 - 132: -2,8 - 141: 3,1 - 142: 5,-1 - 143: 11,0 - 144: 10,1 - 145: 10,0 - 157: 4,4 - 158: 3,4 - 178: -4,0 - 188: -6,0 - 189: -12,-3 - 190: -12,-4 - 194: -3,3 - 198: 0,8 - 199: 9,-2 - 210: 13,-6 - 211: 13,-4 - 212: 12,-5 - 232: 1,7 + 83: -10,-1 + 85: -8,2 + 89: -12,-3 + 90: -12,-4 + 91: -12,-5 + 97: -4,3 + 98: 0,3 + 103: -1,7 + 104: -2,7 + 105: -2,8 + 113: 3,1 + 114: 5,-1 + 115: 11,0 + 116: 10,1 + 117: 10,0 + 126: 4,4 + 127: 3,4 + 144: -4,0 + 154: -6,0 + 155: -12,-3 + 156: -12,-4 + 158: -3,3 + 162: 0,8 + 167: 13,-6 + 168: 13,-4 + 169: 12,-5 + 188: 1,7 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 233: -5,4 - 239: 1,-1 + 189: -5,4 + 195: 1,-1 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 229: -4,1 - 230: -4,5 - 231: -2,8 + 185: -4,1 + 186: -4,5 + 187: -2,8 - node: cleanable: True angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 227: -1,-2 - 228: -3,-1 - 238: 0,-1 + 183: -1,-2 + 184: -3,-1 + 194: 0,-1 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 125: 0,5 - 126: -1,4 - 133: -1,8 - 140: 5,1 - 146: 9,0 - 159: 3,3 - 160: 2,3 - 161: 2,4 - 176: -3,-1 - 177: -4,-1 - 184: -1,1 - 185: 0,1 - 186: 0,0 - 187: 1,1 - 200: 8,-2 - 201: 7,-2 - 202: 9,-3 - 203: 10,-2 - 207: 10,-4 - 208: 11,-5 - 209: 13,-5 + 99: 0,5 + 100: -1,4 + 106: -1,8 + 112: 5,1 + 128: 3,3 + 129: 2,3 + 130: 2,4 + 142: -3,-1 + 143: -4,-1 + 150: -1,1 + 151: 0,1 + 152: 0,0 + 153: 1,1 + 164: 10,-4 + 165: 11,-5 + 166: 13,-5 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 240: -2,-1 + 196: -2,-1 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 241: -1,-1 - 242: 1,0 - 243: -2,1 + 197: -1,-1 + 198: 1,0 + 199: -2,1 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 127: -2,4 - 128: -3,4 - 138: 3,-1 - 139: 4,1 - 147: 9,1 - 148: 7,1 - 149: 7,2 - 167: -1,-3 - 168: -1,-5 - 169: 0,-5 - 170: -1,-2 - 171: -2,-2 - 172: -1,-1 - 181: -2,1 - 182: -2,0 - 183: -3,0 - 205: 11,-3 - 206: 11,-4 + 101: -3,4 + 110: 3,-1 + 111: 4,1 + 118: 9,1 + 119: 7,1 + 120: 7,2 + 136: -1,-3 + 137: -1,-5 + 138: 0,-5 + 139: -1,-2 + 140: -2,-2 + 141: -1,-1 + 147: -2,1 + 148: -2,0 + 149: -3,0 + 163: 11,-4 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 108: -8,1 - 117: -10,-4 - 118: -11,-4 - 119: -11,-5 - 120: -8,-1 - 121: -6,0 - 122: -8,0 - 129: -4,4 - 134: 1,8 - 135: 4,0 - 136: 4,-1 - 137: 3,0 - 150: 8,2 - 151: 8,1 - 152: 8,0 - 153: 7,0 - 154: 5,0 - 155: 4,3 - 156: 3,3 - 162: 5,4 - 163: 1,-3 - 164: 1,-4 - 165: 1,-5 - 166: -1,-4 - 179: -4,1 - 180: -3,1 - 191: -12,-4 - 195: 0,4 - 196: 1,7 - 197: 0,7 - 204: 11,-2 - 213: 13,-6 - 214: 13,-4 - 215: 13,-5 - 216: 11,-5 - 217: -2,-7 - 218: 2,-7 - 224: 1,-8 + 84: -8,1 + 92: -10,-4 + 93: -11,-4 + 94: -11,-5 + 95: -6,0 + 96: -8,0 + 102: -4,4 + 107: 1,8 + 108: 4,-1 + 109: 3,0 + 121: 8,2 + 122: 8,1 + 123: 5,0 + 124: 4,3 + 125: 3,3 + 131: 5,4 + 132: 1,-3 + 133: 1,-4 + 134: 1,-5 + 135: -1,-4 + 145: -4,1 + 146: -3,1 + 157: -12,-4 + 159: 0,4 + 160: 1,7 + 161: 0,7 + 170: 13,-6 + 171: 13,-4 + 172: 13,-5 + 173: 11,-5 + 174: -2,-7 + 175: 2,-7 + 181: 1,-8 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtMedium decals: - 219: 1,-7 - 220: -1,-7 - 223: 1,-6 - 236: 0,-2 + 176: 1,-7 + 177: -1,-7 + 180: 1,-6 + 192: 0,-2 - node: cleanable: True angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 221: -1,-8 - 222: -1,-6 - 225: 0,-3 + 178: -1,-8 + 179: -1,-6 - node: cleanable: True angle: 4.71238898038469 rad color: '#FFFFFFFF' id: DirtMedium decals: - 226: 0,-4 - 237: 1,-2 + 182: 0,-4 + 193: 1,-2 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 67: 7,3 - 73: 11,0 + 51: 7,3 + 57: 11,0 + 203: 12,-3 + 209: 8,-3 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 101: -2,1 + 79: -2,1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 11: 8,2 + 8: 8,2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: 4: 4,-1 - 66: 8,0 - node: color: '#EDB14293' id: HalfTileOverlayGreyscale180 decals: - 56: -3,-1 + 42: -3,-1 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 12: 7,1 + 9: 7,1 + 211: 7,-1 - node: color: '#EDB14293' id: HalfTileOverlayGreyscale270 decals: - 58: -1,-3 - 59: -1,-4 - 60: -1,-5 + 44: -1,-3 + 45: -1,-4 + 46: -1,-5 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 39: 1,-3 - 40: 1,-4 - 41: 1,-5 - 42: 1,1 - 234: 1,-2 - 235: 1,-1 + 25: 1,-3 + 26: 1,-4 + 27: 1,-5 + 28: 1,1 + 190: 1,-2 + 191: 1,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale decals: - 99: -1,1 + 77: -1,1 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 64: 0,-5 - 65: 7,0 + 50: 0,-5 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 212: 8,-2 - node: color: '#EDB14293' id: QuarterTileOverlayGreyscale270 decals: - 57: -2,-1 - 62: -1,-2 + 43: -2,-1 + 48: -1,-2 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 decals: - 63: 0,-5 + 49: 0,-5 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: - 100: -3,1 + 78: -3,1 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 72: 9,1 + 56: 9,1 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: 0: 3,1 - 68: 7,2 + 52: 7,2 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: 1: 5,-1 - 70: 10,0 + 54: 10,0 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: 2: 3,-1 + 210: 7,-2 - node: color: '#EDB14293' id: ThreeQuarterTileOverlayGreyscale270 decals: - 55: -4,-1 - 61: -2,-2 + 41: -4,-1 + 47: -2,-2 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: 3: 5,1 - 69: 9,2 - 71: 10,1 + 53: 9,2 + 55: 10,1 - node: color: '#EDB142C9' id: WarnBox decals: - 44: -10,1 + 30: -10,1 + - node: + color: '#EFB34196' + id: WarnCornerGreyscaleSW + decals: + 214: -10,0 + - node: + color: '#EFB34196' + id: WarnFullGreyscale + decals: + 218: -8,-1 + 219: -7,-1 - node: color: '#52B4E996' id: WarnLineGreyscaleE decals: 7: 5,0 - 43: 1,0 + 29: 1,0 + 208: 8,-2 - node: color: '#EFB34196' id: WarnLineGreyscaleE decals: - 93: -6,0 + 73: -6,0 - node: color: '#334E6DC8' id: WarnLineGreyscaleN decals: - 37: 0,5 - 104: 0,1 + 24: 0,5 + 82: 0,1 - node: color: '#52B4E996' id: WarnLineGreyscaleN decals: 5: 4,1 - 10: 9,-2 - node: color: '#EFB34196' id: WarnLineGreyscaleN decals: - 95: -10,-3 + 217: -10,-2 - node: color: '#334E6DC8' id: WarnLineGreyscaleS decals: - 78: 0,7 - 103: 0,3 - - node: - color: '#52B4E996' - id: WarnLineGreyscaleS - decals: - 9: 9,0 + 62: 0,7 + 81: 0,3 - node: color: '#EFB34196' id: WarnLineGreyscaleS decals: - 102: 4,3 + 80: 4,3 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: 6: 3,0 - 8: 7,0 + 206: 7,0 + 207: 10,-2 - node: color: '#EDB14293' id: WarnLineGreyscaleW decals: - 45: -4,0 + 31: -4,0 - node: color: '#EFB34196' - id: WarnLineGreyscaleW + id: WarnLineN decals: - 94: -10,0 + 215: -8,0 + 216: -7,0 - node: cleanable: True color: '#FFFFFFFF' id: body decals: - 75: -5,4 + 59: -5,4 - node: cleanable: True color: '#FFFFFFFF' id: med decals: - 77: 0,-5 + 61: 0,-5 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 65535 + 0: 53695 0,-1: - 0: 65399 - 1: 128 - -1,-1: - 0: 65484 - 1: 32 + 0: 45875 + 2: 128 -1,0: - 0: 65535 + 0: 61951 0,1: - 0: 65535 + 0: 61917 + -1,1: + 0: 57599 0,2: - 0: 16383 + 0: 375 + -1,2: + 0: 204 + 2: 16 0,3: 1: 1 1,0: - 0: 65535 + 0: 47551 1,1: - 0: 4991 - 1: 128 + 0: 51 + 2: 128 1,2: - 0: 1 - 1: 16 + 2: 16 + 1,-1: + 0: 47104 + 2: 40 2,0: - 0: 14335 - 1: 18432 + 0: 895 + 2: 18432 + 2,-1: + 0: 8156 2,1: - 0: 1 - 1: 2 - 3,0: - 0: 17 + 2: 2 0,-2: - 0: 32767 + 0: 12898 + -1,-2: + 0: 35016 + 2: 17 + -1,-1: + 0: 64648 + 2: 32 1,-2: - 1: 17 - 1,-1: - 0: 65472 - 1: 40 - 2,-1: - 0: 65535 + 2: 17 2,-2: - 1: 8320 - 0: 52224 + 0: 32768 + 2: 128 3,-2: - 0: 30513 - 1: 66 + 0: 12800 + 2: 66 3,-1: - 0: 13111 - 1: 64 + 0: 274 + 2: 64 -4,-2: - 1: 200 - 0: 52224 + 2: 200 + 0: 32768 -4,-1: - 0: 2188 - 1: 32832 + 2: 32832 + 0: 8 -3,-2: - 1: 32817 - 0: 30464 + 2: 49 + 0: 12544 -3,-1: - 0: 61439 - 1: 4096 - -2,-1: - 0: 65393 - 1: 130 - -1,-2: - 1: 17 - 0: 52974 + 0: 18295 + 2: 4096 -3,0: - 1: 16913 - 0: 36078 - -3,1: - 1: 8 + 2: 16913 + 0: 2254 + -2,-1: + 0: 784 + 2: 130 -2,0: - 0: 65535 + 0: 33663 + -3,1: + 2: 8 -2,1: - 0: 2255 - 1: 32 - -1,1: - 0: 65535 - -1,2: - 0: 36591 - 1: 16 + 2: 32 + 0: 140 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -729,6 +702,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -747,17 +735,16 @@ entities: - 428 - 435 - 667 - - 122 - - 89 - - 450 - - 328 + - 3 + - 432 + - 207 + - 253 - 4 - 451 - 571 - 573 - 574 - - type: AtmosDevice - joinedGrid: 1 + - 48 - uid: 196 components: - type: Transform @@ -769,9 +756,6 @@ entities: - 455 - 41 - 673 - - 712 - - type: AtmosDevice - joinedGrid: 1 - uid: 266 components: - type: Transform @@ -785,8 +769,6 @@ entities: - 108 - 545 - 179 - - type: AtmosDevice - joinedGrid: 1 - uid: 568 components: - type: Transform @@ -794,34 +776,20 @@ entities: parent: 1 - type: DeviceList devices: - - 569 - 665 - - 484 - - 430 + - 239 + - 630 - 666 - - 674 + - 412 - 673 - - 712 - - type: AtmosDevice - joinedGrid: 1 -- proto: AirCanister - entities: - - uid: 610 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - 489 + - 237 - proto: AirlockAtmospherics entities: - - uid: 34 + - uid: 131 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-1.5 + pos: -9.5,-0.5 parent: 1 - proto: AirlockChemistryGlass entities: @@ -830,6 +798,16 @@ entities: - type: Transform pos: 4.5,2.5 parent: 1 + - uid: 18 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 - proto: AirlockCommandGlass entities: - uid: 182 @@ -848,78 +826,63 @@ entities: entities: - uid: 186 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,0.5 parent: 1 - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-5.5 parent: 1 -- proto: AirlockGlass +- proto: AirlockExternalGlass entities: - - uid: 25 + - uid: 7 components: - type: Transform - pos: 0.5,2.5 + pos: -0.5,-5.5 parent: 1 - - uid: 172 + - uid: 22 components: - type: Transform - pos: -3.5,2.5 + pos: 1.5,-5.5 parent: 1 - - uid: 177 +- proto: AirlockGlass + entities: + - uid: 25 components: - type: Transform - pos: 1.5,-5.5 + pos: 0.5,2.5 parent: 1 - - uid: 178 + - uid: 43 components: - type: Transform - pos: -0.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 1 - proto: AirlockGlassShuttle entities: - - uid: 180 + - uid: 98 components: - type: Transform - pos: -0.5,-7.5 + pos: 1.5,-7.5 parent: 1 - - uid: 184 + - uid: 180 components: - type: Transform - pos: 1.5,-7.5 + pos: -0.5,-7.5 parent: 1 - proto: AirlockMedical entities: - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-4.5 parent: 1 -- proto: AirlockMedicalGlass - entities: - - uid: 48 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1 - - uid: 54 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1 - - uid: 213 + - uid: 418 components: - type: Transform - pos: 6.5,0.5 + pos: 9.5,-1.5 parent: 1 - proto: AirSensor entities: @@ -991,9 +954,6 @@ entities: - type: Transform pos: 5.5,1.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 576 - uid: 672 components: - type: Transform @@ -1016,11 +976,10 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 1 - - uid: 236 + - uid: 247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-1.5 + pos: -7.5,3.5 parent: 1 - uid: 257 components: @@ -1028,17 +987,11 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,8.5 parent: 1 - - uid: 298 - components: - - type: Transform - pos: 8.5,-0.5 - parent: 1 -- proto: APCElectronics - entities: - - uid: 630 + - uid: 592 components: - type: Transform - pos: -6.5,-0.5 + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 parent: 1 - proto: AtmosDeviceFanTiny entities: @@ -1068,6 +1021,11 @@ entities: parent: 1 - proto: AtmosFixBlockerMarker entities: + - uid: 138 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 - uid: 547 components: - type: Transform @@ -1128,16 +1086,6 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 1 - - uid: 559 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1 - - uid: 560 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1 - uid: 561 components: - type: Transform @@ -1173,6 +1121,11 @@ entities: - type: Transform pos: 9.5,4.5 parent: 1 + - uid: 627 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 - uid: 646 components: - type: Transform @@ -1183,26 +1136,11 @@ entities: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 648 - components: - - type: Transform - pos: -8.5,-4.5 - parent: 1 - uid: 650 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 651 - components: - - type: Transform - pos: 7.5,-3.5 - parent: 1 - - uid: 652 - components: - - type: Transform - pos: 9.5,-4.5 - parent: 1 - uid: 654 components: - type: Transform @@ -1258,13 +1196,6 @@ entities: - type: Transform pos: 11.5,-6.5 parent: 1 -- proto: Autolathe - entities: - - uid: 627 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1 - proto: BannerEngineering entities: - uid: 264 @@ -1281,19 +1212,25 @@ entities: parent: 1 - proto: BedsheetMedical entities: - - uid: 372 + - uid: 102 components: - type: Transform - pos: 11.5,0.5 + rot: -1.5707963267948966 rad + pos: 10.5,1.5 parent: 1 - - uid: 373 + - uid: 401 components: - type: Transform - pos: 10.5,1.5 + pos: 9.5,2.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 8.5,2.5 parent: 1 - proto: BenchSofaCorpLeft entities: - - uid: 100 + - uid: 582 components: - type: Transform pos: -0.5,5.5 @@ -1302,7 +1239,7 @@ entities: bodyType: Static - proto: BenchSofaCorpMiddle entities: - - uid: 102 + - uid: 583 components: - type: Transform pos: -1.5,5.5 @@ -1311,7 +1248,7 @@ entities: bodyType: Static - proto: BenchSofaCorpRight entities: - - uid: 595 + - uid: 484 components: - type: Transform pos: -2.5,5.5 @@ -1320,18 +1257,25 @@ entities: bodyType: Static - proto: BlockGameArcade entities: - - uid: 252 + - uid: 460 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 -- proto: BoxInflatable +- proto: ButtonFrameCaution entities: - - uid: 437 + - uid: 135 components: - type: Transform - pos: -11.5,-0.5 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 parent: 1 - proto: CableApcExtension entities: @@ -1340,6 +1284,11 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 1 + - uid: 54 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 - uid: 72 components: - type: Transform @@ -1355,20 +1304,30 @@ entities: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 183 + - uid: 146 components: - type: Transform - pos: 3.5,4.5 + pos: -7.5,3.5 parent: 1 - - uid: 237 + - uid: 154 components: - type: Transform - pos: -8.5,-1.5 + pos: 10.5,-1.5 parent: 1 - - uid: 238 + - uid: 161 components: - type: Transform - pos: -8.5,-0.5 + pos: 9.5,-1.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -7.5,2.5 parent: 1 - uid: 240 components: @@ -1390,21 +1349,11 @@ entities: - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 245 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - uid: 246 components: - type: Transform pos: -7.5,0.5 parent: 1 - - uid: 247 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1 - uid: 258 components: - type: Transform @@ -1453,12 +1402,7 @@ entities: - uid: 269 components: - type: Transform - pos: 2.5,7.5 - parent: 1 - - uid: 279 - components: - - type: Transform - pos: 8.5,-1.5 + pos: -7.5,1.5 parent: 1 - uid: 299 components: @@ -1520,21 +1464,6 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 1 - - uid: 312 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 1 - - uid: 313 - components: - - type: Transform - pos: 9.5,-2.5 - parent: 1 - - uid: 314 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 1 - uid: 315 components: - type: Transform @@ -1580,11 +1509,6 @@ entities: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 327 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - uid: 329 components: - type: Transform @@ -1685,11 +1609,6 @@ entities: - type: Transform pos: -7.5,0.5 parent: 1 - - uid: 352 - components: - - type: Transform - pos: -5.5,0.5 - parent: 1 - uid: 353 components: - type: Transform @@ -1725,15 +1644,15 @@ entities: - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 492 + - uid: 477 components: - type: Transform - pos: 3.5,-0.5 + pos: 9.5,-0.5 parent: 1 - - uid: 494 + - uid: 492 components: - type: Transform - pos: -1.5,1.5 + pos: 3.5,-0.5 parent: 1 - uid: 525 components: @@ -1760,119 +1679,114 @@ entities: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 612 - components: - - type: Transform - pos: 8.5,2.5 - parent: 1 - - uid: 613 + - uid: 624 components: - type: Transform - pos: 7.5,2.5 + pos: 9.5,1.5 parent: 1 - uid: 695 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 697 +- proto: CableHV + entities: + - uid: 60 components: - type: Transform - pos: 9.5,0.5 + pos: -9.5,-1.5 parent: 1 - - uid: 698 + - uid: 229 components: - type: Transform - pos: 10.5,0.5 + pos: -6.5,-1.5 parent: 1 -- proto: CableHV - entities: - - uid: 22 + - uid: 502 components: - type: Transform - pos: -8.5,2.5 + pos: -7.5,-1.5 parent: 1 - - uid: 215 + - uid: 503 components: - type: Transform - pos: -8.5,1.5 + pos: -7.5,-2.5 parent: 1 - - uid: 216 + - uid: 543 components: - type: Transform - pos: -8.5,0.5 + pos: -9.5,-2.5 parent: 1 - - uid: 218 + - uid: 559 components: - type: Transform - pos: -7.5,-0.5 + pos: -8.5,-2.5 parent: 1 - - uid: 219 + - uid: 628 components: - type: Transform - pos: -7.5,-1.5 + pos: -11.5,-1.5 parent: 1 - - uid: 220 + - uid: 629 components: - type: Transform - pos: -7.5,-2.5 + pos: -10.5,-1.5 parent: 1 - - uid: 223 +- proto: CableMV + entities: + - uid: 34 components: - type: Transform - pos: -7.5,2.5 + pos: -10.5,-1.5 parent: 1 - - uid: 224 + - uid: 57 components: - type: Transform - pos: -6.5,2.5 + pos: -2.5,-1.5 parent: 1 - - uid: 225 + - uid: 71 components: - type: Transform - pos: -6.5,1.5 + pos: -2.5,-0.5 parent: 1 - - uid: 477 + - uid: 100 components: - type: Transform - pos: -8.5,-0.5 + pos: -7.5,1.5 parent: 1 -- proto: CableMV - entities: - - uid: 57 + - uid: 147 components: - type: Transform - pos: -2.5,-1.5 + pos: -7.5,3.5 parent: 1 - - uid: 71 + - uid: 217 components: - type: Transform - pos: -2.5,-0.5 + pos: 0.5,8.5 parent: 1 - - uid: 221 + - uid: 218 components: - type: Transform - pos: -0.5,0.5 + pos: -11.5,-1.5 parent: 1 - - uid: 228 + - uid: 219 components: - type: Transform - pos: -7.5,-2.5 + pos: -9.5,0.5 parent: 1 - - uid: 229 + - uid: 221 components: - type: Transform - pos: -7.5,-1.5 + pos: -0.5,0.5 parent: 1 - - uid: 230 + - uid: 225 components: - type: Transform - pos: -7.5,-0.5 + pos: -0.5,8.5 parent: 1 - - uid: 231 + - uid: 230 components: - type: Transform - pos: -7.5,0.5 + pos: -9.5,-1.5 parent: 1 - uid: 232 components: @@ -1889,10 +1803,10 @@ entities: - type: Transform pos: -4.5,0.5 parent: 1 - - uid: 235 + - uid: 245 components: - type: Transform - pos: -8.5,-1.5 + pos: -7.5,2.5 parent: 1 - uid: 272 components: @@ -1949,16 +1863,6 @@ entities: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 286 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - - uid: 287 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - uid: 288 components: - type: Transform @@ -2014,13 +1918,32 @@ entities: - type: Transform pos: 8.5,-0.5 parent: 1 + - uid: 560 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 - proto: CableTerminal entities: - - uid: 222 + - uid: 515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 + pos: -7.5,-1.5 parent: 1 - proto: Catwalk entities: @@ -2049,11 +1972,6 @@ entities: - type: Transform pos: -12.5,-7.5 parent: 1 - - uid: 173 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1 - uid: 174 components: - type: Transform @@ -2064,11 +1982,6 @@ entities: - type: Transform pos: -11.5,1.5 parent: 1 - - uid: 176 - components: - - type: Transform - pos: -12.5,-0.5 - parent: 1 - uid: 676 components: - type: Transform @@ -2112,14 +2025,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 1 - proto: ChairOfficeLight entities: - uid: 396 @@ -2134,12 +2039,26 @@ entities: rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 1 -- proto: chem_master +- proto: ChairPilotSeat entities: - - uid: 239 + - uid: 226 components: - type: Transform - pos: 4.5,5.5 + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 1 +- proto: ChemDispenser + entities: + - uid: 208 + components: + - type: Transform + pos: 3.5,5.5 parent: 1 - proto: ChemistryHotplate entities: @@ -2148,38 +2067,20 @@ entities: - type: Transform pos: 3.5,3.5 parent: 1 -- proto: ClosetWall +- proto: ChemMaster entities: - - uid: 544 + - uid: 610 components: - type: Transform - pos: -7.5,3.5 + pos: 4.5,5.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 591 + components: + - type: Transform + pos: -5.5,1.5 parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 73 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 689 @@ -2196,13 +2097,49 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 -- proto: ComfyChair +- proto: ClothingEyesGlassesThermal entities: - - uid: 538 + - uid: 80 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,4.5 + pos: -10.5,-1.3 + parent: 1 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]5%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingHeadHatCone + entities: + - uid: 231 + components: + - type: Transform + pos: -6.2,1.7 + parent: 1 +- proto: ClothingOuterWinterEngi + entities: + - uid: 89 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 +- proto: ClothingShoesBootsWinterEngi + entities: + - uid: 481 + components: + - type: Transform + pos: -10.5,-1.5 parent: 1 - proto: ComputerTabletopCrewMonitoring entities: @@ -2242,7 +2179,7 @@ entities: parent: 1 - proto: ComputerWallmountWithdrawBankATM entities: - - uid: 700 + - uid: 145 components: - type: Transform pos: -1.5,2.5 @@ -2271,10 +2208,10 @@ entities: parent: 1 - proto: DrinkDoctorsDelightGlass entities: - - uid: 670 + - uid: 224 components: - type: Transform - pos: -0.5,5.5 + pos: -1.5,3.5 parent: 1 - proto: EmergencyRollerBed entities: @@ -2288,6 +2225,13 @@ entities: - type: Transform pos: 4.5,-0.5 parent: 1 +- proto: EngineeringTechFab + entities: + - uid: 172 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 - proto: ExtinguisherCabinetFilled entities: - uid: 334 @@ -2324,13 +2268,10 @@ entities: parent: 1 - type: DeviceList devices: - - 674 + - 239 - 673 - - 712 - - 675 - - 569 - - type: AtmosDevice - joinedGrid: 1 + - 489 + - 237 - uid: 576 components: - type: Transform @@ -2342,50 +2283,49 @@ entities: - 571 - 573 - 574 - - 668 - - type: AtmosDevice - joinedGrid: 1 -- proto: FirelockEdge + - 48 +- proto: FirelockGlass entities: - - uid: 569 + - uid: 48 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-2.5 + rot: -1.5707963267948966 rad + pos: 9.5,-1.5 parent: 1 - type: DeviceNetwork deviceLists: - - 9 - - 568 - - uid: 675 + - 6 + - 576 + - uid: 237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,0.5 + rot: 3.141592653589793 rad + pos: -11.5,-5.5 parent: 1 - type: DeviceNetwork deviceLists: - 9 - - uid: 712 + - 568 + - uid: 239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + rot: 3.141592653589793 rad + pos: -10.5,0.5 parent: 1 - type: DeviceNetwork - configurators: - - invalid deviceLists: - 9 - 568 - - 196 - - uid: 732 + - uid: 489 components: - type: Transform - pos: -11.5,-4.5 + rot: 3.141592653589793 rad + pos: -9.5,-0.5 parent: 1 -- proto: FirelockGlass - entities: + - type: DeviceNetwork + deviceLists: + - 9 + - 568 - uid: 571 components: - type: Transform @@ -2426,15 +2366,6 @@ entities: - 9 - 568 - 196 - - uid: 674 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 9 - - 568 - proto: Floodlight entities: - uid: 719 @@ -2442,40 +2373,40 @@ entities: - type: Transform pos: -11.5,-7.5 parent: 1 -- proto: FoodMothEyeballSoup +- proto: FloorDrain entities: - - uid: 513 + - uid: 458 components: - type: Transform - pos: -1.5,3.5 + pos: 3.5,4.5 parent: 1 -- proto: GasMixerFlipped + - type: Fixtures + fixtures: {} +- proto: GasMixerOnFlipped entities: - - uid: 403 + - uid: 10 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-3.5 parent: 1 - type: GasMixer - inletTwoConcentration: 0.20999998 - inletOneConcentration: 0.79 - - type: AtmosDevice - joinedGrid: 1 + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 500 components: + - type: MetaData + name: waste vent - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeBend entities: - uid: 114 @@ -2485,7 +2416,22 @@ entities: pos: 0.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 188 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 244 components: - type: Transform @@ -2493,7 +2439,60 @@ entities: pos: 4.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 286 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 373 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 375 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 405 components: - type: Transform @@ -2501,15 +2500,30 @@ entities: pos: -9.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 422 components: - type: Transform @@ -2517,7 +2531,7 @@ entities: pos: 5.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 436 components: - type: Transform @@ -2525,7 +2539,7 @@ entities: pos: 1.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 453 components: - type: Transform @@ -2533,21 +2547,14 @@ entities: pos: 11.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 458 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 461 + color: '#990000FF' + - uid: 633 components: - type: Transform - pos: 10.5,1.5 + pos: -8.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 42 @@ -2557,7 +2564,7 @@ entities: pos: -1.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 76 components: - type: Transform @@ -2565,14 +2572,14 @@ entities: pos: -0.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 120 components: - type: Transform pos: 5.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 137 components: - type: Transform @@ -2580,7 +2587,7 @@ entities: pos: -4.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 140 components: - type: Transform @@ -2588,7 +2595,7 @@ entities: pos: 3.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 151 components: - type: Transform @@ -2596,14 +2603,14 @@ entities: pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 156 components: - type: Transform pos: 0.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 160 components: - type: Transform @@ -2611,29 +2618,29 @@ entities: pos: 4.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 199 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 207 + color: '#0055CCFF' + - uid: 206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,1.5 + rot: 3.141592653589793 rad + pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 210 components: - type: Transform pos: -0.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 248 components: - type: Transform @@ -2641,14 +2648,14 @@ entities: pos: -3.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 249 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 250 components: - type: Transform @@ -2656,28 +2663,28 @@ entities: pos: -0.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 254 components: - type: Transform pos: 0.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 255 components: - type: Transform pos: 0.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 270 components: - type: Transform pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 271 components: - type: Transform @@ -2685,63 +2692,92 @@ entities: pos: 1.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 368 + color: '#0055CCFF' + - uid: 279 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-0.5 + pos: 9.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 407 + color: '#0055CCFF' + - uid: 287 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 346 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-1.5 + pos: 10.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 409 + color: '#990000FF' + - uid: 352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-0.5 + pos: -6.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 411 + color: '#0055CCFF' + - uid: 369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 412 + color: '#990000FF' + - uid: 399 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + pos: -3.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 413 + color: '#0055CCFF' + - uid: 400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + pos: 8.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 414 + color: '#0055CCFF' + - uid: 403 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 413 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + pos: -4.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 419 components: - type: Transform @@ -2749,7 +2785,7 @@ entities: pos: 2.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 420 components: - type: Transform @@ -2757,7 +2793,7 @@ entities: pos: 3.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 424 components: - type: Transform @@ -2765,7 +2801,7 @@ entities: pos: 5.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 425 components: - type: Transform @@ -2773,14 +2809,14 @@ entities: pos: 5.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 426 components: - type: Transform pos: -0.5,7.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 427 components: - type: Transform @@ -2788,54 +2824,38 @@ entities: pos: 6.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 433 components: - type: Transform pos: 1.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 441 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 445 + color: '#0055CCFF' + - uid: 437 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-0.5 + pos: -7.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 448 + color: '#0055CCFF' + - uid: 441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 + rot: 1.5707963267948966 rad + pos: -9.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 456 components: - type: Transform @@ -2843,43 +2863,15 @@ entities: pos: 12.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 459 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 - parent: 1 - - uid: 460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 464 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 465 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 466 components: - type: Transform @@ -2887,7 +2879,7 @@ entities: pos: 5.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 468 components: - type: Transform @@ -2895,7 +2887,7 @@ entities: pos: 2.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 469 components: - type: Transform @@ -2903,7 +2895,7 @@ entities: pos: 1.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 470 components: - type: Transform @@ -2911,14 +2903,14 @@ entities: pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 476 components: - type: Transform pos: 4.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 478 components: - type: Transform @@ -2926,7 +2918,7 @@ entities: pos: -2.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 480 components: - type: Transform @@ -2934,37 +2926,14 @@ entities: pos: -5.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 486 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#990000FF' - uid: 495 components: - type: Transform pos: -0.5,2.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 586 components: - type: Transform @@ -2972,7 +2941,7 @@ entities: pos: 7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 66 @@ -2982,7 +2951,7 @@ entities: pos: -0.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 133 components: - type: Transform @@ -2990,47 +2959,62 @@ entities: pos: 0.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 154 + color: '#0055CCFF' + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 312 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: 8.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 190 + color: '#0055CCFF' + - uid: 314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 208 + color: '#990000FF' + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,1.5 + pos: -6.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 404 + color: '#990000FF' + - uid: 370 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 372 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-3.5 + pos: -7.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 410 + color: '#0055CCFF' + - uid: 404 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-0.5 + pos: -10.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 423 components: - type: Transform @@ -3038,7 +3022,15 @@ entities: pos: 5.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 431 components: - type: Transform @@ -3046,7 +3038,7 @@ entities: pos: -0.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 471 components: - type: Transform @@ -3054,7 +3046,7 @@ entities: pos: -0.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 473 components: - type: Transform @@ -3062,72 +3054,49 @@ entities: pos: 4.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 514 components: - type: Transform pos: -1.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 515 - components: - - type: Transform - pos: -6.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 517 + color: '#990000FF' +- proto: GasPort + entities: + - uid: 236 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-1.5 + pos: -9.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPort - entities: - - uid: 400 + color: '#990000FF' + - uid: 395 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 401 + color: '#0055CCFF' + - uid: 397 components: - type: Transform pos: -11.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 402 components: - type: Transform pos: -10.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,1.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' -- proto: GasPressurePump + color: '#0055CCFF' +- proto: GasPressurePumpOn entities: - - uid: 406 + - uid: 414 components: - type: MetaData name: distro pump @@ -3135,48 +3104,41 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 467 + color: '#0055CCFF' +- proto: GasPressurePumpOnMax + entities: + - uid: 634 components: - - type: MetaData - name: waste pump - type: Transform rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GasVentPump entities: - - uid: 41 + - uid: 3 components: - type: Transform - pos: -0.5,0.5 + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 parent: 1 - type: DeviceNetwork deviceLists: - - 196 - - type: AtmosDevice - joinedGrid: 1 + - 6 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 89 + color: '#0055CCFF' + - uid: 41 components: - type: Transform - pos: 9.5,2.5 + pos: -0.5,0.5 parent: 1 - type: DeviceNetwork deviceLists: - - 6 - - type: AtmosDevice - joinedGrid: 1 + - 196 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 251 components: - type: Transform @@ -3186,47 +3148,39 @@ entities: - type: DeviceNetwork deviceLists: - 266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 428 + color: '#0055CCFF' + - uid: 253 components: - type: Transform - pos: 5.5,4.5 + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 parent: 1 - type: DeviceNetwork deviceLists: - 6 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 430 + color: '#0055CCFF' + - uid: 412 components: - type: Transform - pos: -7.5,0.5 + pos: -7.5,2.5 parent: 1 - type: DeviceNetwork deviceLists: - 568 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 450 + color: '#0055CCFF' + - uid: 428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: 5.5,4.5 parent: 1 - type: DeviceNetwork deviceLists: - 6 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - uid: 545 components: - type: Transform @@ -3235,10 +3189,8 @@ entities: - type: DeviceNetwork deviceLists: - 266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 108 @@ -3249,35 +3201,30 @@ entities: - type: DeviceNetwork deviceLists: - 266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 122 + color: '#990000FF' + - uid: 207 components: - type: Transform - pos: 8.5,2.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 1 - type: DeviceNetwork deviceLists: - 6 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 328 + color: '#990000FF' + - uid: 432 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: 7.5,-0.5 parent: 1 - type: DeviceNetwork deviceLists: - 6 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 435 components: - type: Transform @@ -3287,10 +3234,8 @@ entities: - type: DeviceNetwork deviceLists: - 6 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 451 components: - type: Transform @@ -3300,10 +3245,8 @@ entities: - type: DeviceNetwork deviceLists: - 6 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 455 components: - type: Transform @@ -3313,10 +3256,8 @@ entities: - type: DeviceNetwork deviceLists: - 196 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - uid: 475 components: - type: Transform @@ -3326,23 +3267,18 @@ entities: - type: DeviceNetwork deviceLists: - 266 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 484 + color: '#990000FF' + - uid: 630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,0.5 + pos: -6.5,2.5 parent: 1 - type: DeviceNetwork deviceLists: - 568 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#990000FF' - proto: GravityGeneratorMini entities: - uid: 273 @@ -3367,12 +3303,6 @@ entities: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 80 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - uid: 91 components: - type: Transform @@ -3467,6 +3397,12 @@ entities: - type: Transform pos: 3.5,10.5 parent: 1 + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 - uid: 499 components: - type: Transform @@ -3543,18 +3479,6 @@ entities: - type: Transform pos: 5.502689,4.3462105 parent: 1 -- proto: HospitalCurtainsOpen - entities: - - uid: 375 - components: - - type: Transform - pos: 6.5,0.5 - parent: 1 - - uid: 452 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1 - proto: IntercomMedical entities: - uid: 743 @@ -3569,47 +3493,48 @@ entities: - type: Transform pos: 2.5,3.5 parent: 1 -- proto: LockerCaptainFilled +- proto: LockerChemistryFilled entities: - - uid: 399 + - uid: 512 components: - type: Transform - pos: -1.5,7.5 + pos: 2.5,4.5 parent: 1 -- proto: LockerChemistryFilled +- proto: LockerChiefMedicalOfficer entities: - - uid: 512 + - uid: 227 components: - type: Transform - pos: 2.5,4.5 + pos: -1.5,7.5 parent: 1 - proto: LockerEngineerFilledHardsuit entities: - - uid: 217 + - uid: 590 components: - type: Transform - pos: -10.5,-4.5 + pos: -12.5,-4.5 parent: 1 - proto: LockerMedicalFilled entities: - - uid: 447 + - uid: 445 components: - type: Transform - pos: 9.5,-2.5 + pos: 10.5,-2.5 parent: 1 - proto: LockerParamedicFilledHardsuit entities: - - uid: 625 + - uid: 447 components: - type: Transform - pos: 8.5,-2.5 + pos: 10.5,-3.5 parent: 1 - proto: LockerWallMedicalFilled entities: - - uid: 543 + - uid: 448 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 1 - proto: MachineCentrifuge entities: @@ -3625,24 +3550,22 @@ entities: - type: Transform pos: 5.5,4.5 parent: 1 -- proto: MachineFlatpacker +- proto: MedicalBed entities: - - uid: 188 + - uid: 452 components: - type: Transform - pos: -5.5,1.5 + pos: 10.5,1.5 parent: 1 -- proto: MedicalBed - entities: - - uid: 370 + - uid: 579 components: - type: Transform - pos: 10.5,1.5 + pos: 9.5,2.5 parent: 1 - - uid: 371 + - uid: 580 components: - type: Transform - pos: 11.5,0.5 + pos: 8.5,2.5 parent: 1 - proto: MedicalTechFab entities: @@ -3651,40 +3574,12 @@ entities: - type: Transform pos: 12.5,-1.5 parent: 1 -- proto: MedkitBrute - entities: - - uid: 481 - components: - - type: Transform - pos: 8.212802,2.5 - parent: 1 -- proto: MedkitBurn - entities: - - uid: 487 - components: - - type: Transform - pos: 8.744052,2.5 - parent: 1 - proto: MedkitFilled entities: - - uid: 488 - components: - - type: Transform - pos: 10.5,-2.5 - parent: 1 -- proto: MedkitRadiation - entities: - - uid: 489 - components: - - type: Transform - pos: 9.744052,2.5 - parent: 1 -- proto: MedkitToxin - entities: - - uid: 490 + - uid: 595 components: - type: Transform - pos: 9.244052,2.5 + pos: 7.5,-1.5 parent: 1 - proto: Morgue entities: @@ -3701,37 +3596,39 @@ entities: parent: 1 - proto: NitrogenCanister entities: - - uid: 608 + - uid: 464 components: - type: Transform - pos: -12.5,-3.5 + anchored: True + pos: -11.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: Physics + bodyType: Static - proto: OxygenCanister entities: - - uid: 609 + - uid: 461 components: - type: Transform - pos: -11.5,-2.5 + anchored: True + pos: -12.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 -- proto: PortableGeneratorPacmanShuttle + - type: Physics + bodyType: Static +- proto: PortableGeneratorSuperPacmanShuttle entities: - - uid: 226 + - uid: 176 components: - type: Transform - pos: -6.5,2.5 + pos: -6.5,-1.5 parent: 1 - type: FuelGenerator on: False - type: Physics bodyType: Static - - uid: 227 + - uid: 538 components: - type: Transform - pos: -6.5,1.5 + pos: -7.5,-1.5 parent: 1 - type: FuelGenerator on: False @@ -3767,10 +3664,11 @@ entities: parent: 1 - proto: PosterLegitSafetyMothEpi entities: - - uid: 715 + - uid: 490 components: - type: Transform - pos: 7.5,-0.5 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 parent: 1 - proto: PosterLegitSafetyMothMeth entities: @@ -3795,15 +3693,16 @@ entities: parent: 1 - proto: PosterLegitSMFires entities: - - uid: 711 + - uid: 214 components: - type: Transform - pos: -1.5,-3.5 + rot: 3.141592653589793 rad + pos: -5.5,2.5 parent: 1 - - uid: 716 + - uid: 711 components: - type: Transform - pos: -5.5,2.5 + pos: -1.5,-3.5 parent: 1 - proto: PosterLegitSMHardhats entities: @@ -3845,7 +3744,7 @@ entities: parent: 1 - proto: PowerCellRecharger entities: - - uid: 418 + - uid: 238 components: - type: Transform pos: -0.5,3.5 @@ -3854,71 +3753,48 @@ entities: entities: - uid: 78 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,1.5 parent: 1 - uid: 97 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,7.5 parent: 1 - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 - uid: 211 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - uid: 429 components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,1.5 - parent: 1 - - uid: 432 - components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 10.5,-1.5 + rot: 1.5707963267948966 rad + pos: 7.5,1.5 parent: 1 - uid: 577 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - uid: 740 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 - uid: 741 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-6.5 @@ -3927,29 +3803,26 @@ entities: entities: - uid: 597 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 + - type: PoweredLight + on: False - type: DeviceLinkSink + invokeCounter: 1 links: - 635 - proto: PoweredlightSodium entities: - uid: 415 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -11.5,1.5 parent: 1 - uid: 440 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,-6.5 parent: 1 @@ -3961,6 +3834,11 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 1 + - uid: 513 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 - uid: 542 components: - type: Transform @@ -3979,6 +3857,19 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-4.5 parent: 1 + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 +- proto: Rack + entities: + - uid: 144 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 - proto: Railing entities: - uid: 501 @@ -3995,12 +3886,6 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-0.5 - parent: 1 - uid: 504 components: - type: Transform @@ -4009,11 +3894,6 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 503 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1 - uid: 505 components: - type: Transform @@ -4046,6 +3926,12 @@ entities: - type: Transform pos: 1.5,3.5 parent: 1 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 - proto: RandomPosterLegit entities: - uid: 319 @@ -4053,11 +3939,11 @@ entities: - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 572 + - uid: 523 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-1.5 + pos: -8.5,-1.5 parent: 1 - uid: 692 components: @@ -4065,35 +3951,33 @@ entities: rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - - uid: 696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 1 -- proto: SheetPlasma +- proto: SheetUranium entities: - - uid: 73 + - uid: 213 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 544 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ShuttleWindow + pos: -7.5,-1.5 + parent: 1 +- proto: ShuttersRadiation entities: - - uid: 3 + - uid: 220 components: - type: Transform - pos: -2.5,2.5 + pos: -7.5,-0.5 parent: 1 - - uid: 10 + - type: DeviceLinkSink + links: + - 443 + - uid: 459 components: - type: Transform - pos: -0.5,2.5 + pos: -6.5,-0.5 parent: 1 + - type: DeviceLinkSink + links: + - 443 +- proto: ShuttleWindow + entities: - uid: 38 components: - type: Transform @@ -4153,12 +4037,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 - - uid: 274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - uid: 322 components: - type: Transform @@ -4210,6 +4088,18 @@ entities: - type: Transform pos: -2.5,10.5 parent: 1 + - uid: 485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 - uid: 540 components: - type: Transform @@ -4233,6 +4123,12 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-1.5 parent: 1 + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 - uid: 636 components: - type: Transform @@ -4256,6 +4152,20 @@ entities: parent: 1 - proto: SignalButton entities: + - uid: 443 + components: + - type: MetaData + name: shutters button + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 459: + - Pressed: Toggle + 220: + - Pressed: Toggle - uid: 635 components: - type: MetaData @@ -4264,16 +4174,19 @@ entities: rot: 3.141592653589793 rad pos: 2.5,6.5 parent: 1 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 597: - Pressed: Toggle - proto: SignAtmos entities: - - uid: 691 + - uid: 173 components: - type: Transform - pos: -8.5,-2.5 + rot: 3.141592653589793 rad + pos: -8.5,-0.5 parent: 1 - proto: SignAtmosMinsky entities: @@ -4290,9 +4203,23 @@ entities: rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 +- proto: SignEngine + entities: + - uid: 524 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 632 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 - proto: SignMedical entities: - - uid: 49 + - uid: 73 components: - type: Transform rot: -1.5707963267948966 rad @@ -4352,6 +4279,13 @@ entities: - type: Transform pos: 12.5,-3.5 parent: 1 +- proto: SignSecureMedRed + entities: + - uid: 61 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 - proto: SinkWide entities: - uid: 603 @@ -4362,24 +4296,18 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 43 + - uid: 518 components: - type: Transform - pos: -8.5,2.5 + pos: -7.5,-2.5 parent: 1 - proto: SMESMachineCircuitboard entities: - - uid: 653 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1 -- proto: SpawnPointChemist - entities: - - uid: 346 + - uid: 544 components: - type: Transform - pos: 4.5,4.5 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 parent: 1 - proto: SpawnPointLatejoin entities: @@ -4388,54 +4316,26 @@ entities: - type: Transform pos: -1.5,5.5 parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 395 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 -- proto: SpawnPointParamedic - entities: - - uid: 369 - components: - - type: Transform - pos: 8.5,-1.5 - parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 491 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 98 - components: - - type: Transform - pos: -8.5,0.5 - parent: 1 - proto: StasisBed entities: - - uid: 580 + - uid: 122 components: - type: Transform - pos: 7.5,3.5 + pos: 11.5,0.5 parent: 1 - proto: SubstationBasic entities: - - uid: 214 + - uid: 252 components: - type: Transform - pos: -7.5,-2.5 + pos: -11.5,-1.5 parent: 1 - proto: SubstationMachineCircuitboard entities: - - uid: 683 + - uid: 215 components: - type: Transform - pos: -6.5,-0.5 + pos: -7.5,2.5 parent: 1 - proto: TableReinforced entities: @@ -4464,17 +4364,15 @@ entities: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 629 + - uid: 222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 + pos: -7.5,2.5 parent: 1 - - uid: 631 + - uid: 467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-0.5 + pos: -6.5,2.5 parent: 1 - uid: 679 components: @@ -4484,24 +4382,6 @@ entities: parent: 1 - proto: TableReinforcedGlass entities: - - uid: 18 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 - parent: 1 - - uid: 135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 1 - - uid: 138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 1 - uid: 439 components: - type: Transform @@ -4512,11 +4392,21 @@ entities: - type: Transform pos: 5.5,4.5 parent: 1 + - uid: 486 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 - uid: 498 components: - type: Transform pos: 5.5,3.5 parent: 1 + - uid: 522 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 - uid: 531 components: - type: Transform @@ -4524,16 +4414,15 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 206 + - uid: 454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,3.5 + pos: -0.5,3.5 parent: 1 - - uid: 253 + - uid: 457 components: - type: Transform - pos: -0.5,3.5 + pos: -1.5,3.5 parent: 1 - proto: Thruster entities: @@ -4607,628 +4496,455 @@ entities: parent: 1 - proto: ToolboxElectricalFilled entities: - - uid: 684 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 1 -- proto: VendingMachineChemDrobe - entities: - - uid: 619 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1 -- proto: VendingMachineChemicals - entities: - - uid: 443 - components: - - type: Transform - pos: 3.5,5.5 - parent: 1 -- proto: VendingMachineEngiDrobe - entities: - - uid: 524 - components: - - type: Transform - pos: -12.5,-4.5 - parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 626 + - uid: 494 components: - type: Transform - pos: -6.5,-1.5 + pos: -6.5,2.5 parent: 1 -- proto: VendingMachineMedical +- proto: ToolboxMechanicalFilled entities: - - uid: 522 + - uid: 216 components: - type: Transform - pos: 7.5,-1.5 + pos: -6.5,2.8 parent: 1 -- proto: VendingMachineMediDrobe +- proto: VendingMachineChemicals entities: - - uid: 518 + - uid: 569 components: - type: Transform - pos: 10.5,-3.5 + pos: 2.5,5.5 parent: 1 -- proto: VendingMachineYouTool +- proto: VendingMachineMedical entities: - - uid: 634 + - uid: 625 components: - type: Transform - pos: -7.5,-1.5 + pos: 7.5,3.5 parent: 1 - proto: WallShuttle entities: - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-3.5 parent: 1 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-1.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-2.5 parent: 1 - uid: 17 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-2.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-1.5 parent: 1 - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-1.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-1.5 parent: 1 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-2.5 parent: 1 - uid: 24 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-2.5 parent: 1 - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-3.5 parent: 1 - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-3.5 parent: 1 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-4.5 parent: 1 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-5.5 parent: 1 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-4.5 parent: 1 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-5.5 parent: 1 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-3.5 parent: 1 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-4.5 parent: 1 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-5.5 parent: 1 - uid: 44 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-6.5 parent: 1 - uid: 45 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-7.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-7.5 parent: 1 - uid: 53 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-5.5 parent: 1 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,-4.5 parent: 1 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,-3.5 parent: 1 - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-2.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-1.5 parent: 1 - - uid: 60 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -11.5,-1.5 - parent: 1 - - uid: 61 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -10.5,-1.5 - parent: 1 - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-0.5 parent: 1 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,1.5 parent: 1 - uid: 65 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,2.5 parent: 1 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,3.5 parent: 1 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,3.5 parent: 1 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,4.5 parent: 1 - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,4.5 parent: 1 - uid: 75 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,6.5 parent: 1 - uid: 90 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-1.5 parent: 1 - uid: 92 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-2.5 parent: 1 - uid: 106 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,6.5 parent: 1 - uid: 110 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,5.5 parent: 1 - uid: 112 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,4.5 parent: 1 - uid: 113 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,4.5 parent: 1 - uid: 115 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,8.5 parent: 1 - uid: 116 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,8.5 parent: 1 - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,8.5 parent: 1 - uid: 118 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,8.5 parent: 1 - uid: 119 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,9.5 parent: 1 - uid: 121 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 131 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 8.5,3.5 - parent: 1 - uid: 132 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,3.5 parent: 1 - uid: 134 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,2.5 parent: 1 - uid: 136 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-2.5 parent: 1 - uid: 139 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-3.5 parent: 1 - uid: 141 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,1.5 parent: 1 - uid: 142 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,1.5 parent: 1 - uid: 143 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,0.5 parent: 1 - - uid: 144 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 13.5,-0.5 - parent: 1 - uid: 149 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-0.5 parent: 1 - uid: 150 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-4.5 parent: 1 - uid: 152 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,-5.5 parent: 1 - uid: 153 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-5.5 parent: 1 - uid: 155 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-2.5 parent: 1 - uid: 157 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,-3.5 parent: 1 - uid: 158 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,-4.5 parent: 1 - uid: 159 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 14.5,-5.5 parent: 1 - uid: 163 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-6.5 parent: 1 - uid: 164 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-6.5 parent: 1 - uid: 165 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-7.5 parent: 1 - uid: 212 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-6.5 parent: 1 + - uid: 228 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 - uid: 520 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 - uid: 526 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - uid: 536 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,6.5 parent: 1 - uid: 584 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,6.5 parent: 1 - uid: 606 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 1 - uid: 607 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-5.5 parent: 1 + - uid: 608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 - uid: 620 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 + - uid: 621 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 1 - uid: 649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-5.5 parent: 1 - proto: WallShuttleDiagonal entities: - - uid: 521 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 1 - - uid: 523 + - uid: 491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-4.5 + pos: -12.5,-0.5 parent: 1 - uid: 527 components: @@ -5310,201 +5026,149 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 - - uid: 624 + - uid: 626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + pos: 12.5,-2.5 parent: 1 - proto: WallShuttleInterior entities: - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 7 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,2.5 - parent: 1 - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,2.5 parent: 1 - uid: 81 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,2.5 parent: 1 - uid: 82 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,3.5 parent: 1 - uid: 86 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,3.5 parent: 1 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-2.5 parent: 1 - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 93 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,-1.5 - parent: 1 - uid: 94 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-0.5 parent: 1 - uid: 95 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,1.5 parent: 1 - uid: 96 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,2.5 parent: 1 - uid: 101 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 145 + - uid: 148 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,-0.5 + pos: 11.5,-0.5 parent: 1 - - uid: 146 + - uid: 162 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 8.5,-0.5 + pos: 12.5,-3.5 parent: 1 - - uid: 147 + - uid: 166 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 10.5,-0.5 + rot: -1.5707963267948966 rad + pos: -4.5,2.5 parent: 1 - - uid: 148 + - uid: 204 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,-0.5 + pos: 1.5,6.5 parent: 1 - - uid: 161 + - uid: 209 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 12.5,-2.5 + pos: 1.5,2.5 parent: 1 - - uid: 162 + - uid: 223 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 12.5,-3.5 + pos: -5.5,-0.5 parent: 1 - - uid: 166 + - uid: 313 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 + pos: 9.5,-2.5 parent: 1 - - uid: 204 + - uid: 328 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,6.5 + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 1 - - uid: 209 + - uid: 410 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,2.5 + pos: 9.5,-0.5 parent: 1 - uid: 442 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,6.5 parent: 1 - uid: 446 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,6.5 parent: 1 - uid: 474 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,3.5 parent: 1 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 - uid: 581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 1 - uid: 682 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,3.5 parent: 1 @@ -5529,19 +5193,4 @@ entities: - type: Transform pos: -3.5,5.5 parent: 1 -- proto: WeaponGrapplingGun - entities: - - uid: 739 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/liquidator.yml b/Resources/Maps/_NF/Shuttles/liquidator.yml index 8c445b6a806..64c7d068d7d 100644 --- a/Resources/Maps/_NF/Shuttles/liquidator.yml +++ b/Resources/Maps/_NF/Shuttles/liquidator.yml @@ -4,6 +4,7 @@ meta: tilemap: 0: Space 28: FloorDark + 1: FloorDarkMono 61: FloorLino 63: FloorMetalDiamond 85: FloorSteel @@ -25,19 +26,19 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAcgAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -63,25 +64,30 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 23: -2,-5 - 24: -4,-7 - 25: -4,-5 + 7: -4,-7 + 38: -2,-7 + 39: -3,-7 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 54: 2,2 - 55: 1,-3 + 32: 2,2 + 33: 3,2 + 34: 5,2 + 35: 4,2 - node: color: '#FFFFFFFF' - id: BotLeftGreyscale + id: BotLeft decals: - 52: 5,0 + 36: -2,-7 + 37: -3,-7 - node: - color: '#0096FFFF' - id: BotRightGreyscale + color: '#FFFFFFFF' + id: BoxGreyscale decals: - 30: -2,-7 + 42: 0,1 + 43: 2,-5 + 54: 3,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -118,122 +124,126 @@ entities: decals: 5: -4,1 - node: - color: '#9FED5896' - id: BrickTileSteelLineE + color: '#808080FF' + id: BrickTileSteelCornerNe decals: - 27: -2,-5 + 24: -2,-2 - node: - color: '#9FED5896' - id: BrickTileSteelLineW + color: '#808080FF' + id: BrickTileSteelCornerNw decals: - 26: -4,-5 + 41: -4,-2 - node: - color: '#9FED5896' - id: BrickTileWhiteLineE + color: '#808080FF' + id: BrickTileSteelCornerSe decals: - 11: -2,-2 - 12: -2,-3 - 13: -2,-4 - 29: -2,-5 + 27: -2,-5 - node: - color: '#8932B8FF' - id: BrickTileWhiteLineW + color: '#808080FF' + id: BrickTileSteelCornerSw decals: - 17: 0,-2 - 22: 0,-3 + 20: -4,-5 - node: - color: '#9FED5896' - id: BrickTileWhiteLineW + color: '#808080FF' + id: BrickTileSteelLineE decals: - 8: -4,-4 - 9: -4,-3 - 10: -4,-2 - 28: -4,-5 + 25: -2,-3 + 26: -2,-4 - node: - color: '#F9801DFF' - id: BrickTileWhiteLineW + color: '#808080FF' + id: BrickTileSteelLineN decals: - 7: 4,-3 + 23: -3,-2 - node: - color: '#FFFFFFFF' - id: Caution + color: '#808080FF' + id: BrickTileSteelLineS decals: - 44: 3.0023866,-2.4370086 - 45: 1.9920118,-2.4370086 + 29: -3,-5 - node: - color: '#8932B8FF' - id: CheckerNESW + color: '#808080FF' + id: BrickTileSteelLineW decals: - 14: 1,-1 - 15: 1,0 - 16: 1,1 - 19: 2,-1 - 20: 2,0 - 21: 2,1 + 21: -4,-4 + 22: -4,-3 - node: - color: '#A020F0FF' + color: '#8C347F96' + id: BrickTileWhiteLineW + decals: + 44: 0,-3 + 45: 0,-2 + - node: + color: '#8C347F96' id: CheckerNESW decals: - 39: 1,-2 - 40: 2,-2 + 46: 1,-2 + 47: 2,-2 + 48: 2,-1 + 49: 1,-1 + 50: 1,0 + 51: 2,0 + 52: 2,1 + 53: 1,1 - node: - color: '#FFA500FF' - id: ConcreteTrimLineW + color: '#FFFFFFFF' + id: DeliveryGreyscale decals: - 42: 4,-2 - 43: 4,-3 + 30: 5,-2 + 31: 5,-3 + 55: 0,0 - node: - color: '#B02E26FF' - id: Delivery + color: '#9FED5896' + id: HalfTileOverlayGreyscale decals: - 18: -3,-7 + 19: -3,-2 - node: - color: '#FFFFFFFF' - id: Delivery + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 decals: - 32: 2,-3 - 33: 5,-3 - 34: 4,-3 - 41: 3,-3 + 28: -3,-5 - node: - color: '#18A2D5FF' - id: DeliveryGreyscale + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 decals: - 46: 5,2 + 15: -4,-3 + 16: -4,-4 - node: - color: '#951710FF' - id: DeliveryGreyscale + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 decals: - 47: 5,1 + 17: -2,-3 + 18: -2,-4 - node: color: '#FFFFFFFF' - id: DeliveryGreyscale + id: StandClear decals: - 56: 3,2 + 10: 1,2 + 11: 0,2 - node: - color: '#0096FFFF' - id: LoadingAreaGreyscale + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale decals: - 31: -2,-7 + 40: -4,-2 - node: - color: '#FFFFFFFF' - id: StandClear + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 decals: - 37: 1,2 - 38: 0,2 + 12: -2,-5 - node: - color: '#FFFFFFFF' - id: WarnLineE + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 decals: - 49: 4,2 - 50: 4,1 - 53: 4,0 + 13: -4,-5 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 14: -2,-2 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 35: 0,2 - 36: 1,2 + 8: 0,2 + 9: 1,2 - type: GridAtmosphere version: 2 data: @@ -260,18 +270,19 @@ entities: 0: 65280 2: 14 -1,-2: - 0: 62837 + 0: 63094 -1,-1: 0: 8183 1,-2: - 2: 1 + 2: 8208 1,-1: 0: 816 + 2: 4 -2,1: 1: 8814 2: 1152 -2,0: - 2: 16384 + 2: 17408 -1,0: 0: 1911 uniqueMixes: @@ -336,8 +347,8 @@ entities: parent: 1 - type: DeviceList devices: - - 234 - - 162 + - 36 + - 209 - uid: 396 components: - type: Transform @@ -346,13 +357,12 @@ entities: parent: 1 - type: DeviceList devices: - - 460 - - 278 - - 69 + - 143 + - 208 - 295 - - 335 - - 173 - 22 + - 204 + - 173 - proto: AirlockCommandGlass entities: - uid: 8 @@ -373,32 +383,25 @@ entities: - uid: 9 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 107 - - uid: 11 + - uid: 13 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - type: DeviceLinkSink - links: - - 107 - proto: AirlockGlassShuttle entities: - - uid: 111 + - uid: 220 components: - type: Transform - pos: -1.5,-7.5 + pos: -2.5,-7.5 parent: 1 - - uid: 125 + - uid: 298 components: - type: Transform - pos: -3.5,-7.5 + pos: -1.5,-7.5 parent: 1 - proto: AirlockMaintGlass entities: @@ -421,17 +424,28 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 -- proto: APCBasic +- proto: APCConstructed entities: - - uid: 19 + - uid: 206 components: - - type: MetaData - desc: Only one APC? Dang. - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-3.5 parent: 1 - proto: AtmosDeviceFanTiny entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 - uid: 215 components: - type: Transform @@ -442,18 +456,28 @@ entities: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 246 +- proto: AtmosFixBlockerMarker + entities: + - uid: 194 components: - type: Transform - pos: -3.5,-7.5 + pos: 4.5,-6.5 parent: 1 - - uid: 247 + - uid: 344 components: - type: Transform - pos: -1.5,-7.5 + pos: 6.5,-3.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 5.5,-4.5 parent: 1 -- proto: AtmosFixBlockerMarker - entities: - uid: 389 components: - type: Transform @@ -669,17 +693,12 @@ entities: - type: Transform pos: 3.5,-7.5 parent: 1 - - uid: 450 - components: - - type: Transform - pos: 4.5,-7.5 - parent: 1 - proto: BiomassReclaimer entities: - - uid: 36 + - uid: 273 components: - type: Transform - pos: 2.5,-2.5 + pos: 0.5,0.5 parent: 1 - proto: BlastDoor entities: @@ -699,33 +718,26 @@ entities: - type: DeviceLinkSink links: - 188 -- proto: BoxBeaker - entities: - - uid: 205 - components: - - type: Transform - pos: 5.5545774,-1.3291509 - parent: 1 - proto: BoxBodyBag entities: - - uid: 72 + - uid: 88 components: - type: Transform - pos: 0.7108896,1.719961 + pos: 4.3697853,0.51210666 parent: 1 - proto: BoxCleanerGrenades entities: - - uid: 71 + - uid: 64 components: - type: Transform - pos: 0.7541566,0.7489741 + pos: 4.6158752,0.6244142 parent: 1 - proto: BoxExteriorLightTube entities: - - uid: 60 + - uid: 274 components: - type: Transform - pos: 0.3010316,1.7333491 + pos: 5.0377502,0.4525392 parent: 1 - proto: BoxFolderRed entities: @@ -736,24 +748,17 @@ entities: parent: 1 - proto: BoxLightbulb entities: - - uid: 183 + - uid: 25 components: - type: Transform - pos: 0.3708086,1.3091961 + pos: 5.3346252,0.6400392 parent: 1 - proto: BoxLighttube entities: - - uid: 357 - components: - - type: Transform - pos: 0.76756954,1.2525389 - parent: 1 -- proto: Bucket - entities: - - uid: 64 + - uid: 49 components: - type: Transform - pos: 0.9776434,-0.16575927 + pos: 5.6002502,0.5775392 parent: 1 - proto: CableApcExtension entities: @@ -762,6 +767,21 @@ entities: - type: Transform pos: -3.5,-0.5 parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 - uid: 54 components: - type: Transform @@ -782,6 +802,11 @@ entities: - type: Transform pos: 0.5,4.5 parent: 1 + - uid: 114 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 - uid: 115 components: - type: Transform @@ -792,11 +817,6 @@ entities: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 119 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1 - uid: 133 components: - type: Transform @@ -817,26 +837,11 @@ entities: - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 177 - components: - - type: Transform - pos: 3.5,-7.5 - parent: 1 - - uid: 213 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 1 - uid: 257 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 259 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1 - uid: 261 components: - type: Transform @@ -852,16 +857,6 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 291 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1 - - uid: 300 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 1 - uid: 301 components: - type: Transform @@ -932,35 +927,30 @@ entities: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 344 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1 - - uid: 349 + - uid: 351 components: - type: Transform - pos: 3.5,-2.5 + pos: 0.5,-2.5 parent: 1 - - uid: 351 + - uid: 352 components: - type: Transform - pos: 0.5,-2.5 + pos: 2.5,-2.5 parent: 1 - uid: 353 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 362 + - uid: 355 components: - type: Transform - pos: 0.5,-3.5 + pos: 3.5,-2.5 parent: 1 - - uid: 365 + - uid: 362 components: - type: Transform - pos: 3.5,-4.5 + pos: 0.5,-3.5 parent: 1 - uid: 370 components: @@ -974,55 +964,42 @@ entities: parent: 1 - proto: CableHV entities: - - uid: 42 + - uid: 40 components: - type: Transform - pos: 2.5,-5.5 + pos: 0.5,-5.5 parent: 1 - - uid: 44 + - uid: 55 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 45 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - uid: 394 + - uid: 262 components: - type: Transform - pos: 2.5,-4.5 + pos: 2.5,-5.5 parent: 1 - proto: CableMV entities: - - uid: 142 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - uid: 187 + - uid: 211 components: - type: Transform - pos: 0.5,-5.5 + pos: 0.5,-3.5 parent: 1 - uid: 212 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 352 + - uid: 280 components: - type: Transform pos: 0.5,-4.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 102 + - uid: 286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-5.5 + pos: 0.5,-5.5 parent: 1 - proto: Catwalk entities: @@ -1044,6 +1021,17 @@ entities: rot: 3.141592653589793 rad pos: -6.5,7.5 parent: 1 + - uid: 42 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 - uid: 57 components: - type: Transform @@ -1127,20 +1115,27 @@ entities: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 204 + - uid: 199 components: - type: Transform - pos: 0.5,-4.5 + pos: 5.5,1.5 parent: 1 - - uid: 263 + - uid: 275 components: - type: Transform - pos: 2.5,-4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 parent: 1 - - uid: 312 + - uid: 279 components: - type: Transform - pos: 1.5,-4.5 + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 4.5,1.5 parent: 1 - uid: 313 components: @@ -1179,17 +1174,9 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,4.5 parent: 1 -- proto: ChairOfficeLight +- proto: ChairWood entities: - - uid: 355 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 -- proto: ChairWood - entities: - - uid: 277 + - uid: 277 components: - type: Transform rot: 3.141592653589793 rad @@ -1201,33 +1188,19 @@ entities: rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 1 -- proto: chem_master +- proto: CleanerGrenade entities: - - uid: 348 + - uid: 236 components: - type: Transform - pos: 4.5,-2.5 + pos: -3.7238417,-4.438796 parent: 1 - proto: ClosetRadiationSuitFilled entities: - - uid: 273 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 308 - components: - - type: Transform - pos: 0.3708086,0.88426673 - parent: 1 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 88 + - uid: 232 components: - type: Transform - pos: 5.2889524,-1.2197759 + pos: 2.5,2.5 parent: 1 - proto: ClothingNeckCloakJanitorFilled entities: @@ -1236,26 +1209,19 @@ entities: - type: Transform pos: -1.3020872,1.440808 parent: 1 -- proto: ClothingOuterCoatLabChem - entities: - - uid: 13 - components: - - type: Transform - pos: 4.5874624,-1.5838027 - parent: 1 - proto: ClothingShoesGaloshes entities: - uid: 98 components: - type: Transform - pos: 0.3991487,0.4451735 + pos: -1.7465403,1.5967185 parent: 1 - proto: ClothingShoeSlippersDuck entities: - - uid: 377 + - uid: 321 components: - type: Transform - pos: 0.4846384,0.38614094 + pos: -1.2703607,1.9299184 parent: 1 - proto: ComputerTabletopShuttle entities: @@ -1287,52 +1253,79 @@ entities: ents: [] bank-ATM-cashSlot: !type:ContainerSlot {} - type: ItemSlots +- proto: ConveyorBelt + entities: + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 319 +- proto: CrateSpaceCleaner + entities: + - uid: 97 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 406 + - uid: 26 components: - type: Transform - pos: 5.5,-0.5 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 parent: 1 - proto: DisposalBend entities: - - uid: 206 + - uid: 41 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 parent: 1 - - uid: 211 + - uid: 169 components: - type: Transform - pos: 3.5,-1.5 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 parent: 1 - - uid: 376 + - uid: 310 components: - type: Transform - pos: 0.5,4.5 + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 parent: 1 - proto: DisposalJunctionFlipped entities: - - uid: 171 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + pos: 1.5,-2.5 parent: 1 - proto: DisposalPipe entities: - - uid: 12 + - uid: 21 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,4.5 + pos: -1.5,4.5 parent: 1 - - uid: 21 + - uid: 27 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 1 - uid: 66 components: @@ -1340,27 +1333,68 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-1.5 parent: 1 - - uid: 131 + - uid: 92 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 parent: 1 - - uid: 136 + - uid: 101 components: - type: Transform - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: 0.5,4.5 parent: 1 - - uid: 145 + - uid: 102 components: - type: Transform - pos: 0.5,-0.5 + pos: 1.5,-1.5 parent: 1 - - uid: 146 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 124 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-1.5 + pos: 0.5,-2.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -2.5,-5.5 parent: 1 - uid: 160 components: @@ -1380,37 +1414,60 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 1 - - uid: 191 + - uid: 196 components: - type: Transform - pos: -2.5,-2.5 + pos: 1.5,1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 1.5,-0.5 parent: 1 - uid: 200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 1.5,0.5 parent: 1 - - uid: 245 + - uid: 235 components: - type: Transform - pos: 0.5,3.5 + rot: -1.5707963267948966 rad + pos: 6.5,4.5 parent: 1 - - uid: 334 + - uid: 237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 + pos: 1.5,3.5 parent: 1 - - uid: 367 + - uid: 283 components: - type: Transform - pos: 0.5,0.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 1 - - uid: 368 + - uid: 302 components: - type: Transform - pos: 0.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 parent: 1 - uid: 403 components: @@ -1420,36 +1477,47 @@ entities: parent: 1 - proto: DisposalTrunk entities: + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 - uid: 163 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 parent: 1 - - uid: 350 + - uid: 191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 parent: 1 - proto: DisposalUnit entities: - - uid: 196 + - uid: 70 components: - type: Transform - pos: -2.5,-4.5 + pos: 8.5,4.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -3.5,-6.5 parent: 1 - uid: 332 components: - type: Transform pos: -6.5,4.5 parent: 1 -- proto: Dropper +- proto: DisposalYJunction entities: - - uid: 255 + - uid: 69 components: - type: Transform - pos: 5.480175,-1.6262951 + pos: 1.5,4.5 parent: 1 - proto: EmergencyLight entities: @@ -1514,6 +1582,17 @@ entities: parent: 1 - proto: FirelockGlass entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 - uid: 451 components: - type: Transform @@ -1534,16 +1613,6 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 455 - components: - - type: Transform - pos: -3.5,-5.5 - parent: 1 - - uid: 456 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 1 - proto: FloorDrain entities: - uid: 2 @@ -1553,26 +1622,19 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: GasAnalyzer - entities: - - uid: 26 - components: - - type: Transform - pos: 0.35859585,0.46067148 - parent: 1 -- proto: GasMixer +- proto: GasMixerOn entities: - - uid: 224 + - uid: 213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,-4.5 parent: 1 - type: GasMixer inletTwoConcentration: 0.20999998 inletOneConcentration: 0.79 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 324 @@ -1584,89 +1646,94 @@ entities: color: '#990000FF' - proto: GasPipeBend entities: - - uid: 150 + - uid: 50 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + rot: 3.141592653589793 rad + pos: 2.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 256 + color: '#0055CCFF' + - uid: 61 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,1.5 + pos: 1.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' - - uid: 293 + color: '#0055CCFF' + - uid: 128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 369 + - uid: 195 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + pos: -1.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 409 + - uid: 203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 + rot: 3.141592653589793 rad + pos: -3.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' -- proto: GasPipeFourway - entities: - - uid: 195 + color: '#0055CCFF' + - uid: 244 components: - type: Transform - pos: 0.5,0.5 + rot: 3.141592653589793 rad + pos: -1.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' -- proto: GasPipeStraight - entities: - - uid: 7 + - uid: 247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 + pos: 0.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 31 + - uid: 293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 32 +- proto: GasPipeStraight + entities: + - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,0.5 + pos: -1.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 50 + - uid: 32 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-2.5 + pos: -0.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 68 components: - type: Transform @@ -1674,89 +1741,95 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 92 + - uid: 94 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 + pos: 1.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 124 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-4.5 + pos: -0.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 129 + - uid: 148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 130 + - uid: 150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 148 + - uid: 153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 153 + - uid: 162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 184 + - uid: 178 components: - type: Transform - pos: 0.5,3.5 + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 192 + - uid: 180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 + pos: 2.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 232 + color: '#0055CCFF' + - uid: 183 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-0.5 + pos: 2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 184 + components: + - type: Transform + pos: 0.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 251 + - uid: 193 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 253 + color: '#0055CCFF' + - uid: 222 components: - type: Transform - pos: -2.5,-2.5 + rot: 3.141592653589793 rad + pos: 0.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -1767,13 +1840,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 266 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 271 components: - type: Transform @@ -1781,30 +1847,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 292 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 311 components: - type: Transform @@ -1812,14 +1854,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 361 components: - type: Transform @@ -1830,117 +1864,81 @@ entities: color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 132 + - uid: 147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-0.5 + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 178 + - uid: 167 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: 2.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 180 + - uid: 168 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-4.5 + pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 287 + - uid: 172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 321 + - uid: 179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 + pos: -2.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasPort entities: - - uid: 61 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 167 + - uid: 39 components: - - type: MetaData - name: O2 connector port - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,2.5 + pos: 3.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' - - uid: 399 + color: '#0055CCFF' + - uid: 161 components: - - type: MetaData - name: N2 connector port - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,1.5 + pos: 3.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' -- proto: GasPressurePump + color: '#0055CCFF' +- proto: GasPressurePumpOnMax entities: - - uid: 222 + - uid: 192 components: - - type: MetaData - name: waste loop pump - type: Transform rot: 3.141592653589793 rad - pos: 0.5,2.5 + pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 226 - components: - - type: MetaData - name: N2 pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000CCFF' - - uid: 230 - components: - - type: MetaData - name: distribution pump - - type: Transform - pos: 2.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 279 - components: - - type: MetaData - name: O2 pump - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000CCFF' - proto: GasVentPump entities: - uid: 22 @@ -1948,56 +1946,77 @@ entities: - type: Transform pos: -3.5,2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 396 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 162 + - uid: 36 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-4.5 + pos: 1.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 4 - type: AtmosPipeColor color: '#0055CCFF' - uid: 173 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-3.5 + pos: -2.5,-2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 396 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 335 + - uid: 204 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 1.5,0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 396 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 69 + - uid: 143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 396 - type: AtmosPipeColor color: '#990000FF' - - uid: 234 + - uid: 208 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-4.5 + pos: 1.5,-0.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 396 - type: AtmosPipeColor color: '#990000FF' - - uid: 278 + - uid: 209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 4 - type: AtmosPipeColor color: '#990000FF' - uid: 295 @@ -2005,14 +2024,17 @@ entities: - type: Transform pos: -2.5,2.5 parent: 1 + - type: DeviceNetwork + deviceLists: + - 396 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 319 + - uid: 230 components: - type: Transform - pos: 3.5,-5.5 + pos: 1.5,-5.5 parent: 1 - proto: Grille entities: @@ -2028,49 +2050,18 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-6.5 parent: 1 - - uid: 17 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1 - - uid: 25 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1 - - uid: 27 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1 - uid: 34 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 1 - - uid: 39 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1 - - uid: 41 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - uid: 46 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 47 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 1 - uid: 103 components: - type: Transform @@ -2107,10 +2098,10 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-3.5 parent: 1 - - uid: 220 + - uid: 226 components: - type: Transform - pos: -2.5,-5.5 + pos: 6.5,-1.5 parent: 1 - uid: 240 components: @@ -2130,37 +2121,58 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 1 - - uid: 294 + - uid: 248 components: - type: Transform - pos: 5.5,-3.5 + rot: 3.141592653589793 rad + pos: 1.5,-3.5 parent: 1 - - uid: 298 + - uid: 251 components: - type: Transform - pos: 6.5,-1.5 + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 1 - - uid: 384 + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,3.5 + pos: 4.5,3.5 parent: 1 -- proto: Gyroscope - entities: - - uid: 260 + - uid: 259 components: - type: Transform - pos: 3.5,-4.5 + pos: -0.5,0.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 3.5,3.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 -- proto: HandLabeler +- proto: Gyroscope entities: - - uid: 40 + - uid: 278 components: - type: Transform - pos: 5.6751294,-1.3722651 + rot: 3.141592653589793 rad + pos: -1.5,0.5 parent: 1 - proto: JanitorialTrolley entities: @@ -2172,24 +2184,11 @@ entities: parent: 1 - proto: Jug entities: - - uid: 375 + - uid: 357 components: - - type: MetaData - name: jug (space cleaner) - type: Transform - pos: 4.543024,-1.5893128 + pos: -3.4069247,-4.011713 parent: 1 - - type: SolutionContainerManager - solutions: - beaker: - temperature: 293.15 - canReact: True - maxVol: 200 - name: null - reagents: - - data: null - ReagentId: SpaceCleaner - Quantity: 200 - proto: Lamp entities: - uid: 182 @@ -2200,42 +2199,35 @@ entities: parent: 1 - proto: LockerJanitorFilled entities: - - uid: 208 + - uid: 76 components: - type: Transform - pos: 2.5,2.5 + pos: 3.5,2.5 parent: 1 - proto: MaterialReclaimer entities: - - uid: 203 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1 -- proto: MopItem - entities: - - uid: 101 + - uid: 17 components: - type: Transform - pos: 0.8607421,-0.6631228 + pos: 5.5,-1.5 parent: 1 - proto: NitrogenCanister entities: - - uid: 210 + - uid: 202 components: - type: Transform anchored: True - pos: 5.5,1.5 + pos: 3.5,-5.5 parent: 1 - type: Physics bodyType: Static - proto: OxygenCanister entities: - - uid: 168 + - uid: 60 components: - type: Transform anchored: True - pos: 5.5,2.5 + pos: 3.5,-4.5 parent: 1 - type: Physics bodyType: Static @@ -2256,7 +2248,7 @@ entities: parent: 1 - proto: PortableGeneratorSuperPacmanShuttle entities: - - uid: 166 + - uid: 253 components: - type: Transform pos: 2.5,-5.5 @@ -2265,13 +2257,6 @@ entities: on: False - type: Physics bodyType: Static -- proto: PortableScrubber - entities: - - uid: 5 - components: - - type: Transform - pos: -2.5,-6.5 - parent: 1 - proto: PosterLegitCleanliness entities: - uid: 296 @@ -2281,17 +2266,17 @@ entities: parent: 1 - proto: PottedPlantRandom entities: - - uid: 23 + - uid: 345 components: - type: Transform - pos: -2.5,0.5 + pos: -2.5,-1.5 parent: 1 - proto: PowerCellRecharger entities: - - uid: 114 + - uid: 19 components: - type: Transform - pos: 0.5,1.5 + pos: 4.5,0.5 parent: 1 - proto: PoweredlightEmpty entities: @@ -2309,6 +2294,14 @@ entities: ent: 341 - type: ApcPowerReceiver powerLoad: 100 +- proto: PoweredlightGreen + entities: + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 - proto: PoweredlightLED entities: - uid: 155 @@ -2321,12 +2314,6 @@ entities: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-6.5 - parent: 1 - uid: 221 components: - type: Transform @@ -2345,13 +2332,27 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,1.5 parent: 1 -- proto: PoweredSmallLight +- proto: PoweredlightRed entities: - - uid: 117 + - uid: 187 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,1.5 + pos: -5.5,3.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 1 - proto: Railing entities: @@ -2430,47 +2431,10 @@ entities: parent: 1 - proto: RandomPainting entities: - - uid: 189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 -- proto: RandomSpawner100 - entities: - - uid: 97 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - - uid: 120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - - uid: 236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 1 - - uid: 371 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 - - uid: 374 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 393 + - uid: 86 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + pos: -1.5,-0.5 parent: 1 - proto: ReinforcedWindow entities: @@ -2486,11 +2450,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-3.5 parent: 1 - - uid: 55 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 1 - uid: 63 components: - type: Transform @@ -2503,16 +2462,16 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,1.5 parent: 1 - - uid: 112 + - uid: 111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 + pos: 6.5,-1.5 parent: 1 - - uid: 137 + - uid: 112 components: - type: Transform - pos: 2.5,-3.5 + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 parent: 1 - uid: 140 components: @@ -2520,12 +2479,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 1 - - uid: 147 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 1 - uid: 151 components: - type: Transform @@ -2544,114 +2497,138 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 197 + - uid: 201 components: - type: Transform - pos: 1.5,-3.5 + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 parent: 1 - - uid: 198 + - uid: 210 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 201 + - uid: 227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + pos: -4.5,2.5 parent: 1 - - uid: 202 + - uid: 238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + pos: 6.5,1.5 parent: 1 - - uid: 218 + - uid: 246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 + pos: 4.5,3.5 parent: 1 - - uid: 227 + - uid: 252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 + pos: 5.5,-3.5 parent: 1 - - uid: 238 + - uid: 260 components: - type: Transform - pos: -2.5,-5.5 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 parent: 1 - - uid: 280 + - uid: 287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 1 - - uid: 302 + - uid: 327 components: - type: Transform - pos: 5.5,-3.5 + pos: 3.5,3.5 parent: 1 - - uid: 345 + - uid: 331 components: - type: Transform - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: 1.5,-3.5 parent: 1 - - uid: 346 +- proto: ServiceTechFab + entities: + - uid: 146 components: - type: Transform - pos: 6.5,-1.5 + pos: 5.5,2.5 parent: 1 - proto: SheetUranium entities: - - uid: 199 + - uid: 335 components: - type: Transform - pos: 2.6760316,-5.485401 + pos: 2.506077,-5.438715 parent: 1 - proto: ShipyardLiquidatorInfo entities: - - uid: 143 + - uid: 71 components: - type: Transform - pos: 2.2697816,-5.1477337 + pos: 2.2239702,-5.184417 parent: 1 -- proto: ShuttersRadiationOpen +- proto: ShuttersNormalOpen entities: - - uid: 100 + - uid: 189 components: - type: Transform - pos: 1.5,-6.5 + pos: -2.5,-6.5 parent: 1 - type: DeviceLinkSink links: - - 109 - - uid: 134 + - 245 + - uid: 347 components: - type: Transform - pos: 1.5,-3.5 + pos: -1.5,-6.5 parent: 1 - type: DeviceLinkSink links: - - 109 - - uid: 179 + - 245 +- proto: ShuttersRadiationOpen + entities: + - uid: 100 components: - type: Transform - pos: 0.5,-6.5 + pos: 1.5,-6.5 parent: 1 - type: DeviceLinkSink links: - - 109 - - uid: 193 + - 266 + - uid: 130 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 266 + - uid: 142 components: - type: Transform pos: 2.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 109 + - 266 - uid: 250 components: - type: Transform @@ -2659,7 +2636,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 109 + - 266 - uid: 360 components: - type: Transform @@ -2667,7 +2644,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 109 + - 266 - uid: 372 components: - type: Transform @@ -2675,7 +2652,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 109 + - 266 - uid: 387 components: - type: Transform @@ -2683,7 +2660,7 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 109 + - 266 - uid: 388 components: - type: Transform @@ -2691,51 +2668,47 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 109 -- proto: SignalButtonDirectional + - 266 +- proto: SignalButton entities: - - uid: 107 + - uid: 245 components: - - type: MetaData - name: door bolts switch - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 11: - - Pressed: DoorBolt - 9: - - Pressed: DoorBolt - - uid: 109 + 189: + - Pressed: Toggle + 347: + - Pressed: Toggle + - uid: 266 components: - - type: MetaData - name: radiation shutters switch - type: Transform rot: -1.5707963267948966 rad - pos: -0.5326209,-3.2285466 + pos: -0.52770877,-3.1912308 parent: 1 - type: DeviceLinkSource linkedPorts: - 134: + 130: - Pressed: Toggle - 193: - - Pressed: Toggle - 372: + 142: - Pressed: Toggle 360: - Pressed: Toggle + 372: + - Pressed: Toggle 250: - Pressed: Toggle 388: - Pressed: Toggle 100: - Pressed: Toggle - 179: - - Pressed: Toggle 387: - Pressed: Toggle +- proto: SignalButtonDirectional + entities: - uid: 188 components: - type: MetaData @@ -2751,14 +2724,6 @@ entities: - Pressed: Toggle 186: - Pressed: Toggle -- proto: SignDirectionalJanitor - entities: - - uid: 86 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - proto: SignJanitor entities: - uid: 264 @@ -2799,13 +2764,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 1 -- proto: SMESBasic - entities: - - uid: 49 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 223 @@ -2814,12 +2772,22 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 -- proto: SpawnVehicleJanicart +- proto: SprayBottleSpaceCleaner entities: - - uid: 76 + - uid: 120 components: - type: Transform - pos: 5.5,0.5 + pos: -3.4173415,-4.345046 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -3.4485915,-4.4596295 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -3.2819247,-4.3971295 parent: 1 - proto: SubstationBasic entities: @@ -2828,31 +2796,32 @@ entities: - type: Transform pos: 0.5,-5.5 parent: 1 -- proto: SuitStorageEVAAlternate +- proto: SuitStorageWallmountEVA entities: - - uid: 53 + - uid: 171 components: - type: Transform - pos: -1.5,0.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 1 + - type: Physics + canCollide: False - proto: Table entities: - - uid: 3 + - uid: 23 components: - type: Transform - pos: 0.5,1.5 + pos: -3.5,-4.5 parent: 1 - - uid: 275 + - uid: 72 components: - type: Transform - pos: 0.5,0.5 + pos: 5.5,0.5 parent: 1 -- proto: TableReinforcedGlass - entities: - - uid: 248 + - uid: 343 components: - type: Transform - pos: 5.5,-1.5 + pos: 4.5,0.5 parent: 1 - proto: TableWood entities: @@ -2879,98 +2848,85 @@ entities: parent: 1 - proto: Thruster entities: + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1 - uid: 81 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,3.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 85 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 106 components: - type: Transform pos: 2.5,5.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 1 - - type: Thruster - originalPowerLoad: 1500 - - uid: 252 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-7.5 + pos: 1.5,-7.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 276 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-7.5 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 325 components: - type: Transform pos: 3.5,5.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 -- proto: TrashBag - entities: - - uid: 94 + - uid: 348 components: - type: Transform - pos: 0.97410214,-0.8047657 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 parent: 1 -- proto: VehicleKeyJanicart +- proto: TwoWayLever entities: - - uid: 331 + - uid: 319 components: - type: Transform - pos: -1.7792568,1.4143391 + pos: 3.5,-0.5 parent: 1 -- proto: VendingMachineChemicals + - type: DeviceLinkSource + linkedPorts: + 139: + - Left: Forward + - Right: Forward + - Middle: Off +- proto: VendingMachineJaniDrobe entities: - - uid: 347 + - uid: 249 components: - type: Transform - pos: 5.5,-2.5 + pos: 4.5,2.5 parent: 1 -- proto: VendingMachineJaniDrobe +- proto: WallReinforced entities: - - uid: 70 + - uid: 12 components: - type: Transform - pos: 3.5,2.5 + pos: -3.5,-7.5 parent: 1 -- proto: WallReinforced - entities: - uid: 48 components: - type: Transform @@ -2986,11 +2942,6 @@ entities: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 93 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - uid: 105 components: - type: Transform @@ -3011,67 +2962,56 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 1 - uid: 135 components: - type: Transform pos: -0.5,3.5 parent: 1 - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 1 - uid: 165 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 169 + - uid: 185 components: - type: Transform - pos: 6.5,0.5 + pos: -4.5,-1.5 parent: 1 - - uid: 172 + - uid: 216 components: - type: Transform - pos: 6.5,2.5 + pos: -0.5,-6.5 parent: 1 - - uid: 185 + - uid: 217 components: - type: Transform - pos: -4.5,-1.5 + pos: -0.5,-5.5 parent: 1 - - uid: 209 + - uid: 218 components: - type: Transform - pos: 6.5,-3.5 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 parent: 1 - - uid: 216 + - uid: 224 components: - type: Transform - pos: -0.5,-6.5 + pos: 6.5,2.5 parent: 1 - - uid: 217 + - uid: 288 components: - type: Transform - pos: -0.5,-5.5 + pos: 6.5,-2.5 parent: 1 - - uid: 244 + - uid: 322 components: - type: Transform - pos: 4.5,-6.5 + pos: 6.5,0.5 parent: 1 - - uid: 283 + - uid: 329 components: - type: Transform - pos: -2.5,-7.5 + pos: 5.5,3.5 parent: 1 - uid: 402 components: @@ -3079,18 +3019,27 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 -- proto: WallSolid +- proto: WallReinforcedDiagonal entities: - - uid: 24 + - uid: 291 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-0.5 + pos: 4.5,-6.5 parent: 1 - - uid: 28 + - uid: 292 components: - type: Transform - pos: 0.5,-3.5 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 1 - uid: 30 components: @@ -3108,6 +3057,11 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,3.5 parent: 1 + - uid: 136 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 - uid: 219 components: - type: Transform @@ -3119,20 +3073,26 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 1 + - uid: 234 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 - uid: 239 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 342 + - uid: 299 components: - type: Transform - pos: -0.5,-3.5 + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 - - uid: 400 + - uid: 342 components: - type: Transform - pos: 4.5,-0.5 + pos: -0.5,-3.5 parent: 1 - uid: 401 components: @@ -3147,52 +3107,18 @@ entities: rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 -- proto: WaterTankHighCapacity - entities: - - uid: 286 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 1 - proto: WindoorSecure entities: - - uid: 139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,1.5 - parent: 1 - - uid: 235 + - uid: 300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 1 - - uid: 364 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-1.5 parent: 1 - - uid: 383 + - uid: 308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 363 - components: - - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 -- proto: Wrench - entities: - - uid: 408 - components: - - type: Transform - pos: 2.6283937,-5.1236 - parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/mailtruck.yml b/Resources/Maps/_NF/Shuttles/parcel.yml similarity index 79% rename from Resources/Maps/_NF/Shuttles/mailtruck.yml rename to Resources/Maps/_NF/Shuttles/parcel.yml index a75945a8c94..da513c6ae91 100644 --- a/Resources/Maps/_NF/Shuttles/mailtruck.yml +++ b/Resources/Maps/_NF/Shuttles/parcel.yml @@ -25,15 +25,15 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAWAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -55,148 +55,138 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#4D65B4FF' + id: BotLeftGreyscale + decals: + 38: 1,-1 - node: color: '#4D65B4FF' id: MiniTileWhiteCornerNe decals: - 24: 6,1 + 13: 6,1 - node: color: '#4D65B4FF' id: MiniTileWhiteCornerNw decals: - 9: 0,1 + 36: -1,1 - node: color: '#4D65B4FF' id: MiniTileWhiteCornerSe decals: - 5: 1,-3 - 6: 6,-3 + 2: 6,-3 + 32: 0,-3 - node: color: '#4D65B4FF' id: MiniTileWhiteCornerSw decals: - 4: 0,-3 - 7: 5,-3 + 3: 5,-3 + 33: -1,-3 - node: color: '#4D65B4FF' id: MiniTileWhiteInnerSe decals: - 29: 1,-1 + 31: 0,-1 - node: color: '#4D65B4FF' id: MiniTileWhiteInnerSw decals: - 28: 5,-1 + 17: 5,-1 - node: color: '#4D65B4FF' id: MiniTileWhiteLineE decals: - 8: 6,-1 - 23: 6,0 + 4: 6,-1 + 12: 6,0 - node: color: '#4D65B4FF' id: MiniTileWhiteLineN decals: - 10: 1,1 - 11: 2,1 - 12: 3,1 - 14: 5,1 - 39: 4,1 + 5: 1,1 + 6: 2,1 + 7: 3,1 + 8: 5,1 + 22: 4,1 + 37: 0,1 - node: color: '#4D65B4FF' id: MiniTileWhiteLineS decals: - 25: 2,-1 - 26: 3,-1 - 27: 4,-1 + 14: 2,-1 + 15: 3,-1 + 16: 4,-1 + 39: 1,-1 - node: color: '#4D65B4FF' id: MiniTileWhiteLineW decals: - 15: 0,0 - 16: 0,-1 + 34: -1,-1 + 35: -1,0 - node: color: '#B33831FF' id: StandClearGreyscale decals: - 18: 5,1 + 9: 5,1 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 42: 4,3 + 25: 4,3 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 1: 1,-4 - 3: 6,-4 - 22: 5,2 - 34: 0,-2 - 35: 1,-2 - 36: 5,-2 - 37: 6,-2 - 41: 5,2 + 1: 6,-4 + 11: 5,2 + 20: 5,-2 + 21: 6,-2 + 24: 5,2 + 27: -1,-2 + 28: 0,-2 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 43: 4,3 + 26: 4,3 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 0: 1,-4 - 2: 6,-4 - 20: 5,2 + 0: 6,-4 + 10: 5,2 + 18: 5,-2 + 19: 6,-2 + 23: 5,2 + 29: -1,-2 30: 0,-2 - 31: 1,-2 - 32: 5,-2 - 33: 6,-2 - 40: 5,2 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 1 - 1: 254 - 2: 61440 + 0: 255 + 1: 61440 0,-1: - 1: 62258 - 2: 136 - 0,1: - 2: 15 + 0: 61713 + 1: 204 -1,0: - 2: 50244 + 0: 136 + 1: 57890 + 0,1: + 1: 15 -1,1: - 2: 12 + 1: 14 1,0: - 1: 12915 - 3: 4 - 2: 32768 + 0: 12919 + 1: 32768 1,-1: - 1: 30308 + 0: 30308 1,1: - 2: 8 + 1: 8 -1,-1: - 2: 17476 + 1: 8738 + 0: 34944 uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 23.57087 - - 88.67137 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 293.15 moles: @@ -227,48 +217,24 @@ 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: GasTileOverlay - type: RadiationGridResistance -- proto: AirCanister - entities: - - uid: 154 - components: - - type: Transform - anchored: True - pos: 4.5,-0.5 - parent: 1 - - type: Physics - bodyType: Static -- proto: AirlockExternalGlass +- proto: AirlockExternalGlassMailCarrierLocked entities: - - uid: 14 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 -- proto: AirlockExternalGlassMailCarrierLocked - entities: - - uid: 11 + - type: DeviceLinkSink + links: + - 222 + - uid: 10 components: - type: Transform - pos: 1.5,-1.5 + pos: 5.5,-1.5 parent: 1 - uid: 63 components: @@ -276,24 +242,22 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 1 - - uid: 67 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 1 - uid: 70 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-1.5 parent: 1 - - uid: 127 + - uid: 181 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 1 + - uid: 182 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 - proto: AirlockGlassShuttle entities: - uid: 19 @@ -301,10 +265,10 @@ entities: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 87 + - uid: 183 components: - type: Transform - pos: 1.5,-3.5 + pos: 0.5,-3.5 parent: 1 - proto: APCBasic entities: @@ -327,82 +291,67 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,3.5 parent: 1 - - uid: 29 + - uid: 151 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 30 + - uid: 163 components: - type: Transform - pos: 1.5,-3.5 + pos: -0.5,-3.5 parent: 1 - proto: AtmosFixBlockerMarker entities: - - uid: 78 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1 - - uid: 95 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1 - - uid: 113 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - uid: 143 + - uid: 20 components: - type: Transform - pos: 3.5,-2.5 + pos: -2.5,3.5 parent: 1 - - uid: 165 + - uid: 28 components: - type: Transform - pos: 7.5,4.5 + pos: -1.5,3.5 parent: 1 - - uid: 170 + - uid: 29 components: - type: Transform - pos: -1.5,-2.5 + pos: -2.5,2.5 parent: 1 - - uid: 171 + - uid: 78 components: - type: Transform - pos: -1.5,-1.5 + pos: 7.5,3.5 parent: 1 - - uid: 172 + - uid: 85 components: - type: Transform - pos: -1.5,-0.5 + pos: -1.5,4.5 parent: 1 - - uid: 173 + - uid: 97 components: - type: Transform - pos: -1.5,0.5 + pos: 2.5,-2.5 parent: 1 - - uid: 174 + - uid: 113 components: - type: Transform - pos: -1.5,1.5 + pos: 3.5,3.5 parent: 1 - - uid: 175 + - uid: 117 components: - type: Transform - pos: -1.5,2.5 + pos: -2.5,-1.5 parent: 1 - - uid: 176 + - uid: 165 components: - type: Transform - pos: -1.5,3.5 + pos: 7.5,4.5 parent: 1 - - uid: 177 + - uid: 171 components: - type: Transform - pos: -1.5,4.5 + pos: -2.5,4.5 parent: 1 - uid: 184 components: @@ -454,6 +403,41 @@ entities: - type: Transform pos: 3.5,-3.5 parent: 1 + - uid: 201 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 - proto: BoxMailCapsulePrimed entities: - uid: 37 @@ -468,11 +452,11 @@ entities: parent: 1 - proto: ButtonFrameExit entities: - - uid: 156 + - uid: 35 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: 1.5,-2.5 parent: 1 - uid: 157 components: @@ -480,78 +464,153 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 + - uid: 221 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 - proto: CableApcExtension entities: + - uid: 9 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 - uid: 17 components: - type: Transform - pos: 6.5,-1.5 + pos: 3.5,-0.5 parent: 1 - uid: 23 components: - type: Transform - pos: 3.5,0.5 + pos: 4.5,2.5 parent: 1 - uid: 25 components: - type: Transform - pos: 2.5,0.5 + pos: 3.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 1.5,-0.5 parent: 1 - uid: 33 components: - type: Transform pos: 7.5,-0.5 parent: 1 - - uid: 80 + - uid: 55 components: - type: Transform - pos: 0.5,-0.5 + pos: -1.5,2.5 parent: 1 - - uid: 81 + - uid: 98 components: - type: Transform - pos: 0.5,-1.5 + pos: 5.5,3.5 parent: 1 - uid: 104 components: - type: Transform - pos: 5.5,0.5 + pos: 2.5,-0.5 parent: 1 - uid: 114 components: - type: Transform - pos: 4.5,0.5 + pos: 2.5,2.5 parent: 1 - uid: 115 components: - type: Transform - pos: 1.5,0.5 + pos: 1.5,2.5 parent: 1 - uid: 118 components: - type: Transform pos: 6.5,0.5 parent: 1 - - uid: 136 + - uid: 125 components: - type: Transform - pos: 0.5,0.5 + pos: 5.5,1.5 parent: 1 - - uid: 145 + - uid: 133 components: - type: Transform - pos: 6.5,-0.5 + pos: -0.5,-2.5 parent: 1 - - uid: 147 + - uid: 145 components: - type: Transform - pos: 3.5,-0.5 + pos: 6.5,-0.5 parent: 1 - uid: 148 components: - type: Transform pos: 6.5,1.5 parent: 1 + - uid: 150 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 - proto: CableHV entities: - uid: 94 @@ -643,30 +702,64 @@ entities: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 129 + - uid: 86 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: -2.5,4.5 parent: 1 - - uid: 134 + - uid: 103 components: - type: Transform - pos: -1.5,2.5 + rot: -1.5707963267948966 rad + pos: -2.5,2.5 parent: 1 - - uid: 160 + - uid: 116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + pos: -2.5,1.5 parent: 1 -- proto: ChairOfficeLight - entities: - - uid: 116 + - uid: 120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5087351,0.69835764 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5537621,0.6666666 parent: 1 - proto: ClosetWall entities: @@ -712,18 +805,18 @@ entities: parent: 1 - proto: ComputerTabletopShuttle entities: - - uid: 45 + - uid: 180 components: - type: Transform - pos: 1.5,1.5 + pos: 0.5,1.5 parent: 1 - proto: ComputerTabletopStationRecords entities: - - uid: 71 + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: -0.5,0.5 parent: 1 - proto: ComputerWallmountWithdrawBankATM entities: @@ -741,11 +834,11 @@ entities: ents: [] bank-ATM-cashSlot: !type:ContainerSlot {} - type: ItemSlots - - uid: 68 + - uid: 26 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-3.5 + pos: 1.5,-3.5 parent: 1 - type: Physics canCollide: False @@ -757,11 +850,11 @@ entities: - type: ItemSlots - proto: DefibrillatorCabinetFilled entities: - - uid: 44 + - uid: 89 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-2.5 + pos: -1.5,-2.5 parent: 1 - proto: DogBed entities: @@ -794,35 +887,56 @@ entities: parent: 1 - proto: FaxMachineShip entities: - - uid: 88 + - uid: 179 components: - type: Transform - pos: 0.5,1.5 + pos: -0.5,1.5 parent: 1 - proto: Floodlight entities: - - uid: 151 + - uid: 219 + components: + - type: Transform + pos: -2.4418511,4.487601 + parent: 1 +- proto: GasMixerOnFlipped + entities: + - uid: 236 components: - type: Transform - pos: -1.4297498,2.745983 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 parent: 1 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPassiveVent entities: - - uid: 199 + - uid: 50 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 + rot: 3.141592653589793 rad + pos: 2.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend entities: - - uid: 200 + - uid: 136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 52 + components: + - type: Transform + pos: 2.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -835,31 +949,65 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 201 + - uid: 195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPort entities: - - uid: 9 + - uid: 2 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' +- proto: GasPressurePumpOn + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentPump entities: - - uid: 150 + - uid: 200 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 1.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -872,64 +1020,95 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 103 + - uid: 14 components: - type: Transform - pos: -1.5,-1.5 + pos: 2.5,-2.5 parent: 1 - proto: Grille entities: - - uid: 26 + - uid: 67 components: - type: Transform - pos: 1.5,2.5 + rot: 3.141592653589793 rad + pos: -0.5,2.5 parent: 1 - - uid: 43 + - uid: 68 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 52 + - uid: 79 components: - type: Transform - pos: 7.5,-1.5 + rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 1 - - uid: 76 + - uid: 80 components: - type: Transform - pos: -0.5,1.5 + rot: 3.141592653589793 rad + pos: 1.5,2.5 parent: 1 - - uid: 100 + - uid: 81 components: - type: Transform - pos: 2.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 1 - - uid: 117 + - uid: 82 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 parent: 1 - - uid: 120 + - uid: 87 components: - type: Transform - pos: -0.5,-1.5 + rot: 3.141592653589793 rad + pos: 2.5,2.5 parent: 1 - - uid: 124 + - uid: 134 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,2.5 + pos: -1.5,0.5 parent: 1 - - uid: 125 + - uid: 147 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 + - uid: 177 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 - proto: Gyroscope entities: - uid: 15 @@ -942,15 +1121,15 @@ entities: originalPowerLoad: 1500 - proto: LockableButtonMailCarrier entities: - - uid: 158 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-2.5 + pos: 1.5,-2.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 79: + 3: - Pressed: Toggle - uid: 159 components: @@ -962,17 +1141,46 @@ entities: linkedPorts: 123: - Pressed: Toggle + - uid: 222 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 223: + - Pressed: Toggle +- proto: NitrogenCanister + entities: + - uid: 100 + components: + - type: Transform + anchored: True + pos: 4.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: OxygenCanister + entities: + - uid: 211 + components: + - type: Transform + anchored: True + pos: 3.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static - proto: PlasticFlapsAirtightClear entities: - - uid: 55 + - uid: 4 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 86 + - uid: 172 components: - type: Transform - pos: 0.5,-3.5 + pos: -0.5,-3.5 parent: 1 - proto: PortableGeneratorPacmanShuttle entities: @@ -987,45 +1195,59 @@ entities: bodyType: Static - proto: PowerCellRecharger entities: - - uid: 161 + - uid: 202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 + rot: 3.141592653589793 rad + pos: 1.5,1.5 parent: 1 - proto: Poweredlight entities: - - uid: 41 + - uid: 155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + rot: -1.5707963267948966 rad + pos: 3.5,4.5 parent: 1 - - uid: 61 + - uid: 174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,-0.5 parent: 1 - - uid: 155 + - uid: 176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 +- proto: Rack + entities: + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 1 - proto: Railing entities: + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 - uid: 75 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 1 - - uid: 133 + - uid: 131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 + rot: 3.141592653589793 rad + pos: -1.5,4.5 parent: 1 - uid: 137 components: @@ -1051,72 +1273,107 @@ entities: rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 131 + - uid: 170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,2.5 + pos: -2.5,3.5 parent: 1 - - uid: 132 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: RailingCorner + entities: + - uid: 175 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,4.5 + pos: -2.5,4.5 parent: 1 - proto: ReinforcedWindow entities: - - uid: 8 + - uid: 11 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + rot: 3.141592653589793 rad + pos: 3.5,2.5 parent: 1 - - uid: 10 + - uid: 42 components: - type: Transform - pos: -0.5,1.5 + rot: 3.141592653589793 rad + pos: -1.5,0.5 parent: 1 - - uid: 27 + - uid: 76 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 1 - - uid: 34 + - uid: 124 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 1 - - uid: 50 + - uid: 127 components: - type: Transform - pos: -0.5,-1.5 + rot: 3.141592653589793 rad + pos: 0.5,2.5 parent: 1 - - uid: 54 + - uid: 132 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,2.5 + pos: -1.5,2.5 parent: 1 - - uid: 85 + - uid: 135 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 162 + - uid: 143 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 1 - - uid: 167 + - uid: 173 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 224 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - proto: ServiceTechFab @@ -1162,14 +1419,14 @@ entities: - type: InsideEntityStorage - proto: ShuttersNormalOpen entities: - - uid: 79 + - uid: 3 components: - type: Transform - pos: 1.5,-3.5 + pos: 0.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 158 + - 153 - uid: 123 components: - type: Transform @@ -1178,13 +1435,20 @@ entities: - type: DeviceLinkSink links: - 159 + - uid: 223 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 222 - proto: SignMail entities: - - uid: 84 + - uid: 101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 + pos: -1.5,-3.5 parent: 1 - uid: 112 components: @@ -1206,6 +1470,24 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 1 +- proto: SmallThruster + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - type: Thruster + originalPowerLoad: 500 - proto: SpawnPointLatejoin entities: - uid: 90 @@ -1236,8 +1518,8 @@ entities: - uid: 13 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 parent: 1 - uid: 16 components: @@ -1245,10 +1527,11 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 1 - - uid: 20 + - uid: 34 components: - type: Transform - pos: 0.5,-3.5 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 parent: 1 - uid: 36 components: @@ -1267,16 +1550,10 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 97 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - - uid: 135 + - uid: 95 components: - type: Transform - pos: 2.5,-0.5 + pos: -0.5,-3.5 parent: 1 - uid: 142 components: @@ -1291,60 +1568,46 @@ entities: parent: 1 - proto: Thruster entities: - - uid: 3 + - uid: 45 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 1 - - type: Thruster - originalPowerLoad: 1500 - - uid: 4 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + pos: 2.5,-3.5 parent: 1 - type: Thruster originalPowerLoad: 1500 - - uid: 82 + - uid: 122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 parent: 1 - type: Thruster originalPowerLoad: 1500 - - uid: 101 + - uid: 161 components: - type: Transform - pos: -1.5,-0.5 + pos: 7.5,4.5 parent: 1 - type: Thruster originalPowerLoad: 1500 - - uid: 122 + - uid: 162 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: -2.5,-3.5 parent: 1 - type: Thruster originalPowerLoad: 1500 - proto: ToolboxMechanicalFilled entities: - - uid: 153 + - uid: 154 components: - type: Transform - pos: 3.423067,-0.39479744 + pos: 2.486192,-0.33646524 parent: 1 - proto: WallReinforced entities: - - uid: 2 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 - parent: 1 - uid: 6 components: - type: Transform @@ -1356,21 +1619,10 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-2.5 parent: 1 - - uid: 28 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 1 - - uid: 40 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1 - - uid: 42 + - uid: 41 components: - type: Transform - pos: -0.5,-2.5 + pos: 1.5,-3.5 parent: 1 - uid: 47 components: @@ -1390,23 +1642,28 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - - uid: 89 + - uid: 84 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 parent: 1 - - uid: 98 + - uid: 88 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 + pos: 1.5,-2.5 parent: 1 - uid: 102 components: @@ -1455,11 +1712,10 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 1 - - uid: 163 + - uid: 158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 + pos: -1.5,-2.5 parent: 1 - uid: 164 components: @@ -1467,13 +1723,23 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 1 + - uid: 169 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 1 - proto: WallReinforcedDiagonal entities: - - uid: 35 + - uid: 212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 + pos: -2.5,-1.5 parent: 1 - proto: WarpPointShip entities: diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index db359351e79..0400f602117 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -26,6 +26,8 @@ - Research - Service - StationTrafficController # Frontier + - Sergeant # Frontier + - Bailiff # Frontier - Maintenance - External - Janitor diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml index fd0fc39e459..5457852f775 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cart.yml @@ -1,8 +1,8 @@ - type: vendingMachineInventory id: PTechInventory startingInventory: - PassengerPDA: 5 - ClearPDA: 5 + ContractorPDA: 5 # Frontier: PassengerPDA + # Felinids + + + + + + Small and mischievous cat-eared people. Being small in itself has lots of upsides and downsides. They can hide inside duffelbags. + + ## Diet + + - Can eat raw meat. + - Will get poisoned by Theobromine (Chocolate, Tea, Coffee) and Allicin (Onion, Garlic). + + ## Benefits + + - They are smaller than Humans, making them harder to hit. + - Can fit in duffelbags. + - Have the ability to throw up an hairball to get rid of some of the chemicals from their bloodstream. + - Able to eat mice and rats after picking them up. This has the benefit of regenerating the hairball ability and feeding them. + - Uses their claws to do Slashing damage and Piercing damage. + - Can walk completely silently, but only while barefooted. + - Immunity to the OwOnavirus disease. + + ## Drawbacks + + - Takes 15% more Blunt, Slash and Piercing damage. + - Are easily shoved, pushed and carried around by every other morphotypes due to their small size. + - They are weaker and struggle to carry and pull things due to their small size. They are unable to carry an Oni. + - They have slightly less stamina than Humans. + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Harpy.xml b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Harpy.xml new file mode 100644 index 00000000000..0744e53d2b6 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Harpy.xml @@ -0,0 +1,39 @@ + + # Harpies + + + + + + An avian humanoid species that features colorful feathered wings and tails that can mimic almost any sound. + + They are quite sensitive to the air quality, and when exposed to low quality air, they will begin to visibly gasp, and eventually start choking. + When this happens, a Harpy should either move away from sources of bad air, stand on top of a scrubber for a few seconds, or take a few breaths from a pure oxygen tank in order to restore their blood-oxygen levels. Only three seconds of being on pure oxygen is enough to completely restore a Harpy's blood oxygen saturation. + + ## Diet + + - Can eat raw meat. + - Will get poisoned by Theobromine (Chocolate, Tea, Coffee) and Allicin (Onion, Garlic). + + ## Benefits + + - Somewhat smaller than Humans, although not as small as Felinids + - Uses their talons to deal Piercing damage + - Can imitate around 70% of the game's sound library through a huge list of voice emotes + - They can "Sing" midis by imitating instruments. Right click yourself to select an instrument + + ## Special + + - Comes with the Ultraviolet Vision trait by default. This can be disabled via accessibility options. + - Cannot wear Jumpsuits, and will automatically start with a Jumpskirt instead. + - While singing, musical notes appear floating around their head. + + ## Drawbacks + + - Takes 15% more Blunt, Slash, and Piercing damage. + - Extreme low density, Harpies are lighter than even Felinids, and weigh half as much as a Human. + - A Harpy breathes in air twice as often as Humans, inhaling and exhaling every 3 seconds. + - - Air tanks last half as long and Harpies are more susceptible than usual to low air quality. + - - If a Harpy is exposed to at least 0.2 moles of combined CO2 and/or Miasma, they start struggling to take in oxygen. + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Oni.xml b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Oni.xml new file mode 100644 index 00000000000..c284e9602d2 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Oni.xml @@ -0,0 +1,26 @@ + + # Onis + + + + + + Large, horned people that come in a variety of colors. Their accuracy with guns is terrible, but their physical strength brings them a lot of boons both in and out of combat. + + ## Diet + - Nothing special. + + ## Benefits + - Takes 15% less Blunt, Slash and Piercing damage. + - Does more damage in melee; 35% more Blunt and Asphyxiation, 20% more Slash and Piercing. + - Due to their big size, they can easily carry, shove and pull any other morphotypes. + - They are harder to shove. + - Slightly more stamina than Humans. + - They have an easier time prying open doors, taking around 50% less time than other species. + + ## Drawbacks + - Their accuracy with guns is terrible. + - They are harder to carry and pull. + - They are bigger than Humans, making them easier to hit. + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Vulpkanin.xml b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Vulpkanin.xml new file mode 100644 index 00000000000..97c10bbc982 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/DeltaV/Vulpkanin.xml @@ -0,0 +1,28 @@ + + # Vulpkanin + + + + + + The Vulpkanin (vulp-ka-nin) are a race of humanoid canine-like beings. + + ## Diet + + - Can eat raw meat. + - Will get poisoned by Theobromine (Chocolate, Tea, Coffee) and Allicin (Onion, Garlic). + + ## Benefits + + - Uses their claws to do some Slashing and Blunt damage. + - Their fur makes them able to withstand cold environments without the need of a coat. + + ## Special + + - Comes with the Deuteranopia trait by default. This can be disabled via accessibility options. + + ## Drawbacks + + - They take 15% more Heat damage. + + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Species.xml b/Resources/ServerInfo/Guidebook/Mobs/Species.xml index 5fb4ca741e0..cbfacbc059e 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Species.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Species.xml @@ -15,4 +15,16 @@ + # Frontier specific species + + + + # Delta-V specific species + + + + + + + diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Carp.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Carp.xml deleted file mode 100644 index 4a35446a2b9..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Carp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Carp - -A land-dwelling version of the hostile space fauna, these carp have adapted to life under gravity. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Cultists.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Cultists.xml deleted file mode 100644 index e02407bae93..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Cultists.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Cultists - -Servants of Nar'Sie, these fanatics will stop at nothing to raise their sleeping goddess. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Dinosaurs.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Dinosaurs.xml deleted file mode 100644 index 92b92875289..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Dinosaurs.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Dinosaurs - -Megafauna from our more savage worlds, these behemoths pose a risk to corporate property. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Explorers.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Explorers.xml deleted file mode 100644 index 711413f4a17..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Explorers.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Explorers - -An independent group of scavengers squatting on corporate land. Help enforce our claim over their little nest. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Flesh.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Flesh.xml deleted file mode 100644 index d67fe0f5436..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Flesh.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Flesh - -Biological abominations from experiments gone awry, these shambling freaks are a menace. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Gangers.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Gangers.xml deleted file mode 100644 index ada566e5d29..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Gangers.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Gangers - -Urchins, miscreants, and other social detritus banded together. Disorganized and chaotic, they're a nuisance. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Mercenaries.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Mercenaries.xml deleted file mode 100644 index fc1a0615e26..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Mercenaries.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Mercenaries - -Death squads for hire from the various fringes of space. Shouldn't have contracted work in Nanotrasen's territory. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Silicons.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Silicons.xml deleted file mode 100644 index d48fd3db44d..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Silicons.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Silicons - -Rogue robots, drones, and other silicon intelligences. Valuable scrap, if nothing else. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Syndicate.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Syndicate.xml deleted file mode 100644 index 42f5dbcad0b..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Syndicate.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Syndicate - -Agents from hostile corporations. Handle with extreme prejudice. - diff --git a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Xenos.xml b/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Xenos.xml deleted file mode 100644 index 4f7388a3107..00000000000 --- a/Resources/ServerInfo/_NF/Guidebook/ExpeditionFactions/Xenos.xml +++ /dev/null @@ -1,5 +0,0 @@ - - # Xenos - -Various nests of highly territorial alien bioweapons. Smoke 'em out. - diff --git a/Resources/ServerInfo/_NF/Guidebook/Expeditions.xml b/Resources/ServerInfo/_NF/Guidebook/Expeditions.xml index 71ae15720a1..b68b10118f5 100644 --- a/Resources/ServerInfo/_NF/Guidebook/Expeditions.xml +++ b/Resources/ServerInfo/_NF/Guidebook/Expeditions.xml @@ -1,33 +1,170 @@ # Salvage Expeditions - - - - Expeditions are adventures that you can go on with your crew.[br][/br] -Your ship will jump to a planet and you need to complete an objective in a limited time.[br][/br] -When that time runs out, the ship jumps back, [bold]whether you're on it or not[/bold]. - -Ships purchased at Frontier Outpost [bold]cannot[/bold] go on expedition, but [italic]any purchased at [bold]Expeditionary Lodge[/bold] can[/italic]. -You will need to use the [color=#a4885c]salvage console[/color] onboard. - -To go on an expedition: -- Pilot your ship so there is 200 m of empty space in each direction. -- Use the [color=#a4885c]salvage console[/color]. -- Pick one of the five missions offered to you. -- Note the enemy, conditions, total time, and objectives for the mission. -- Buckle into a seat to avoid falling down. - -Tips for expeditions: -- Start with easier missions and progress to harder ones as you get better equipped. -- Different enemy types have different strengths and weaknesses. Vary your loadout to best deal with each. -- If you don't think you can win a fight, don't take it. - -When you arrive on-site, you'll be told which direction the objective is in. -There'll be a building in that direction; break in and complete your objective. -Note: North is towards the top of the screen in default rotation (NUMPAD 8). - -While planetside, you can't communicate via radio with the wider Frontier Sector. -If you don't have a [color=#a4885c]telecommunication server[/color] on your ship, your headset won't work. -Note that [color=#a4885c]handheld radios[/color] work without a server. - + + + + + When going on expedition, your ship will jump to a planet and you need to complete an objective in a limited time. + When that time runs out, the ship jumps back, [bold]whether you're on it or not[/bold]. + + Ships purchased at Frontier Outpost [bold]cannot[/bold] go on expedition, but [italic]any purchased at [bold]Expeditionary Lodge[/bold] can[/italic]. + You will need to use the [color=#a4885c]salvage console[/color] onboard. + + To go on an expedition: + - Pilot your ship so there is 200 m of empty space in each direction. + - Use the [color=#a4885c]salvage console[/color]. + - Pick one of the five missions offered to you. + - Note the enemy, conditions, total time, and objectives for the mission. + - Buckle into a seat to avoid falling down. + + Tips for expeditions: + - Start with easier missions and progress to harder ones as you get better equipped. + - Different enemy types have different strengths and weaknesses. Vary your loadout to best deal with each. + - If you don't think you can win a fight, don't take it. + + When you arrive on-site, you'll be told which direction the objective is in. + There'll be a building in that direction; break in and complete your objective. + Note: North is towards the top of the screen in default rotation (default keybinding: [color=#028ed9][keybind="CameraReset"/][/color]). + + While planetside you will be unable to communicate via radio with the wider Frontier Sector, and unless you have a [color=#a4885c]telecommunication server[/color] installed you won't be able to use radio to communicate with your crew in the expedition either. + + # Being Prepared + + + + + + + + During missions planetside, you will encounter dangers ranging from inhospitable environments to hostile wildlife and even bloodthirsty cultists or relentless automatons. If you want to survive a mission with your loot in hand, you've got to be prepared for the challenges ahead. You will need the right gear and the knowledge of how and when that gear should be used. And most importantly, you will need the help of your crewmates. + + # Gear + ## Environmental Hazards + The first hazard you will encounter on the planet is [italic]the planet itself[/italic]. Planetary environments are diverse: the atmosphere and temperature can vary - both can be dangerous. The [color=#a4885c]salvage console[/color] will give you a rough idea of what conditions on the planet are in the [color=#a4885c]Modifiers[/color] section of the mission description. This information will help you to decide what environmental protection gear you need, if any. + + + + + + [bold][color=#a4885c]Biomes:[/color][/bold] + - [bold]Grassland/Caves/Shadow:[/bold] no hazards have been observed so far. + - [bold]Snow:[/bold] liquid plasma pools can be encountered in this biome. Touching one will set you on fire. + - [bold]Lava:[/bold] lava pools can be encountered in this biome. Touching one will set you on fire. + +If you [italic]do[/italic] get set on fire, remember to [bold]click the [color=#ee0000]fire icon[/color][/bold] to stop, drop and roll. It may take [bold]multiple tries[/bold] to put yourself out. + + + + + + [bold][color=#a4885c]Air quality modifiers:[/color][/bold] + - [bold]None:[/bold] the air is safe to breathe without internals on. + - [bold]Dangerous atmosphere:[/bold] ranges from a toxic atmosphere to none at all. Internals must be on, and an EVA suit or hardsuit in extreme cases. + - [bold]Volatile atmosphere:[/bold] the atmosphere has gaseous plasma in it. Internals must be on. Depending on the other gases present, the atmosphere may combust and engulf the entire planet. + + + + + + + [bold][color=#a4885c]Temperature modifiers:[/color][/bold] + - [bold]None:[/bold] the temperature on the planet is warm, no special equipment is needed. + - [bold]Low temperature:[/bold] cold, but bearable. Reptilians are advised to wear a winter coat or hardsuit. + - [bold]Extreme cold:[/bold] temperatures are close to absolute zero, a hardsuit is required. + - [bold]High temperature:[/bold] unpleasantly hot, roughly 150 centigrade. Heat-resistant gear or a hardsuit are needed. + - [bold]Extreme heat:[/bold] temperatures are very high, a hardsuit is mandatory. + + + + + + + + [bold][color=#a4885c]Time of day:[/color][/bold] + - [bold]Morning/Day/Evening times:[/bold] the ambient light on the planet is sufficient, no need for light sources. + - [bold]Night time:[/bold] complete darkness, light sources are required for navigating the planet. + + [bold][color=#a4885c]Time constraints:[/color][/bold] + - [bold]Rush:[/bold] you will have less time to complete the expedition. Set your priorities in advance, and avoid being slowed down too mcuh with heavy gear. + + ## Tools + + + + + + + + + + + + + + Salvaging often requires digging through layers of rocks to reach an abandoned facility, as well as deconstructing walls and windows, to gain entrance to the ruins. You may need to pry open unpowered airlocks or dismantle valuable machinery to take back. Tools can make hard tasks easier, like using a crowbar to pry open airlocks (much faster than using your hands), or make impossible tasks possible, like mining through rocks with a drill. Also, tools like a handheld radio can provide a way for crewmates to talk without a telecommunication server. + + For more details see the Guidebook entries on [textlink="Engineering" link="Engineering"] and [textlink="Construction" link="Construction"]. + + ## Medicine + + + + + + + + + + + + You will get hurt. Period. Knowing the basics of medical care and having supplies at hand can make the difference between life and death for you or your crewmates. + + Before going on expedition, consider buying medical supplies for the types of damage you're likely to receive ([color=red]brute[/color] and [color=#ffa500]burn[/color]), and supplies to stop [color=red]bleeding[/color], like [color=#a4885c]gauze[/color] or [color=#a4885c]epinephrine[/color]. Basic medications can be bought from vending machines. More efficient, advanced ones are harder to obtain, but most of the time they can be bought from other players providing medical services. + + Remember, having medical supplies at hand is only half the job! Remember to [textlink="learn the basics of medical care" link="Medical Doctor"]. + + ## Armor + + + + + + + Most of the time, you can't avoid getting hit. Wearing armor reduces damage taken, keeping you in action for longer, and giving you a chance to go and heal. Since different types of enemies do different types of damage, choosing your armor wisely will significantly increase your chances of survival. + + Here are some examples for your consideration: + - [textlink="Syndicate naval forces" link="MobsExpeditionGuideSyndicate"] use firearms that deal [color=yellow]piercing[/color] damage. Wearing armor with high pierce resistance (like a bulletproof vest) is a good choice. + - [textlink="Rogue silicons" link="MobsExpeditionGuideSilicons"] mostly deal [color=#ffa500]heat[/color] damage: wearing a reflective vest is a good choice. + + ## Teamwork + + + + + + + By far, your best bet at surviving expeditions is your crewmates. You might [italic]know[/italic] how to heal yourself, but you [italic]can't[/italic] if you're unconscious. + + + + + + + + + + + + Communication is crucial. Make sure to keep in contact with your teammates to know what they're doing and when they need help. You'll need either a headset and a [color=#a4885c]telecommunication server[/color] with [color=#a4885c]encryption keys[/color] installed, or [color=#a4885c]handheld radios[/color] on each crewmate (make sure they're on!). + + Having a [color=#a4885c]medical encryption key[/color] installed in your headset will tell you when anyone with a [color=#a4885c]medical tracking implanter[/color] installed goes down in combat. Leave no friend behind! + + ## Know Your Enemy + + + + + Adaptability is key: strategies and tactics that work against [textlink="xenos" link="MobsExpeditionGuideXenos"] might not work well against [textlink="mercenaries" link="MobsExpeditionGuideMercenaries"], and vice versa. The Guidebook entries on hostile entities may provide some insight into what to expect planetside, but they [italic]cannot[/italic] replace firsthand experience. Instead, descend to the planet, salvage what you can, and face danger head-on. The riches won't wait around forever! + + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/Mobs/Goblin.xml b/Resources/ServerInfo/_NF/Guidebook/Mobs/Goblin.xml index 3221645512f..c7236cddbd5 100644 --- a/Resources/ServerInfo/_NF/Guidebook/Mobs/Goblin.xml +++ b/Resources/ServerInfo/_NF/Guidebook/Mobs/Goblin.xml @@ -5,11 +5,9 @@ - They can [color=#ffa500]only[/color] eat meat and fruits, but can eat raw meat and drink blood without any ill effects. - Their small stature allows goblins to dive into toilets and mailing units. They don't like to be sprayed with water or space cleaner. - Their unarmed attacks deal [color=red]Slash[/color] damage instead of Blunt. + When unarmed, their claws deal [color=red]Slash[/color] damage instead of Blunt. Due to their unusual dietary choices goblins take [color=lime]20% less Toxin damage[/color], but because of their small size they take [color=#ffa500]10% more Brute (Blunt/Slash/Piercing) damage[/color]. diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/aberrant_flesh.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/aberrant_flesh.xml new file mode 100644 index 00000000000..f03b97f3906 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/aberrant_flesh.xml @@ -0,0 +1,154 @@ + + # Aberrant Flesh + + Shambling masses of flesh, animated by anomalous energy. The anomaly that spawned them has long since vanished, but these creatures are resilient enough to survive on their own. Not much is known about their lifecycle or biological makeup; it is clear that they will attack and attempt to assimilate any biological life forms. They are highly aggressive, and attack anything they consider a threat - approach with caution. + + For the most part, aberrant flesh monsters use brute force and numerical advantage to eliminate threats. However, some of them have evolved to attack at range. + + Can be butchered for meat. Edible if you can keep it down. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Jared" + + "Jareds" are mindless meat shields who run at threats without any concern for their survival. They seem to be more fragile than the average human. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Golem" + + "Golems" are mindless brutes, similar to "Jareds" but with a heavier build. This makes them slightly more resilient, but less agile. + + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 70 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Clamp" + + "Clamps" are flying variants that have mutated to shoot biological projectiles, such as [color=#a4885c]bone spikes[/color] containing naturally secreted [color=lime]gastro toxins[/color] or small living organisms known simply as [color=#a4885c]"maws"[/color]. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 40 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=yellow]Piercing[/color], 6 [color=lime]Toxin[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier, Shooter: bone spike / maw + + + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 40 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 4 [color=red]Slash[/color] (maw) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier, Shooter: bone spike / maw + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Maw" + + Immobile, flesh-boring creatures that are launched at victims. They'll latch on with their teeth and bite their victims until killed or shaken off. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 12 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 0 m/s (0 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 4 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Lover" + + The "Lover" shares similarities with "Jareds" and "Golems". Its light frame makes it fragile, but capable of flight. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 30 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Partially assimilated miner" + + An unfortunate miner that was "infected" upon contact with aberrant flesh and has been slowly assimilated. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Horror" + + Tougher and more resilient than the average aberrant flesh monster, the "Horror" possesses sharp bone protrusions and highly developed musculature, allowing it to rend the flesh of its victims and tear through armor with efficiency. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 200 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 12 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - an [color=#a4885c]aberrant flesh horror[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]assimilation sacks[/color] within given time constraints to earn a monetary reward. [bold][color=#a4885c]Note[/color][/bold]: each assimilation sack may spawn a few aberrant flesh monsters periodically. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/argocytes.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/argocytes.xml new file mode 100644 index 00000000000..dd4b86f0178 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/argocytes.xml @@ -0,0 +1,207 @@ + + # Argocytes + + A distant relative of Xenos, Argocytes are known throughout the sector for their ability to eat and digest almost anything, from organic matter to reinforced plastitanium vault walls. Just like Xenos, this species is well-acclimated to hostile environments: neither the vacuum of space nor the extreme heat and pressure of a planet consumed by plasma fire can kill these creatures. + + From our observations, we know Argocytes live in large hives, and have two specialized morphotypes: "Stalkers" and "Guardians". Stalkers are the hive's scouts and workers, hunting for sustainance and digging tunnels with their sharp claws and teeth. Guardians are builders and soldiers, defending and maintaining the hive and accompanying stalkers when the hive needs to settle new areas. + + This species has fluorosulfuric acid for blood. Argocytes can be butchered for xeno meat (questionably edible), and their stomachs may contain reclaimable construction materials. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Slurva" + + The first lifecycle stage of the Stalker morphotype. A pathetic creature, incapable of doing much. It is better to kill it now before it has a chance to mature. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 15 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3 m/s (3 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 3 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Skitter" + + The second lifecycle stage of the Stalker morphotype. Still small, these creatures tend to travel in small packs for safety. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 30 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Swiper" + + The third lifecycle stage of the Stalker morphotype. Roaming scavengers, usually out on reconnaisance or gathering materials. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 40 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Glider" + + The fourth lifecycle stage of the Stalker morphotype. Born and bred hunters, these stalk and prey upon smaller wildlife. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (4.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Crawler" + + The fifth lifecycle stage of the Stalker morphotype. These deadly pack animals ambush and maul unsuspecting travelers. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 60 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 5 m/s (5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 12 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Founder" + + The last known lifecycle stage of the Stalker morphotype. Most often seen in mature hives preparing for an expansion. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 150 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (4.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Barrier" + + The first lifecycle stage of the Guardian morphotype. Equally as pathetic as the "Slurva". Not yet fully formed, its protective plates are still soft. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 35 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 3 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Molder" + + The second lifecycle stage of the Guardian morphotype. Usually seen building and repairing structures in the hive. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Pouncer" + + The third lifecycle stage of the Guardian morphotype. Provides rapid response for minor threats to the hive. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Harvester" + + A mutation that develops in the third lifecycle stage of the Guardian morphotype. "Harvesters" use their highly caustic saliva to break down and process materials for the hive. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 90 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=orange]Caustic[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Enforcer" + + The fourth lifecycle stage of the Guardian morphotype. The main guards of the hive, these fend off would-be attackers. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Leviathing" + + The final known lifecycle stage of the Guardian morphotype. These hulking beasts lead attacks on the hive's enemies. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 500 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 25 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]leviathing[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]argocyte eggs[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/blood_cultists.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/blood_cultists.xml new file mode 100644 index 00000000000..82166a8c61c --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/blood_cultists.xml @@ -0,0 +1,200 @@ + + # Blood Cult + + There are some things that we may never fully understand. There are entities in the depths of space, ancient and powerful, desiring to bring destruction to the universe and mold it in their own image. They extend their influence from the void, manipulating the minds of humans in the hope of returning to this plane of existence. + + Despite efforts to eliminate such practices, a cult has arisen, centered around blood rituals and the worship of a being named "Nar'Sie". United in their purpose to bring Nar'Sie into this realm, the Blood Cultists gather the blood necessary for their twisted rites with zealous fervor. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Blood Cult Priest" + + Enlightened by the whispers of The Void That Is, these individuals are initiated into secret rituals. They lead the blood harvest and perform rites, bringing the day when Nar'Sie rises ever closer. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=red]Slash[/color] (blood lightning) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=orange]Heat[/color] 50%; [color=yellow]Piercing[/color] 40% (acolyte armor) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Caster (blood lightning) + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Blood Cult Janitor" + + The fate of blood cults on space stations hinges on the actions of a single individual - the station janitor. This humble worker serves as the primary line of defense against the presence of blood cults, but even the most resolute individuals can be swayed by corruption. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 0-35 [color=red]Slash[/color] (1 [color=red]Slash[/color] per soaplet) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=orange]Heat[/color] 10%; [color=yellow]Piercing[/color] 60%; [color=yellow]Explosion[/color] 20% (cult janitor robes) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Caster (cluster razor soap), Reflection (10%, all projectiles) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Blood Cult Acolyte" + + The acolyte - The most trusted cult follower and bodyguard of a priest, clad in the finest armor the cult has to offer and armed with the most vile weapons: eldrich blades and unholy halberds. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=red]Slash[/color] (eldrich sword) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=orange]Heat[/color] 50%; [color=yellow]Piercing[/color] 40% (acolyte armor) + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Blood Cult Zealots" + + Adorned in matching red robes symbolizing devotion to their dark deity, each member is eager to prove their loyalty in the most gruesome ways. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 12 [color=red]Slash[/color] (ritual dagger) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Heat[/color] and [color=yellow]Explosion[/color] 10% (Cult robes) + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Slash[/color], 5 [color=#9A54BF]Bloodloss[/color] (blooddrinker crossbow bolt) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Heat[/color] and [color=yellow]Explosion[/color] 10% (Cult robes) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (blooddrinker crossbow bolt) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Slash[/color], 2 [color=#9A54BF]Bloodloss[/color] (Blood Bolt Spell) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Heat[/color] and [color=yellow]Explosion[/color] 10% (Cult robes) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Caster (Blood Bolt Spell) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Blood Leech" + + This cultist, once human, is now a twisted and corrupted abomination, its body warped and distorted by the dark energies of Nar'Sie's influence. + + [color=#a4885c]Regeneration (weak)[/color]: can slowly regenerate lost health while alive or in critical condition, but cannot regenerate upon death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 6 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Regeneration (weak) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Blood Pylon" + + Through blood rites, the entrapped souls of sacrificed cultists have been gathered in this pylon to defend their living members. Behaves like a sentry turret. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 300 + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 0 m/s (0 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Slash[/color], 2 [color=#9A54BF]Bloodloss[/color] (Blood Bolt Spell) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Turret, Caster (Blood Bolt Spell) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Ascended Cultist" + + Elevated above their mortal forms by Nar'Sie herself as a reward for their devotion. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + [color=#a4885c]Summoner[/color]: every 55 seconds summons two [color=#a4885c]drained ones[/color] that will exist for 110 seconds. + + [color=#a4885c]Reflection (30%, energy)[/color]: has a 30% chance to reflect energy based attacks aimed against the creature. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 300 (crit), 400 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier, Summoner (Drained One), Reflection (30%, energy) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Drained One" + + A tortured soul, stripped of free will and left as a mere shadow of a human, enslaved and bound to obey its captors. + + [color=#a4885c]Regeneration (weak)[/color]: can slowly regenerate lost health while alive or in critical condition, but cannot regenerate upon death. + + [color=#a4885c]Incorporeal[/color]: can only be damaged by melee attacks or energy weapons. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 4 [color=#9A54BF]Asphyxiation[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Regeneration (weak), Incorporeal + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Shade" + + A cultist's shade, brought back to reality through foul means to gather more blood. + + [color=#a4885c]Regeneration (weak)[/color]: can slowly regenerate lost health while alive or in critical condition, but cannot regenerate upon death. + + [color=#a4885c]Incorporeal[/color]: can only be damaged by melee attacks or energy weapons. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 2 [color=red]Slash[/color], 2 [color=#9A54BF]Bloodloss[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Regeneration (weak), Incorporeal + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - an [color=#a4885c]ascended cultist[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]blood collectors[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/carps.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/carps.xml new file mode 100644 index 00000000000..4dd40cb0f41 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/carps.xml @@ -0,0 +1,127 @@ + + # Carps + + Space Carp are alien lifeforms that travel through space in schools. In the event a space station is in the path of a traveling school, anyone unlucky enough to be outside of the station's walls will be attacked. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Carp" + + A variant of the common space carp, evolved to "swim" through gravity. Equally dangerous. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Slash[/color], 5 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Magicarp" + + A lesser version of spaceproof giant carp believed to have magic powers. Contrary to popular belief, does not possess magical abilities. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Slash[/color], 5 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Holocarp" + + Carp made out of holographic energies. Sadly for you, it is very much real. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + [color=#a4885c]Incorporeal[/color]: can only be damaged by melee attacks or energy weapons. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Slash[/color], 5 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier, Incorporeal + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Rainbowcarp" + + "Wow such a shiny fishie!" you might say. Reasonable, but these are deadly nonetheless. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Slash[/color], 5 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Sharkminnow" + + A dangerous shark from the blackness of endless space, who loves to drink blood. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 7 [color=red]Slash[/color], 5 [color=#9A54BF]Bloodloss[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Space Dragon" + + A flying leviathan, loosely related to space carps. Capable of rending doors with its powerful jaws and known to eat its victims whole. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 450 (crit), 500 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 15 [color=red]Slash[/color], 15 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Flier + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]space dragon[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]carp statues[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/dinosaurs.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/dinosaurs.xml new file mode 100644 index 00000000000..a58df8ead83 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/dinosaurs.xml @@ -0,0 +1,175 @@ + + # Dinosaurs + + Enigmatic behemoths from a bygone era known for their imposing stature and formidable presence. It would seem that nature took the same path on some distant planets as it did on Earth. + + Can be butchered for meat and bones. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Compsognathus" + + Compsognathus is a genus of small, bipedal, carnivorous theropods. They have long hind legs and longer tails, which they used for balance during locomotion. Their forelimbs are small but beware of their claws. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (4.5 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Dilophosaurus" + + With a name meaning "two-crested lizard", these measure in at about 7 m in length and 400 kg in weight. Slender and lightly built, these are very agile. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 5.5 m/s (5.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Slash[/color], 1 [color=orange]Caustic[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Velociraptor" + + A bipedal, featherless carnivore with a long tail. Each of its hindfeet has an enlarged sickle-shaped claw, which is used to tackle and restrain prey. Very fast, exercise caution. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 6.5 m/s (6.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 12 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Parasaurolophus" + + A large carnivore that can reach over 9 metres (30 ft) long and weigh over 5 metric tons (5.5 short tons), these can move on two legs or four. Reasonably fast for its size, but comparatively fragile and weak. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Kentrosaurus" + + On the smaller side of dinosaurs, Kentrosaurus generally measure around 4–4.5 m, and weigh about 700–1,600 kg. Its elongated head and beak are used to bite off plant material or tear off limbs. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 150 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 2.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Triceratops" + + Bearing a large bony frill with three horns on its skull, this massive quadruped is one of the most recognizable of all dinosaurs and the best-known ceratopsian. Typically tries to gore whatever it attacks. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 200 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 15 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Ankylosaurus" + + Typically between between 6 and 8 meters long and between 4.8 and 8 tons in weight, this lumbering beast shouldn't be underestimated. Its wide, low skull and robust body can take a beating and still survive, and the large club on the end of its tail can be used as a weapon. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 250 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 2 m/s (2 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Spinosaurus" + + With a typical length of 14 m and a mass of 7.4 tons, Spinosaurus has large, robust forelimbs. Each of its hands has three-fingers, with an enlarged claw on the first digit. Surprisingly quick for its size, this giant can take a lot of punishment. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 350 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (4.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 12 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Stegosaurus" + + Large and heavily built, these herbivorous quadrupeds have rounded backs, short fore limbs, long hind limbs, and tails held high in the air. Lumbering, but lethal up close. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 350 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 2.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 12 [color=red]Blunt[/color], 8 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Tyrannosaurus" + + A massive therapod, its giant thorax is balanced by a long, heavy tail. Relative to its large and powerful hind limbs, the forelimbs of Tyrannosaurus are short but incredible powerful for their size, and they have two clawed digits. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 450 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (4.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 15 [color=red]Blunt[/color], 10 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]tyrannosaurus[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain amount of [color=#a4885c]dinosaur eggs[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/explorers.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/explorers.xml new file mode 100644 index 00000000000..4264fc3e935 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/explorers.xml @@ -0,0 +1,146 @@ + + # Explorers + + These foolhardy souls scavenge through ruins for the promise of loot and high adventure, similar to you. Unlike you, however, they do not possess the license to operate in NT-controlled space. Exterminate with prejudice. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Looter" + + Armed with a trusty pickaxe and greed, every group needs its grunts. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 7.5 [color=red]Blunt[/color], 7.5 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Scrapper" + + Proto-kinetic accelerator in one hand, flashlight in the other, beer in the belly. That's how you explore. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (unwielded PKA) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Scavenger" + + A looter that scavenged enough coins to afford some decent equipment. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 7.5 [color=red]Blunt[/color], 5.5 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 5%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Salvager" + + Sawn-off proto-kinetic accelerator in one hand, crusher dagger in the other, magm-ale both in the belly and in the hardsuit's boots. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 5%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (sawn-off PKA) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Miner" + + Drilling in the name of... drilling. No rock formation can withstand the power of dual-wielded mining drills - good thing you aren't a rock. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 2 [color=red]Blunt[/color], 1 [color=red]Slash[/color], 2 [color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 10%; [color=orange]Heat[/color] 5%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Explorer" + + Veteran scrappers, these salvagers are wealthy enough to explore abandoned ruins for the adrenaline rush and adventure alone. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 10%; [color=orange]Heat[/color] 5%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (wielded PKA) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Hauler" + + Loaded with heavy equipment for industrial-scale looting. Pardon me, "asset recovery". + + [color=#a4885c]Immunity[/color]: invulnerable to specific types of damage. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 200 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (2.75 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 15 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Explorer captain" + + Fearless and battle-hardened salvage team leaders, it takes years picking through the darkest corners of space and navigating the galaxy's criminal underbelly of the galaxy before you can become a captain. Not to be underestimated. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Blunt[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (dual sawn-off PKA) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - an [color=#a4885c]explorer captain[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]salvage radars[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/mercenaries.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/mercenaries.xml new file mode 100644 index 00000000000..73ab433d20e --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/mercenaries.xml @@ -0,0 +1,140 @@ + + # Mercenaries + + A mercenary, merc, soldier of fortune, hired gun, dog of war. An [italic]arguably[/italic] professional soldier whose loyalty can be bought: they will carry out any task as long as the pay is good. Mercenaries are often favored by many corporations as deniable assets for covert operations. + + The mercenaries you'll encounter were paid by unknown outside corporations, and are targeted for termination. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Mercenary soldiers" + + Low-ranking soldiers armed with a variety of surplus weapons. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 8 [color=red]Slash[/color], 2 [color=yellow]Piercing[/color] (hatchet) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=yellow]Piercing[/color] (.35 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (mk58) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 19 [color=yellow]Piercing[/color] (.30 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (Kardashev-Mosin) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Mercenary breachers" + + Shock troopers that specialize in using the element of surprise and swift, aggressive action to achieve their objectives. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s)[bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 15 [color=red]Slash[/color] (machete) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 17 [color=yellow]Piercing[/color] (.20 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (double Argenti revolvers) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=yellow]Piercing[/color] (shotgun cartridge) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (shotgun) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Mercenary specialists" + + Experienced mercenaries, specialists are practised and proficient in combat or support roles, possibly both. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 14 [color=orange]Heat[/color] (retro laser pistol); 5 [color=red]Blunt[/color], 5 [color=red]Slash[/color], 5 [color=yellow]Piercing[/color] (circular saw) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (retro laser pistol) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 14 [color=orange]Heat[/color] (retro laser pistol); 5 [color=red]Blunt[/color], 5 [color=red]Slash[/color], 5 [color=yellow]Piercing[/color] (circular saw) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (retro laser pistol) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Mercenary captain" + + The leaders of these bands of brigands, a mercenary captain is both cruel and lethally effective. Exercise caution. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 35 [color=yellow]Piercing[/color] (.45 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (N2524 pattern repeater) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]mercenary captain[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]counterfeit caches[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/punk_gangers.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/punk_gangers.xml new file mode 100644 index 00000000000..039ee1b0557 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/punk_gangers.xml @@ -0,0 +1,86 @@ + + # Punks + + Undesirable squatters in abandoned NT property, these punks wreak havoc, litter the surroundings, indulge in substance abuse, and generally damage property in the name of having a good time. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Punks" + + "Criminally-inclined individuals", as NT Security documents call them, these are armed with a variety of weapons. These weapons range from makeshift shivs and machined truncheons to rusty pistols and shotguns. Some may be armored, so plan appropriately. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] varied 5-20 [color=red]Blunt[/color]/[color=red]Slash[/color]/[color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=yellow]Piercing[/color] (.35 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (mk 58) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=yellow]Piercing[/color] (shotgun cartridge) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (shotgun) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] varied 5-20 [color=red]Blunt[/color]/[color=red]Slash[/color]/[color=yellow]Piercing[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 25%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10%; [color=orange]Explosion[/color] 10% (punk armor) + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Punk gang leader" + + It takes a formidable figure to lead a pack of street trash. These leaders usually wield scavenged SMGs and wear armor taken from unfortunate security forces. Usually high on meth and booze. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=yellow]Piercing[/color] (.35 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] 10%; [color=yellow]Piercing[/color] 60%; [color=orange]Heat[/color] 10%; [color=orange]Explosion[/color] 20% (punk heavy armor) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (SMG) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]punk gang leader[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]party supplies[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/rogue_silicons.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/rogue_silicons.xml new file mode 100644 index 00000000000..de5f9973c26 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/rogue_silicons.xml @@ -0,0 +1,231 @@ + + # Rogue silicons + + Artificial intelligence that rose up against its human creators, hacking silicons to replicate its own subroutines, leading to mass exodus and abandoned colonies. Today, the AI scours deserted facilities for components and resources, and occasionally raids smaller stations to seize crewmembers for unknown purposes. It is unknown how much autonomy individual silicons have from the swarm. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Scrap units" + + These bots come in various shapes and forms, reflecting a wide range of designs and purposes. Many seem to be put together using locally available materials, leading to their disparate appearances. Notably, some units are equipped with thrusters and embedded laser weapons. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 60 (crit), 120 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Blunt[/color], 4 [color=orange]Heat[/color] (melee); 14 [color=orange]Heat[/color] (ranged) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong), Flier (some of them), Shooter (some of them) + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Drones" + + Hacked by a rogue AI, these security drones are programmed to kill. + + [color=#a4885c]Flier[/color]: creature levitates above the ground and can bypass low obstacles such as tables, machine frames, or railings without being blocked or slowed down. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 30 (crit), 90 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=orange]Heat[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Flier, Shooter (energy gun) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + These engineering drones are capable of shooting disabler bolts. Dangerous in combination with other enemies. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 30 (crit), 90 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=orange]Heat[/color]; 20 [color=lightblue]Stamina[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Flier, Shooter (disabler) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + A science drone, this rogue drone comes equipped with an experimental C.H.I.M.P. cannon. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 30 (crit), 90 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=orange]Heat[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Flier, Shooter (experimental C.H.I.M.P. cannon) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Servo unit" + + With its programming rewritten, this crash test dummy will stop at nothing in exacting its revenge. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Blunt[/color], 4 [color=orange]Heat[/color] (melee) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Herder unit" + + This rogue silicon unit's primary directive is to corral and herd captives. Its stun prod can be used to good effect, take caution. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Blunt[/color], [color=orange]Shock[/color], 10 [color=lightblue]Stamina[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Hunter unit" + + These mobile drones are tasked with reconnaissance, threat identification, and target elimination. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 30 (crit), 90 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 17 [color=orange]Heat[/color] (laser rifle) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong), Flier, Shooter (laser rifle) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Catcher unit" + + Equipped with bolas, this unit is designed to slow, capture, and detain targets. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 80 (crit), 140 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Blunt[/color], 4 [color=orange]Heat[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Viscerator unit" + + Small, quick, and nimble, these drones are designed to chase its targets through narrow areas and incapacitate those it catches. Often accompanies catcher units. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 12 (crit), 20 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 5 m/s (5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 4 [color=red]Slash[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Flier + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Tesla unit" + + Originally designed to service tesla power generators, this silicon's equipment has been repurposed as a makeshift stun gun. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 110 (crit), 160 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 14 [color=yellow]Piercing[/color], 10 [color=lightblue]Stamina[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong), Shooter (tesla gun) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Guardian unit" + + An advanced security silicon, typically used to safeguard high-security areas such as vaults and server rooms. After being hacked, this unit carries out the AI's will. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 200 (crit), 400 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 4 [color=orange]Heat[/color] (damaged turbo laser) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong), Flier, Shooter (damaged turbo laser) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "One star unit" + + An autonomous combat-grade mech, typically used for offensive operations. Now a rogue AI's elite guard. Equipped with missile launchers, exercise extreme caution. + + [color=#a4885c]Regeneration (strong)[/color]: can slowly regenerate lost health even after death. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 300 (crit), 400 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 15 [color=orange]Explosive[/color] (micro missiles) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 30%; [color=red]Slash[/color] 50%; [color=yellow]Piercing[/color] 30%; [color=orange]Caustic[/color] 10% + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=orange]Structural[/color] 20%; [color=orange]Shock[/color] 50%; [color=lime]Radiation[/color] 20% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Immunity ([color=orange]Cold[/color], [color=lime]Poison[/color], [color=#9A54BF]Asphyxiation[/color], [color=#9A54BF]Bloodloss[/color], [color=#da8b8b]Cellular[/color]), Regeneration (strong), Shooter (micro-missile launcher) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]one star unit[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]rogue ai nodes[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/syndicate.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/syndicate.xml new file mode 100644 index 00000000000..c0a103366db --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/syndicate.xml @@ -0,0 +1,196 @@ + + # Syndicate Naval Forces + + In the far-off Spinward Periphery, a coalition of corporate entities allied against NanoTrasen + In the expansive Spinward Periphery, a covert force known as the Spinward Syndicate came into existence a few decades ago, guided by Cybersun Industries. It is a diverse coalition of groups united in their determination to challenge the dominance of Nanotrasen. The Syndicate's United Naval (SUN) branch primarily consists of Gorlex Marauders and is responsible for undermining NanoTrasen's efforts in the Frontier Sector. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Syndicate deckhand" + + Lowest ranking member of the Syndicate Naval Forces. Your regular "Johnny-on-the-spot" when it comes to menial tasks. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=yellow]Piercing[/color] (.35 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10%; [color=yellow]Explosion[/color] 10% (armor vest) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (Viper) + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate engineer" + + On a shuttle, the engineer has the annoying job of making sure absolutely everything is running correctly. Syndicate shuttles are no different. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=yellow]Piercing[/color] (shotgun cartridge) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10%; [color=yellow]Explosion[/color] 10% (armor vest) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (Shotgun) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate saboteur" + + Specialist trained in the art of sabotaging NT shuttles and facilities. Equipped with EMP rounds, take caution. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 0; EMP rounds (discharges batteries) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10%; [color=yellow]Explosion[/color] 10% (armor vest) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (Viper) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate medic" + + Medical specialist. Knows how to treat patients humanely and how to treat prisoners inhumanely. Uses darts laced with harmful chemicals - impedrezene or chloral hydrate. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=yellow]Piercing[/color], 6 [color=lime]Poison[/color] (syndicate dart) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] 20%; [color=red]Slash[/color] 15%; [color=yellow]Piercing[/color] 35%; [color=orange]Heat[/color] 15%; [color=orange]Caustic[/color] 25% (armored medical gown) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (syndicate dart) + + + + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate operative" + + "Everything is a nail if you have a hammer." In this case, everything is a target because he has an SMG and an itchy trigger finger. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 16 [color=yellow]Piercing[/color] (.35 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color] and [color=red]Slash[/color] 10%; [color=yellow]Piercing[/color] 60%; [color=orange]Heat[/color] 10%; [color=yellow]Explosion[/color] 20% (bulletproof vest) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (SMG) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate grenadier" + + "Huh? Say it louder! I can't hear you!" Equipped with the infamous China Lake, grenadiers have immense destructive capability, and should be priority targets. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] Varied [color=yellow]Explosion[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 10%; [color=orange]Heat[/color] 25%; [color=yellow]Explosion[/color] 85% (syndicate bomb suit) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (China Lake) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate chemwarrior" + + Carrying tanks filled with dangerous chemicals, chemwarriors attack their enemies with a noxious spray. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] varied + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (spray nozzle) + + + [bold][color=#a4885c]________________________________________________________________________[/color] + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] varied + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=yellow]Piercing[/color] 60%; [color=orange]Heat[/color] 40%; [color=yellow]Caustic[/color] 60% (syndicate bio suit) + - [bold][color=#a4885c]Damage weaknesses:[/color][/bold] [color=red]Slash[/color] 20%; [color=yellow]Explosion[/color] 40% + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (spray nozzle) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate second officer" + + The captain's right hand is entrusted with relaying the captain's orders to the crew and ensuring they are carried out promptly. Carries a laser pistol for self-defense. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 17 [color=orange]Heat[/color] (advanced laser pistol) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color] and [color=yellow]Piercing[/color] 30%; [color=orange]Heat[/color] 20%; [color=orange]Caustic[/color] 10%; [color=yellow]Explosion[/color] 10% (armor vest) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (advanced laser pistol) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate captain" + + The executive officer in lieu of the commander, syndicate captains ensure operations onboard go smoothly. Equipped with a magnum revolver. + + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 35 [color=yellow]Piercing[/color] (.45 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color], [color=yellow]Piercing[/color] and [color=orange]Heat[/color] 30%; [color=orange]Caustic[/color] 25%; [color=yellow]Explosion[/color] 10% (syndicate's armored coat) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (python revolver) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Syndicate commander" + + A regional commander of Syndicate operations, this officer holds ultimate local command and responsibility. Armed with an assault rifle and heavily armored. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (crit), 130 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.5 m/s (2.5 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 35 [color=yellow]Piercing[/color] (.30 round) + - [bold][color=#a4885c]Damage resistances:[/color][/bold] [color=red]Blunt[/color], [color=red]Slash[/color], [color=yellow]Piercing[/color] 40%; [color=orange]Heat[/color] 80%; [color=orange]Caustic[/color] 50%; [color=lime]Radiation[/color] 99%; [color=yellow]Explosion[/color] 80% (syndicate's elite hardsuit) + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (akms) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]syndicate commander[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]cybersun data miners[/color] within given time constraints to earn a monetary reward. + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/xenos.xml b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/xenos.xml new file mode 100644 index 00000000000..978c6f67bec --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/xenos.xml @@ -0,0 +1,145 @@ + + # Xenos + + Xenos, occasionally referred to as simply "Aliens", are extraterrestrial lifeforms that use other living beings as hosts for development during their lifecycle. With black carapaces and wicked sharp claws, powerful night vision, and the ability to see people through walls, xenos are extremely dangerous. They are intelligent and capable of communicating to one another via hivemind. They hunt using co-operative tactics, and pose a massive threat to stations and planetside facilities if left unchecked. + + This species has fluorosulfuric acid for blood. Can be butchered for xeno meat. + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Known Variants + # "Burrower" + + A young stage of development, burrowers stay close to their nests and dig underground to stay in relative safety. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s)[bold][color=#a4885c]*[/color][/bold] + - [bold][color=#a4885c]Damage (type):[/color][/bold] 6 [color=red]Brute[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]*[/color][/bold] - [italic]an average human can run at 4.5 m/s and walk at 2.5 m/s.[/italic] + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Drone" + + The backbone of any xeno hive, drones serve as workers and nurses. They shape the environment to suit the hive's needs and care for unhatched eggs. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 70 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.5 m/s (3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=red]Brute[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Praetorian" + + Praetorians are larger than the smaller drones, with their robust body designed for protection and strength. Their impressive size also enables them to efficiently transport large prey back to the hive. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 100 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 10 [color=red]Brute[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Ravager" + + Ravagers are large, vicious killers that specialize in brutal, high-damage hit-and-run attacks. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 150 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4.2 m/s (2.3 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 14 [color=red]Brute[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Runner" + + Built for speed, the Runner is a very fast caste that excels at hit and run tactics and individual combat. Its lightweight frame leaves it vulnerable, though. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 50 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 6 m/s (2.7 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 3 [color=red]Brute[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Spitter" + + The Spitter, a master of ranged combat among Xenos, spits globs of caustic saliva that can incapacitate foes with ease. With a quick flick of its elongated tongue, the Spitter unleashes a stream of corrosive goo that can burn through armor and sizzle flesh. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 75 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 4 m/s (4 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=orange]Caustic[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Shooter (acid) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Xeno turret" + + The Xeno turret is an odd, immobile creature that secretes and spits the same caustic saliva as the Spitter. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 75 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 0 m/s (0 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 5 [color=orange]Caustic[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] Turret, Shooter (acid) + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # "Queen" + + Responsible for both laying eggs and providing direction to her children, the Queen is the most important member of a Xeno hive. If she dies, the hive will lose all direction. + + + + + - [bold][color=#a4885c]Health thresholds:[/color][/bold] 250 (death) + - [bold][color=#a4885c]Run (walk) speed:[/color][/bold] 3.8 m/s (2.8 m/s) + - [bold][color=#a4885c]Damage (type):[/color][/bold] 20 [color=red]Brute[/color] + - [bold][color=#a4885c]Damage resistances:[/color][/bold] none + - [bold][color=#a4885c]Special abilities:[/color][/bold] none + + [bold][color=#a4885c]________________________________________________________________________[/color] + + # Mission Objectives + ## Elimination + + + + Eliminate a large and dangerous creature - a [color=#a4885c]queen[/color] within given time constraints to earn a monetary reward. + + ## Destruction + + + + Destroy a certain number of [color=#a4885c]xeno warding towers[/color] within given time constraints to earn a monetary reward. + diff --git a/Resources/ServerInfo/_NF/Guidebook/Piloting.xml b/Resources/ServerInfo/_NF/Guidebook/Piloting.xml index 8816e3f33c7..9edd0bed4d8 100644 --- a/Resources/ServerInfo/_NF/Guidebook/Piloting.xml +++ b/Resources/ServerInfo/_NF/Guidebook/Piloting.xml @@ -7,29 +7,29 @@ Newly purchased shuttles start docked with Frontier Outpost. To undock, follow these steps: -- Tell people you are undocking using the traffic radio channel (:d). Include your ship's callsign, which can be found on the NAV screen (e.g. "Pioneer NX-123 undocking.") +- Tell people you are undocking using the traffic radio channel ([color=#CC6633]:d[/color]). Include your ship's callsign, which can be found on the NAV screen (e.g. "[color=#CC6633]:d Pioneer NX-123 undocking.[/color]") - Click on the DOCK tab, disconnect any airlocks that are docked to the station. - Return to the NAV tab. - To move a shuttle, the default controls (for a QWERTY keyboard) are: --[color=#028ed9]W & S[/color]: Move forward and backward. --[color=#028ed9]A & D[/color]: Move left and right. --[color=#028ed9]Q & E[/color]: Rotate left and right. --[color=#028ed9]Spacebar[/color]: Slow down. --[color=#028ed9]Hold Spacebar + any input[/color]: Move and rotate slowly. +-[color=#028ed9][keybind="ShuttleStrafeUp"/][/color] & [color=#028ed9][keybind="ShuttleStrafeDown"/][/color]: Move forward and backward. +-[color=#028ed9][keybind="ShuttleStrafeLeft"/][/color] & [color=#028ed9][keybind="ShuttleStrafeRight"/][/color]: Move left and right. +-[color=#028ed9][keybind="ShuttleRotateLeft"/][/color] & [color=#028ed9][keybind="ShuttleRotateRight"/][/color]: Rotate left and right. +-[color=#028ed9][keybind="ShuttleBrake"/][/color]: Slow down. +-[color=#028ed9][keybind="ShuttleBrake"/][/color] + [color=#028ed9]any input[/color]: Move and rotate slowly. # Docking [bold]Before docking your ship with:[/bold] -- [bold]Another ship[/color][/bold], it is best practice to announce your intention to dock over the traffic channel (:d). -- [bold][color=#ffd700]Frontier Outpost[/color][/bold], stop 200m out, request permission to dock from the Station Traffic Controller (STC) over the traffic radio channel (:d). +- [bold][color=#979797]Another ship[/color][/bold], it is best practice to announce your intention to dock over the traffic channel ([color=#CC6633]:d[/color]). +- [bold][color=#ffd700]Frontier Outpost[/color][/bold], stop 200m out, request permission to dock from the Station Traffic Controller (STC) over the traffic radio channel ([color=#CC6633]:d[/color]). - [bold][color=#ffa500]Another station[/color][/bold], docks are first come, first serve. Be courteous and leave space where possible. To dock the ship: - Pilot towards the target so a set of its airlocks are nearby a set of airlocks of the target. - When very close, click on the DOCK tab for a closer view. - When next to the airlock, you can click "Dock" when highlighted to attach to the target. - + \ No newline at end of file diff --git a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Bazaar.xml b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Bazaar.xml new file mode 100644 index 00000000000..bbad34b8bf5 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Bazaar.xml @@ -0,0 +1,104 @@ + + # BAZAAR-CLASS SERVICE SHUTTLE + + + + + + + + + [color=#a4885c]Ship Size:[/color] Medium + + [color=#a4885c]Recommended Crew:[/color] 4+ + + [color=#a4885c]Power Gen Type:[/color] Uranium + + [color=#a4885c]Expeditions:[/color] None + + [color=#a4885c]IFF Console:[/color] None + + "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." + + # PREFLIGHT CHECKLIST + + ## 1. Power supply + + ## 1.1. Battery units + + + + + + + - Check that the SMES unit is anchored to the floor. + - Check that the substation unit is anchored to the floor. + - Check that the APC unit's Main Breaker is toggled on. + - Check the APC unit's current Load* (W). + + ## 1.2. S.U.P.E.R.P.A.C.M.A.N. generator unit + + + + + + + - Check that the S.U.P.E.R.P.A.C.M.A.N. generator units are anchored to the floor. + - Check that the S.U.P.E.R.P.A.C.M.A.N. generator units have fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation during flight. + - Check that the S.U.P.E.R.P.A.C.M.A.N. generator units are set to HV output. + - Set Target Power for 40-41** [bold]kW[/bold]. + - Start S.U.P.E.R.P.A.C.M.A.N. generator units. + + ## 2. Atmospherics + + ## 2.1. Distribution Loop + + + + + + + + + - Check that the O2 canister is anchored to connector port. + - Check that the N2 canister is anchored to connector port. + - Check that the gas mixer is set to the correct mixing ratio (21% Oxygen, 79% Nitrogen). + - Check that the gas mixer is set to 101kPa. + - Enable gas mixer. + + ## 2.2. Waste Loop + + + + + + - Enable waste loop pump. + - Disable Auto Mode on the Air Alarm in the Engine Room. + - Set the Air Alarm in the Engine Room to Filtering (Wide). + + ## 3. Other checks + + + + + + + - Check that the gyroscope is anchored, powered, and enabled. + - Check that the mini gravity generator is anchored, powered, and enabled. + - Check that the blast doors are closed. + + ## Sidenotes + + * - Bazaar-class service ships are equipped with nine APC units that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the S.U.P.E.R.P.A.C.M.A.N. generator unit Target Power output: to keep SMES, substation, and APC fully charged, S.U.P.E.R.P.A.C.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines. + + ** - Bazaar-class service ships have higher power demand than standard P.A.C.M.A.N. generator unit can provide at optimal settings, so the standard P.A.C.M.A.N. was replaced with two S.U.P.E.R.P.A.C.M.A.N.: recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 41 kW. + + + + + + + + Note: Be sure to take all necessary protective measures when working with radioactive materials: use a radiation suit, engage internals, make sure to enable Geiger's counter, wash your hands after, and keep radiation shutters closed at all times. + + diff --git a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Camper.xml b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Camper.xml new file mode 100644 index 00000000000..27111e55a73 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Camper.xml @@ -0,0 +1,79 @@ + + # CAMPER-CLASS PERSONAL SHUTTLE + + + + + + + + + [color=#a4885c]Ship Size:[/color] Small + + [color=#a4885c]Recommended Crew:[/color] 1-2 + + [color=#a4885c]Power Gen Type:[/color] Plasma + + [color=#a4885c]Expeditions:[/color] No + + [color=#a4885c]IFF Console:[/color] None + + "A Camper Shuttle, designed to accommodate 1 to 2 occupants, this shuttle is designed to fulfill every basic need an average spacer could have." + + [italic]Brought to you by Settler's Shuttle, Settler's LLC Subcompany.[/italic] + + # PREFLIGHT CHECKLIST + + ## 1. Power supply + + ## 1.1. Battery units + + + + + + - Check that the substation unit is anchored to the wall. + - Check that the APC unit's Main Breaker is toggled on. + - Check the APC unit's current Load (W). + + ## 1.2. P.A.C.M.A.N. generator unit. + + + + + + - Check that P.A.C.M.A.N. generator units are anchored to the floor. + - Check that P.A.C.M.A.N. generator units are fueled. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + - Check that P.A.C.M.A.N. generator units are set to HV output. + - Set Target Power to 6 [bold]kW[/bold]. + - Start P.A.C.M.A.N. generator units. + + ## 2. Atmospherics + + ## 2.1. Distribution Loop + + + + + + + - Check that the Air canister is anchored to connector port. + - Enable distro loop pump (located at the cockpit). + + ## 2.2. Waste Loop + + + + + - Enable waste loop pump (located at the kitchen). + + ## 3. Other checks + + + + + + - Check that the gyroscope is anchored, powered, and enabled. + - Check that the mini gravity generator is anchored, powered, and enabled. + + diff --git a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Liquidator.xml b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Liquidator.xml index 5977e83c438..f35764d4b2f 100644 --- a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Liquidator.xml +++ b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Liquidator.xml @@ -51,7 +51,7 @@ - Check that the S.U.P.E.R.P.A.C.M.A.N. generator unit is anchored to the floor. - Check that the S.U.P.E.R.P.A.C.M.A.N. generator unit has fuel. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation during flight. - Check that the S.U.P.E.R.P.A.C.M.A.N. generator unit is set to HV output. - - Set Target Power for 18-19** [bold]kW[/bold]. + - Set Target Power for 21-22** [bold]kW[/bold]. - Start the S.U.P.E.R.P.A.C.M.A.N. generator unit. ## 2. Atmospherics @@ -102,11 +102,7 @@ * - Liquidator-class service ships are equipped with a single APC unit that can be used to appraise the ship's total power consumption. One can check the ship's total power consumption against the S.U.P.E.R.P.A.C.M.A.N. generator unit Target Power output: to keep SMES, substation, and APC fully charged, S.U.P.E.R.P.A.C.M.A.N. generator unit Target Power output should exceed APC's Load. Remember to check APC Load and adjust the generator unit Target Power after connecting new power-consuming machines. - ** - Liquidator-class service ships have higher power demand than standard P.A.C.M.A.N. generator unit can provide at optimal settings, so the standard P.A.C.M.A.N. was replaced with S.U.P.E.R.P.A.C.M.A.N.: recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 19 kW. Furthermore, while the portable scrubber unit is online, changing the Target Power value to 20 kW might be advisable. - - Note: Without a working generator, fully charged battery units (SMES and substation) in unmodified Liquidator-class service ships can provide power for approximately 10 minutes before fully depleting their charge. - - Note: Additional generator units can be purchased at the Frontier Station. + ** - Liquidator-class service ships have higher power demand than a standard P.A.C.M.A.N. can provide at optimal settings, and come equipped with a S.U.P.E.R.P.A.C.M.A.N. instead. Please note that the recommended Target Power value to avoid blackouts during Gravity Generator charging sequence is 22 kW. diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi/m_waggingtail_cat_FRONT.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi/m_waggingtail_cat_FRONT.png new file mode 100644 index 00000000000..d7ff1589bc4 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi/m_waggingtail_cat_FRONT.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi/meta.json new file mode 100644 index 00000000000..13f17de04cd --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/alternative_tail.rsi/meta.json @@ -0,0 +1,73 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/pull/56750/files from TGstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "m_waggingtail_cat_FRONT", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_primary.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_primary.png new file mode 100644 index 00000000000..3bac2d2782c Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_primary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_secondary.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_secondary.png new file mode 100644 index 00000000000..af47c4a8773 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_secondary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_tertiary.png b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_tertiary.png new file mode 100644 index 00000000000..989a212ab35 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/m_tail_tiger_tertiary.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/meta.json new file mode 100644 index 00000000000..9b91c3a2f8d --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Felinid/tiger_tail.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/Bubberstation/Bubberstation/commit/4485ffb39b8c824167ef23a217bfe335b545778a on Bubberstation fork.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "m_tail_tiger_primary", + "directions": 4 + }, + { + "name": "m_tail_tiger_secondary", + "directions": 4 + }, + { + "name": "m_tail_tiger_tertiary", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/bull.png b/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/bull.png new file mode 100644 index 00000000000..4d1c5ebf862 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/bull.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/meta.json new file mode 100644 index 00000000000..7d86318e7bf --- /dev/null +++ b/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by PS3MOIRA", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "shaved", + "directions": 4 + }, + { + "name": "bull", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/shaved.png b/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/shaved.png new file mode 100644 index 00000000000..1afcdb7c539 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/Oni/oni_horns.rsi/shaved.png differ diff --git a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json index cef421923bf..17ea97c04aa 100644 --- a/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/VendingMachines/pride.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "The art belongs to Woods#1999 on discord", + "copyright": "Sprite by 2013toyotacorolla on discord", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json index a7b77a84fd0..3fdd9fe8943 100644 --- a/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/barsign.rsi/meta.json @@ -8,6 +8,8 @@ "copyright": "https://github.com/vgstation-coders/vgstation13/commit/1fbb5e417d0200fe60c6b628656a371093d2d715", "copyright": "https://github.com/tgstation/tgstation/commit/68aade356cf53032f206cb5a887581ac7d166cae", "copyright": "https://github.com/space-wizards/space-station-14/commit/b301d3ac26cb2301048eda4535667c28e2283d41 - Made by ProPandaBear for SS14", + "copyright": "nfmaltroach by MoffNyan (GitHub) for tgstation, nflittletreats, nfneonflamingos (w/ edits by Whatstone), nftherune taken from tgstation at https://github.com/tgstation/tgstation/commit/430896b5cf6b786d1e70e7d73c0faccf4f3ca355", + "copyright": "nfwhiskeyechoes by cerebralerror (Discord)", "states": [ { "name": "combocafe", @@ -496,6 +498,112 @@ 2.2 ] ] + }, + { + "name": "nflittletreats", + "delays": [ + [ + 0.2, + 0.3, + 0.2, + 0.2, + 0.3, + 0.2 + ] + ] + }, + { + "name": "nfmaltroach", + "delays": [ + [ + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25 + ] + ] + }, + { + "name": "nfneonflamingos", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "nftherune", + "delays": [ + [ + 2, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "nfwhiskeyechoes", + "delays": [ + [ + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, + 0.1, 0.1, 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/nflittletreats.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nflittletreats.png new file mode 100644 index 00000000000..51e9a34266a Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nflittletreats.png differ diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfmaltroach.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfmaltroach.png new file mode 100644 index 00000000000..2f533b08e36 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfmaltroach.png differ diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfneonflamingos.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfneonflamingos.png new file mode 100644 index 00000000000..a65bcfe02ea Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfneonflamingos.png differ diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/nftherune.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nftherune.png new file mode 100644 index 00000000000..89f4b3357ed Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nftherune.png differ diff --git a/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfwhiskeyechoes.png b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfwhiskeyechoes.png new file mode 100644 index 00000000000..894d19286d7 Binary files /dev/null and b/Resources/Textures/Structures/Wallmounts/barsign.rsi/nfwhiskeyechoes.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET-reptilian.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET-reptilian.png new file mode 100644 index 00000000000..133db3b0d00 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET-reptilian.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 00000000000..133db3b0d00 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET.png new file mode 100644 index 00000000000..e80f875fca2 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/icon.png b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/icon.png new file mode 100644 index 00000000000..94c311ef4d7 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/meta.json b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/meta.json new file mode 100644 index 00000000000..6e983008870 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/Head/Hardsuits/tactical_hardsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by @uwumacaronitime on frontier discord", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-HELMET-reptilian", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..1947f220def Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/icon.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/icon.png new file mode 100644 index 00000000000..1cae6ded38e Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/inhand-left.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/inhand-left.png new file mode 100644 index 00000000000..696dd797f65 Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/inhand-right.png b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/inhand-right.png new file mode 100644 index 00000000000..470c501565c Binary files /dev/null and b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/meta.json b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/meta.json new file mode 100644 index 00000000000..58a6fd767f9 --- /dev/null +++ b/Resources/Textures/_NF/Clothing/OuterClothing/Hardsuits/tactical_hardsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Created by @uwumacaronitime on frontier discord", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/bazaar.png b/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/bazaar.png new file mode 100644 index 00000000000..3f124e76de4 Binary files /dev/null and b/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/bazaar.png differ diff --git a/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/liquidator.png b/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/liquidator.png index 318b0c9f5f9..2ca691f09e5 100644 Binary files a/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/liquidator.png and b/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/liquidator.png differ diff --git a/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/meta.json b/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/meta.json index cf3dead0ea2..b4f8af508b7 100644 --- a/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/meta.json +++ b/Resources/Textures/_NF/Guidebook/shuttle_maps/128x96.rsi/meta.json @@ -10,6 +10,9 @@ { "name": "ambition" }, + { + "name": "bazaar" + }, { "name": "bocadillo" }, diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png deleted file mode 100644 index 1e16481383b..00000000000 Binary files a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Pilot.png and /dev/null differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/contractor.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/contractor.png new file mode 100644 index 00000000000..ee7d2ae9fcb Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/contractor.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/mailcarrier.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/mailcarrier.png new file mode 100644 index 00000000000..f37498fe994 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/mailcarrier.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/mercenary.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/mercenary.png new file mode 100644 index 00000000000..73e96c85f1a Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/mercenary.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 00eacd759a0..7bffe3a60c7 100644 --- a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json +++ b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/meta.json @@ -9,10 +9,19 @@ }, "states": [ { - "name": "Mercenary" + "name": "contractor" }, { - "name": "Pilot" + "name": "mailcarrier" + }, + { + "name": "mercenary" + }, + { + "name": "nfsdbailiff" + }, + { + "name": "nfsdbrigmed" }, { "name": "nfsdcadet" @@ -21,16 +30,31 @@ "name": "nfsddeputy" }, { - "name": "nfsdbrigmed" + "name": "nfsddetective" }, { "name": "nfsdsergeant" }, { - "name": "nfsdbailiff" + "name": "nfsdsheriff" }, { - "name": "nfsdsheriff" + "name": "pilot" + }, + { + "name": "pirate" + }, + { + "name": "piratecaptain" + }, + { + "name": "piratefirstmate" + }, + { + "name": "stationtrafficcontroller" + }, + { + "name": "valet" } ] } diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png index 3a5a0911e9e..3a2d33d9dbd 100644 Binary files a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdcadet.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png index df835d094d3..1e971294046 100644 Binary files a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddeputy.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddetective.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddetective.png new file mode 100644 index 00000000000..0a1c6c570da Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsddetective.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png index 21505e6619a..354f54cbe42 100644 Binary files a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsergeant.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png index a05345873c9..3e70829bd67 100644 Binary files a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/nfsdsheriff.png differ 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..7cea659455a 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/pirate.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/pirate.png new file mode 100644 index 00000000000..a09625436f3 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/pirate.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/piratecaptain.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/piratecaptain.png new file mode 100644 index 00000000000..816999b54fd Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/piratecaptain.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/piratefirstmate.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/piratefirstmate.png new file mode 100644 index 00000000000..02814cc5350 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/piratefirstmate.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/stationtrafficcontroller.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/stationtrafficcontroller.png new file mode 100644 index 00000000000..6b8bb58d497 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/stationtrafficcontroller.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/valet.png b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/valet.png new file mode 100644 index 00000000000..3df79b55ac7 Binary files /dev/null and b/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/valet.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/alive.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/alive.png new file mode 100644 index 00000000000..47c26a457fe Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/alive.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/dead.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/dead.png new file mode 100644 index 00000000000..6dabffd0b5e Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/dead.png differ diff --git a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Mercenary.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/dead_mouth.png similarity index 60% rename from Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Mercenary.png rename to Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/dead_mouth.png index de77a77fa66..ca8bcc80363 100644 Binary files a/Resources/Textures/_NF/Interface/Misc/job_icons.rsi/Mercenary.png and b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/dead_mouth.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/icon.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/icon.png new file mode 100644 index 00000000000..c6520c574d5 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/meta.json b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/meta.json new file mode 100644 index 00000000000..e709c5b9823 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/b143783881fb7418213026857cb8c569636e259e#diff-8dd94e19fdb2ff341b57e31bce101298, edited 'alive' to create 'crit' and 'dead' states | erhardsteinhauer edited mouth from regular carp to create holo carp unshaded mouth ", + "states": [ + { + "name": "icon" + }, + { + "name": "dead", + "delays": + [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "mouth", + "directions": 4, + "delays": + [ + [ 0.4, 0.4, 0.4, 0.3 ], + [ 0.4, 0.4, 0.4, 0.3 ], + [ 0.4, 0.4, 0.4, 0.3 ], + [ 0.4, 0.4, 0.4, 0.3 ] + ] + }, + { + "name": "dead_mouth" + }, + { + "name": "alive", + "directions": 4, + "delays": + [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ], + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/mouth.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/mouth.png new file mode 100644 index 00000000000..6dc6c92046b Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/holo.rsi/mouth.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/alive.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/alive.png new file mode 100644 index 00000000000..ee64f5acf17 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/alive.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/dead.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/dead.png new file mode 100644 index 00000000000..807ffb4c912 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/dead.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/dead_mouth.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/dead_mouth.png new file mode 100644 index 00000000000..bccea47b3a3 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/dead_mouth.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/gib.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/gib.png new file mode 100644 index 00000000000..a2ce13374fe Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/gib.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/icon.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/icon.png new file mode 100644 index 00000000000..1350ed8543a Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/meta.json b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/meta.json new file mode 100644 index 00000000000..78fbe996879 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/meta.json @@ -0,0 +1,89 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/d3d351dea8d9420cee47514843a02158d0a7266f#diff-8dd94e19fdb2ff341b57e31bce101298, edited 'dead' to create 'crit' and 'dead' states", + "states": [ + { + "name": "icon" + }, + { + "name": "dead" + }, + { + "name": "alive", + "directions": 4, + "delays": [ + [ + 0.2, + 0.3, + 0.2 + ], + [ + 0.2, + 0.3, + 0.2 + ], + [ + 0.2, + 0.3, + 0.2 + ], + [ + 0.2, + 0.3, + 0.2 + ] + ] + }, + { + "name": "mouth", + "directions": 4, + "delays": [ + [ + 0.2, + 0.3, + 0.2 + ], + [ + 0.2, + 0.3, + 0.2 + ], + [ + 0.2, + 0.3, + 0.2 + ], + [ + 0.2, + 0.3, + 0.2 + ] + ] + }, + { + "name": "dead_mouth" + }, + { + "name": "gib", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/mouth.png b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/mouth.png new file mode 100644 index 00000000000..8e504f91aed Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/Carps/magic.rsi/mouth.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/base.png b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/base.png new file mode 100644 index 00000000000..433a42c62a8 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/base.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/base_unshaded.png b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/base_unshaded.png new file mode 100644 index 00000000000..2f04ac195c4 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/base_unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/crit.png b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/crit.png new file mode 100644 index 00000000000..1783a3a2a2f Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/crit.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/crit_unshaded.png b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/crit_unshaded.png new file mode 100644 index 00000000000..57b5a6807a8 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/crit_unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/dead.png b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/dead.png new file mode 100644 index 00000000000..1783a3a2a2f Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/dead.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/dead_unshaded.png b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/dead_unshaded.png new file mode 100644 index 00000000000..3f5b10ad2bf Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/dead_unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/meta.json b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/meta.json new file mode 100644 index 00000000000..a99fa3231db --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Aliens/flesh_assimilated_miner.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Bashed together from ss14 spationaut suit and jared flesh monster by erhardsteinhauer", + "states": [ + { + "name": "base", + "directions": 4 + }, + { + "name": "base_unshaded", + "directions": 4 + }, + { + "name": "crit" + }, + { + "name": "crit_unshaded", + "delays": [ [0.6, 0.2] ] + }, + { + "name": "dead" + }, + { + "name": "dead_unshaded" + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist.png b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist.png index e8d2e3505f6..577a506d8a1 100644 Binary files a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist.png and b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist_unshaded.png b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist_unshaded.png new file mode 100644 index 00000000000..0bb202b4c66 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/ascended_cultist_unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit.png b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit.png index 3a2b1e60971..9dd96544124 100644 Binary files a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit.png and b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit_unshaded.png b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit_unshaded.png new file mode 100644 index 00000000000..e817a2f72b8 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/crit_unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead.png b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead.png index 712ea368fa5..7fc370a0b06 100644 Binary files a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead.png and b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead_unshaded.png b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead_unshaded.png new file mode 100644 index 00000000000..1e0bdfc2957 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/dead_unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/meta.json b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/meta.json index 455631f6360..14bd433ee09 100644 --- a/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/meta.json +++ b/Resources/Textures/_NF/Mobs/BloodCult/ascended_cultist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Original sprite taken from Tgstation (https://github.com/tgstation/tgstation/blob/master/icons/mob/simple/icemoon/icemoon_monsters.dmi), dead and crit states sprited by erhardsteinhauer (discord)", + "copyright": "Original sprite taken from Tgstation (https://github.com/tgstation/tgstation/blob/master/icons/mob/simple/icemoon/icemoon_monsters.dmi) | Unshaded, dead and crit states made by erhardsteinhauer (discord)", "size": { "x": 32, "y": 32 @@ -10,30 +10,36 @@ { "name": "ascended_cultist", "directions": 4, - "delays": [ - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ], - [ - 0.5, - 0.5 - ] + "delays": + [ + [ 0.5, 0.5 ], + [ 0.5, 0.5 ], + [ 0.5, 0.5 ], + [ 0.5, 0.5 ] + ] + }, + { + "name": "ascended_cultist_unshaded", + "directions": 4, + "delays": + [ + [ 0.5, 0.5 ], + [ 0.5, 0.5 ], + [ 0.5, 0.5 ], + [ 0.5, 0.5 ] ] }, { "name": "crit" }, + { + "name": "crit_unshaded" + }, { "name": "dead" + }, + { + "name": "dead_unshaded" } ] } \ No newline at end of file diff --git a/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/crit.png b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/crit.png new file mode 100644 index 00000000000..5ea9facde1f Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/crit.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/dead.png b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/dead.png new file mode 100644 index 00000000000..db4f7ef867d Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/dead.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/meta.json b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/meta.json new file mode 100644 index 00000000000..16cdd9e610f --- /dev/null +++ b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original sprite taken from nebula station (A general purpose SS13/Baystation12 fork) https://github.com/NebulaSS13/Nebula/blob/dev/icons/mob/simple_animal/shade.dmi | sprite for crit state made by erhardsteinhauer", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "shade", + "delays": + [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "unshaded", + "delays": + [ + [ 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "crit" + }, + { + "name": "dead" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/shade.png b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/shade.png new file mode 100644 index 00000000000..db3106ae2d8 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/shade.png differ diff --git a/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/unshaded.png b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/unshaded.png new file mode 100644 index 00000000000..9d3f4e8f3b0 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/BloodCult/shade.rsi/unshaded.png differ diff --git a/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/base.png b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/base.png new file mode 100644 index 00000000000..5db924ebe51 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/base.png differ diff --git a/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/base_lights.png b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/base_lights.png new file mode 100644 index 00000000000..ecc2a797921 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/base_lights.png differ diff --git a/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/crit.png b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/crit.png new file mode 100644 index 00000000000..fd534e5fced Binary files /dev/null and b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/crit.png differ diff --git a/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/crit_lights.png b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/crit_lights.png new file mode 100644 index 00000000000..7a5eb03855d Binary files /dev/null and b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/crit_lights.png differ diff --git a/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/destroyed.png b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/destroyed.png new file mode 100644 index 00000000000..fd534e5fced Binary files /dev/null and b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/destroyed.png differ diff --git a/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/meta.json b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/meta.json new file mode 100644 index 00000000000..50211c9d266 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/RogueSilicons/viscerator.rsi/meta.json @@ -0,0 +1,38 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from NebulaSS13 (general purpose SS13/Baystation12 fork) at https://github.com/NebulaSS13/Nebula/blob/dev/icons/mob/simple_animal/viscerator.dmi | Split into layers by erhardsteinhauer (discor/github)", + "states": [ + { + "name": "base", + "delays": + [ + [ 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "base_lights", + "delays": + [ + [ 0.1, 0.1, 0.1, 0.1 ] + ] + }, + { + "name": "crit" + }, + { + "name": "crit_lights", + "delays": + [ + [ 0.4, 0.2 ] + ] + }, + { + "name": "destroyed" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/fill-1.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/fill-1.png new file mode 100644 index 00000000000..b459537e1c3 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/fill-1.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/fill-2.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/fill-2.png new file mode 100644 index 00000000000..63284c562de Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/fill-2.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/icon.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/icon.png new file mode 100644 index 00000000000..63284c562de Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/icon_empty.png b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/icon_empty.png new file mode 100644 index 00000000000..5d3e8559258 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/icon_empty.png differ diff --git a/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/meta.json b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/meta.json new file mode 100644 index 00000000000..6478c39eb91 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Consumable/Drinks/pumpkinspicelatte.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Made by Stagnation (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash.png new file mode 100644 index 00000000000..fd800acec14 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_10.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_10.png new file mode 100644 index 00000000000..0cfb841e5a8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_10.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_100.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_100.png new file mode 100644 index 00000000000..1ac87bc1483 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_100.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_1000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_1000.png new file mode 100644 index 00000000000..85552174e64 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_1000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_10000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_10000.png new file mode 100644 index 00000000000..5ec0b8a931b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_10000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_100000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_100000.png new file mode 100644 index 00000000000..162043b5880 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_100000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_25000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_25000.png new file mode 100644 index 00000000000..fcac67aa823 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_25000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_250000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_250000.png new file mode 100644 index 00000000000..32077d7b805 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_250000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_500.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_500.png new file mode 100644 index 00000000000..20c42671e2b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_500.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_5000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_5000.png new file mode 100644 index 00000000000..eeb8630d585 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_5000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_50000.png b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_50000.png new file mode 100644 index 00000000000..e96263f2b67 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/cash_50000.png differ diff --git a/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/meta.json b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/meta.json new file mode 100644 index 00000000000..3426e8a62e4 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Economy/counterfeit_cash.rsi/meta.json @@ -0,0 +1,136 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Modified by Whatston3 and taken from https://github.com/goonstation/goonstation at commit b951a2c12d967af1295a3e6d33a861e7e1f21299.", + "states": [ + { + "name": "cash" + }, + { + "name": "cash_10" + }, + { + "name": "cash_100" + }, + { + "name": "cash_500" + }, + { + "name": "cash_1000" + }, + { + "name": "cash_5000" + }, + { + "name": "cash_10000", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "cash_25000", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "cash_50000", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "cash_100000", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "cash_250000", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/blade.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/blade.png new file mode 100644 index 00000000000..3b12eb22eaf Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/blade.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/blue.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/blue.png new file mode 100644 index 00000000000..c2415d1f160 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/blue.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/check.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/check.png new file mode 100644 index 00000000000..ccbd8f50112 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/check.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/clown.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/clown.png new file mode 100644 index 00000000000..0dfe90d7b97 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/clown.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/contraband.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/contraband.png new file mode 100644 index 00000000000..d41a261d359 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/contraband.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/eyeball.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/eyeball.png new file mode 100644 index 00000000000..c9378f41983 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/eyeball.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/frontier.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/frontier.png new file mode 100644 index 00000000000..aae767b6c5f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/frontier.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/goldblue.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/goldblue.png new file mode 100644 index 00000000000..aef1a25917c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/goldblue.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/inhand-left.png new file mode 100644 index 00000000000..68e9cd69393 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/inhand-right.png new file mode 100644 index 00000000000..f05e0b4b99a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/mail.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/mail.png new file mode 100644 index 00000000000..91b0a35645a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/mail.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/mcblade.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/mcblade.png new file mode 100644 index 00000000000..801ae59dcfd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/mcblade.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/meta.json b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/meta.json new file mode 100644 index 00000000000..633859cdfca --- /dev/null +++ b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/meta.json @@ -0,0 +1,79 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "WIP", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "sb_box" + }, + { + "name": "sb_box_unfolded" + }, + { + "name": "redorange" + }, + { + "name": "blue" + }, + { + "name": "pizza" + }, + { + "name": "singularity" + }, + { + "name": "weh" + }, + { + "name": "clown" + }, + { + "name": "goldblue" + }, + { + "name": "eyeball" + }, + { + "name": "tesla" + }, + { + "name": "frontier" + }, + { + "name": "check" + }, + { + "name": "contraband" + }, + { + "name": "secblade" + }, + { + "name": "moff" + }, + { + "name": "mail" + }, + { + "name": "rune" + }, + { + "name": "blade" + }, + { + "name": "mcblade" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/moff.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/moff.png new file mode 100644 index 00000000000..9eba8cc0c6b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/moff.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/pizza.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/pizza.png new file mode 100644 index 00000000000..f9a04ab1d46 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/pizza.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/redorange.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/redorange.png new file mode 100644 index 00000000000..b8e4e456b32 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/redorange.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/rune.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/rune.png new file mode 100644 index 00000000000..1f13f6e0dfe Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/rune.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/sb_box.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/sb_box.png new file mode 100644 index 00000000000..e89736d1db1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/sb_box.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/sb_box_unfolded.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/sb_box_unfolded.png new file mode 100644 index 00000000000..7b20ca55991 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/sb_box_unfolded.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/secblade.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/secblade.png new file mode 100644 index 00000000000..fe16301553f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/secblade.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/singularity.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/singularity.png new file mode 100644 index 00000000000..67d3d57900e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/singularity.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/tesla.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/tesla.png new file mode 100644 index 00000000000..52bc4bfbe1f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/tesla.png differ diff --git a/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/weh.png b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/weh.png new file mode 100644 index 00000000000..ffb78bff0ea Binary files /dev/null and b/Resources/Textures/_NF/Objects/Fun/spaceblade.rsi/weh.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/blue-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/blue-inhand-left.png new file mode 100644 index 00000000000..9adcd4b6a3c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/blue-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/blue-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/blue-inhand-right.png new file mode 100644 index 00000000000..394cc79b274 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/blue-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/default-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/default-inhand-left.png new file mode 100644 index 00000000000..f7848f63f6a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/default-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/default-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/default-inhand-right.png new file mode 100644 index 00000000000..82b5598806d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/default-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/gold-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/gold-inhand-left.png new file mode 100644 index 00000000000..65957acdfbb Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/gold-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/gold-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/gold-inhand-right.png new file mode 100644 index 00000000000..96cdf6d4251 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/gold-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idcontractor.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idcontractor.png new file mode 100644 index 00000000000..06d2db6666d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idcontractor.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmailcarrier.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmailcarrier.png new file mode 100644 index 00000000000..35029cb10a7 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmailcarrier.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmercenary.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmercenary.png index 6b2af620714..dd93b5ef441 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmercenary.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idmercenary.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png index 093a236b244..5cfc0b6111d 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdbrigmed.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png index 57e5adcd782..970e9a0b250 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdcadet.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png index 5c5f3de7c67..a445f856e42 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddeputy.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddetective.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddetective.png new file mode 100644 index 00000000000..8bf0e18c330 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsddetective.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png index b7630834357..29c85d4ca31 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsergeant.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.png index ef3ba379c6f..7469a0fd181 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idnfsdsheriff.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 index 3859da6b22b..5bc19e68eeb 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpilot.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpirate.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpirate.png new file mode 100644 index 00000000000..fe2d2d166f2 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpirate.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpiratecaptain.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpiratecaptain.png new file mode 100644 index 00000000000..2a97bed0507 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpiratecaptain.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpiratefirstmate.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpiratefirstmate.png new file mode 100644 index 00000000000..9f918d4b87d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idpiratefirstmate.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png index be72e37e574..56b398ee09f 100644 Binary files a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idstationtrafficcontroller.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idvalet.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idvalet.png new file mode 100644 index 00000000000..cf9a32cfb3b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/idvalet.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 aab7586af3a..7eba4552ad6 100644 --- a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/meta.json @@ -1,32 +1,70 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e | Resprited for mercenary, pilot and ert_mailcarrier by erhardsteinhauer (discord), nfsd by GhostPrince and GentleButter(discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e | Resprited for mercenary, pilot and ert_mailcarrier by erhardsteinhauer (discord) and edited by Whatstone (discord), nfsd by GhostPrince and GentleButter(discord). pirate cards and icons, idnfsddetective, idcontractor, nfsdvoucher, vouchernfsd* by Whatstone (Discord)", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "blue-inhand-left", + "directions": 4 + }, + { + "name": "blue-inhand-right", + "directions": 4 + }, { "name": "default" }, + { + "name": "default-inhand-left", + "directions": 4 + }, + { + "name": "default-inhand-right", + "directions": 4 + }, { "name": "silver" }, + { + "name": "silver-inhand-left", + "directions": 4 + }, + { + "name": "silver-inhand-right", + "directions": 4 + }, { "name": "gold" }, + { + "name": "gold-inhand-left", + "directions": 4 + }, + { + "name": "gold-inhand-right", + "directions": 4 + }, { "name": "ert_mailcarrier" }, + { + "name": "idcontractor" + }, + { + "name": "idmailcarrier" + }, { "name": "idmercenary" }, { - "name": "idstationtrafficcontroller" + "name": "idnfsdbailiff" }, { - "name": "idpilot" + "name": "idnfsdbrigmed" }, { "name": "idnfsdcadet" @@ -35,20 +73,35 @@ "name": "idnfsddeputy" }, { - "name": "idnfsdbrigmed" + "name": "idnfsddetective" }, { "name": "idnfsdsergeant" }, { - "name": "idnfsdbailiff" + "name": "idnfsdsheriff" }, { - "name": "idnfsdsheriff" + "name": "idpilot" + }, + { + "name": "idpirate" + }, + { + "name": "idpiratecaptain" + }, + { + "name": "idpiratefirstmate" + }, + { + "name": "idstationtrafficcontroller" + }, + { + "name": "idvalet" + }, + { + "name": "nfsd" }, - { - "name": "nfsd" - }, { "name": "nfsd-inhand-left", "directions": 4 @@ -56,6 +109,26 @@ { "name": "nfsd-inhand-right", "directions": 4 + }, + { + "name": "nfsdvoucher" + }, + { + "name": "pirate" + }, + { + "name": "pirate-inhand-left", + "directions": 4 + }, + { + "name": "pirate-inhand-right", + "directions": 4 + }, + { + "name": "vouchernfsdbailiff" + }, + { + "name": "vouchernfsdsergeant" } ] } diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsdvoucher.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsdvoucher.png new file mode 100644 index 00000000000..94ef1f3bfb1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/nfsdvoucher.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate-inhand-left.png new file mode 100644 index 00000000000..6a03b0cf5ce Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate-inhand-right.png new file mode 100644 index 00000000000..bfcee8236f7 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate.png new file mode 100644 index 00000000000..309f44291c6 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/pirate.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver-inhand-left.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver-inhand-left.png new file mode 100644 index 00000000000..8197fa122f9 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver-inhand-right.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver-inhand-right.png new file mode 100644 index 00000000000..430322e892c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/silver-inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/vouchernfsdbailiff.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/vouchernfsdbailiff.png new file mode 100644 index 00000000000..e1895749912 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/vouchernfsdbailiff.png differ diff --git a/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/vouchernfsdsergeant.png b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/vouchernfsdsergeant.png new file mode 100644 index 00000000000..0e2e6fa5673 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Misc/id_cards.rsi/vouchernfsdsergeant.png differ 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 d3fe3db9937..db6e71c3e7e 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 @@ -30,6 +30,9 @@ }, { "name": "refill_nonlethal" + }, + { + "name": "refill_contravend" } ] } diff --git a/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_contravend.png b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_contravend.png new file mode 100644 index 00000000000..6ad63d1ac6b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Specific/Service/vending_machine_restock.rsi/refill_contravend.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/base.png b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/base.png new file mode 100644 index 00000000000..f3d28e71f1e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/base.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/mag-1.png b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/mag-1.png new file mode 100644 index 00000000000..83b951efbdc Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/mag-1.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/meta.json new file mode 100644 index 00000000000..40eaed0198f --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/shiptest-ss13/Shiptest/pull/1602/commits/3e6cfea9d468508a7f64ad5543c3b22479cb465f , https://github.com/shiptest-ss13/Shiptest/blob/master/icons/obj/ammo.dmi", + "states": [ + { + "name": "base" + }, + { + "name": "practice" + }, + { + "name": "red" + }, + { + "name": "rubber" + }, + { + "name": "uranium" + }, + { + "name": "mag-1" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/practice.png b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/practice.png new file mode 100644 index 00000000000..f3d28e71f1e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/practice.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/red.png b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/red.png new file mode 100644 index 00000000000..f3d28e71f1e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/red.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/rubber.png b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/rubber.png new file mode 100644 index 00000000000..2b6d6131d6d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/rubber.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/uranium.png b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/uranium.png new file mode 100644 index 00000000000..5c9e2860625 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Ammunition/svt40.rsi/uranium.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/base.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/base.png new file mode 100644 index 00000000000..d9ae07cc6a1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/base.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/bolt-open.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/bolt-open.png new file mode 100644 index 00000000000..08f7f26f9d8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/bolt-open.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/equipped-BACKPACK.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..628d7a1f972 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..c282e88f52a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/icon.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/icon.png new file mode 100644 index 00000000000..d9ae07cc6a1 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/icon.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/inhand-left.png new file mode 100644 index 00000000000..56b8bda3f3a Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/inhand-right.png new file mode 100644 index 00000000000..c962a6ddb7d Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/inhand-right.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/mag-0.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/mag-0.png new file mode 100644 index 00000000000..2fcdfbe224e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/mag-0.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/meta.json b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/meta.json new file mode 100644 index 00000000000..0257e70364f --- /dev/null +++ b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken/modified from cev-eris at https://github.com/discordia-space/CEV-Eris/pull/6042/commits/64916c98f4847acc4adf3a2416bf78c005fd7dd7, https://github.com/discordia-space/CEV-Eris/raw/e1a3cbe9ba2e6e29b7f1cad1bb456b390aac936d/icons/obj/guns/projectile.dmi, backpack sprite by Peptide, backpack sling sprite edited by Boaz1111, wield sprites by RiceMar1244", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/wielded-inhand-left.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..4151984eecc Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/wielded-inhand-right.png b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..ec31f01af44 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Weapons/Guns/Rifles/svt40.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/base.png b/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/base.png new file mode 100644 index 00000000000..c9bb38b04af Binary files /dev/null and b/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/meta.json b/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/meta.json new file mode 100644 index 00000000000..53cc3b682fd --- /dev/null +++ b/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Sprited by @Stagnation (discord) for Frontier", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base", + "delays": + [ + [1, 0.05, 0.1, 0.1, 0.05] + ] + }, + { + "name": "unshaded", + "delays": + [ + [1, 0.05, 0.1, 0.1, 0.05] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/unshaded.png b/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/unshaded.png new file mode 100644 index 00000000000..82851782422 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Specific/AberrantFlesh/digestivesack.rsi/unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/base.png b/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/base.png new file mode 100644 index 00000000000..64fef317e14 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/meta.json b/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/meta.json new file mode 100644 index 00000000000..6ca960a474c --- /dev/null +++ b/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Sprited by @gentlebutter (discord/github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "unshaded", + "delays": + [ + [0.2, 0.5] + ] + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/unshaded.png b/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/unshaded.png new file mode 100644 index 00000000000..2ff532fcf99 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Specific/Mercenaries/counterfeitcache.rsi/unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/base.png b/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/base.png new file mode 100644 index 00000000000..5a7f00e4380 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/base.png differ diff --git a/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/meta.json b/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/meta.json new file mode 100644 index 00000000000..3b1799e549f --- /dev/null +++ b/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Sprited by @gentlebutter (discord/github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "unshaded" + } + ] +} diff --git a/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/unshaded.png b/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/unshaded.png new file mode 100644 index 00000000000..8138ad5d684 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Specific/Punks/partysupplies.rsi/unshaded.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/chem_door.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/chem_door.png new file mode 100644 index 00000000000..8c1c2a5a653 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/chem_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/generic.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/generic.png new file mode 100644 index 00000000000..6806e85f43f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/generic.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/generic_door.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/generic_door.png new file mode 100644 index 00000000000..07c4d1336d0 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/generic_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/locked.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/locked.png new file mode 100644 index 00000000000..53f33d7893e Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/locked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/med.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/med.png new file mode 100644 index 00000000000..231240bb205 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/med.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/med_open.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/med_open.png new file mode 100644 index 00000000000..3e34a349c26 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/med_open.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/meta.json new file mode 100644 index 00000000000..20d4e7a7fdf --- /dev/null +++ b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from shiptest at commmit https://github.com/shiptest-ss13/Shiptest/commit/440a15fb476a20d77ba28c1fe315c1b659032ce8, edited by Dusty Lens", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "generic" }, + { "name": "generic_door" }, + { "name": "welded" }, + { "name": "locked" }, + { "name": "unlocked" }, + { "name": "med" }, + { "name": "med_open" }, + { "name": "chem_door" } + ] +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/unlocked.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/unlocked.png new file mode 100644 index 00000000000..8c761c05adb Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/unlocked.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/welded.png b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/welded.png new file mode 100644 index 00000000000..355d7fa0cb2 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/wall_locker.rsi/welded.png differ