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/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/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/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/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index dc141963498..c2e26d506d8 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -12,7 +12,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 +20,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 +37,7 @@ using Content.Shared.UserInterface; using Robust.Shared.Audio; using Robust.Shared.Audio.Systems; +using Content.Shared.Access; namespace Content.Server.Shipyard.Systems; @@ -106,7 +105,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."); @@ -239,7 +238,7 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component 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); + RefreshState(uid, bank.Balance, true, name, sellValue, targetId, (ShipyardConsoleUiKey) args.UiKey); } private void TryParseShuttleName(ShuttleDeedComponent deed, string name) @@ -353,7 +352,7 @@ public void OnSellMessage(EntityUid uid, ShipyardConsoleComponent component, Shi 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); + RefreshState(uid, bank.Balance, true, null, 0, targetId, (ShipyardConsoleUiKey) args.UiKey); } private void OnConsoleUIOpened(EntityUid uid, ShipyardConsoleComponent component, BoundUIOpenedEvent args) @@ -392,7 +391,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); } private void ConsolePopup(EntityUid uid, string text) @@ -482,7 +481,14 @@ 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); + } } @@ -519,7 +525,8 @@ private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component /// /// 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,41 +543,67 @@ 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); + + TryComp(targetId, out var accessComponent); + foreach (var vessel in _prototypeManager.EnumeratePrototypes()) { - var protos = _prototypeManager.EnumeratePrototypes(); - foreach (var proto in protos) + // If the vessel needs access to be bought, check the user's access. + if (!string.IsNullOrEmpty(vessel.Access)) { - if (proto.Group == group) - availableShuttles.Add(proto.ID); + bool hasAccess = false; + // Check tags + if (accessComponent?.Tags.Contains(vessel.Access) ?? false) + hasAccess = true; + + // Check each group if we haven't found access already. + if (!hasAccess) + { + var groupIds = accessComponent?.Groups ?? new HashSet>(); + foreach (var groupId in groupIds) + { + 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; } - } - // Add all prototypes specified in ShipyardListing - if (listing != null || TryComp(uid, out listing)) - { - foreach (var shuttle in listing.Shuttles) + // 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(shuttle); + 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) { - 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), + GetAvailableShuttles(uid, uiKey, targetId: targetId), uiKey.ToString()); _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/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/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/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..6ae981dee48 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs @@ -228,6 +228,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..d36e03346e5 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5379,3 +5379,177 @@ 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: [] + 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' 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/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..9bad724e2ac --- /dev/null +++ b/Resources/Locale/en-US/deltav/markings/Oni.ftl @@ -0,0 +1,44 @@ +marking-OniHornAngular = Angular +marking-OniHornAngular-horns_angular = Angular + +marking-OniHornCurled = Curled +marking-OniHornCurled-horns_curled = Curled + +marking-OniHornDoubleCurved = Double Curved +marking-OniHornDoubleCurved-double_curved = Double Curved + +marking-OniHornDoubleCurvedOutwards = Double Curved Outwards +marking-OniHornDoubleCurvedOutwards-double_curved_outwards = Double Curved Outwards + +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 + +marking-OniHornRam = Ram +marking-OniHornRam-horns_ram = Ram + +marking-OniHornShort = Short +marking-OniHornShort-horns_short = Short + +marking-OniHornSimple = Simple +marking-OniHornSimple-horns_simple = Simple + +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-OniHornShaved = Shaved +marking-OniHornShaved-shaved = Shaved + +marking-OniHornBull = Bull +marking-OniHornBull-bull = Bull + +marking-OniTail = Tail +marking-OniTail-tail_oni = Tail \ 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/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/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/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/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/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/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..8cec3f89653 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/MobsHostileExpedition/syndicate.xml @@ -0,0 +1,195 @@ + + # 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/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..94ec536d345 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/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..0b2585ee30a 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..feed2ce94eb 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,62 @@ { "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 by Whatstone (Discord)", "size": { "x": 32, "y": 32 }, "states": [ + { + "name": "blue-inhand-left" + }, + { + "name": "blue-inhand-right" + }, { "name": "default" }, + { + "name": "default-inhand-left" + }, + { + "name": "default-inhand-right" + }, { "name": "silver" }, + { + "name": "silver-inhand-left" + }, + { + "name": "silver-inhand-right" + }, { "name": "gold" }, + { + "name": "gold-inhand-left" + }, + { + "name": "gold-inhand-right" + }, { "name": "ert_mailcarrier" }, + { + "name": "idcontractor" + }, + { + "name": "idmailcarrier" + }, { "name": "idmercenary" }, { - "name": "idstationtrafficcontroller" + "name": "idnfsdbailiff" }, { - "name": "idpilot" + "name": "idnfsdbrigmed" }, { "name": "idnfsdcadet" @@ -35,20 +65,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 +101,17 @@ { "name": "nfsd-inhand-right", "directions": 4 + }, + { + "name": "pirate" + }, + { + "name": "pirate-inhand-left", + "directions": 4 + }, + { + "name": "pirate-inhand-right", + "directions": 4 } ] } 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/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