diff --git a/Content.Client/RadialSelector/RadialSelectorMenuBUI.cs b/Content.Client/RadialSelector/RadialSelectorMenuBUI.cs index 3e72acbfddb..6b2a89f7a98 100644 --- a/Content.Client/RadialSelector/RadialSelectorMenuBUI.cs +++ b/Content.Client/RadialSelector/RadialSelectorMenuBUI.cs @@ -1,4 +1,5 @@ -using System.Numerics; +using System.Linq; +using System.Numerics; using Content.Client.UserInterface.Controls; using Content.Shared.Construction.Prototypes; using Content.Shared.RadialSelector; @@ -6,6 +7,7 @@ using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Input; +using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Prototypes; @@ -19,8 +21,9 @@ public sealed class RadialSelectorMenuBUI : BoundUserInterface { [Dependency] private readonly IClyde _displayManager = default!; [Dependency] private readonly IInputManager _inputManager = default!; - [Dependency] private readonly IEntityManager _entManager = default!; + [Dependency] private readonly IResourceCache _resources = default!; [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly IEntityManager _entManager = default!; private readonly SpriteSystem _spriteSystem; @@ -30,6 +33,7 @@ public sealed class RadialSelectorMenuBUI : BoundUserInterface private readonly HashSet _cachedContainers = new(); private bool _openCentered; + private readonly Vector2 ItemSize = Vector2.One * 64; public RadialSelectorMenuBUI(EntityUid owner, Enum uiKey) : base(owner, uiKey) { @@ -95,10 +99,7 @@ private void CreateMenu(List entries, string parentCategory else if (entry.Prototype != null) { var name = GetName(entry.Prototype); - var icon = GetIcon(entry); - if (icon is null) - return; - + var icon = GetTextures(entry); var button = CreateButton(name, icon); button.OnButtonUp += _ => { @@ -115,37 +116,48 @@ private string GetName(string proto) { if (_protoManager.TryIndex(proto, out var prototype)) return prototype.Name; + if (_protoManager.TryIndex(proto, out ConstructionPrototype? constructionPrototype)) return constructionPrototype.Name; + return proto; } - private Texture? GetIcon(RadialSelectorEntry entry) + private List GetTextures(RadialSelectorEntry entry) { + var result = new List(); + if (entry.Icon is not null) + { + result.Add(_spriteSystem.Frame0(entry.Icon)); + return result; + } + if (_protoManager.TryIndex(entry.Prototype!, out var prototype)) - return _spriteSystem.Frame0(prototype); + { + result.AddRange(SpriteComponent.GetPrototypeTextures(prototype, _resources).Select(o => o.Default)); + return result; + } if (_protoManager.TryIndex(entry.Prototype!, out ConstructionPrototype? constructionProto)) - return _spriteSystem.Frame0(constructionProto.Icon); - - if (entry.Icon is not null) - return _spriteSystem.Frame0(entry.Icon); + { + result.Add(_spriteSystem.Frame0(constructionProto.Icon)); + return result; + } // No icons provided and no icons found in prototypes. There's nothing we can do. - return null; + return result; } private RadialMenuTextureButton CreateButton(string name, Texture icon) { - var itemSize = new Vector2(64f, 64f); var button = new RadialMenuTextureButton { ToolTip = Loc.GetString(name), StyleClasses = { "RadialMenuButton" }, - SetSize = itemSize + SetSize = ItemSize }; - var iconScale = itemSize / icon.Size; + var iconScale = ItemSize / icon.Size; var texture = new TextureRect { VerticalAlignment = Control.VAlignment.Center, @@ -158,6 +170,28 @@ private RadialMenuTextureButton CreateButton(string name, Texture icon) return button; } + private RadialMenuTextureButton CreateButton(string name, List icons) + { + var button = new RadialMenuTextureButton + { + ToolTip = Loc.GetString(name), + StyleClasses = { "RadialMenuButton" }, + SetSize = ItemSize + }; + + var iconScale = ItemSize / icons[0].Size; + var texture = new LayeredTextureRect + { + VerticalAlignment = Control.VAlignment.Center, + HorizontalAlignment = Control.HAlignment.Center, + Textures = icons, + TextureScale = iconScale + }; + + button.AddChild(texture); + return button; + } + private void ClearExistingContainers() { foreach (var container in _cachedContainers) diff --git a/Content.Server/Abilities/Psionics/PsionicAbilitiesSystem.cs b/Content.Server/Abilities/Psionics/PsionicAbilitiesSystem.cs index 841d923a24c..bdf295615ea 100644 --- a/Content.Server/Abilities/Psionics/PsionicAbilitiesSystem.cs +++ b/Content.Server/Abilities/Psionics/PsionicAbilitiesSystem.cs @@ -12,7 +12,6 @@ using System.Linq; using Robust.Server.Player; using Content.Server.Chat.Managers; -using Content.Server.Psionics.Glimmer; namespace Content.Server.Abilities.Psionics { @@ -29,6 +28,7 @@ public sealed class PsionicAbilitiesSystem : EntitySystem [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly PsionicFamiliarSystem _psionicFamiliar = default!; private ProtoId _pool = "RandomPsionicPowerPool"; private const string GenericInitializationMessage = "generic-power-initialization-feedback"; @@ -59,6 +59,7 @@ private void OnPsionicShutdown(EntityUid uid, PsionicComponent component, Compon || HasComp(uid)) return; + KillFamiliars(component); RemoveAllPsionicPowers(uid); } @@ -215,6 +216,7 @@ public void RemoveAllPsionicPowers(EntityUid uid, bool mindbreak = false) _popups.PopupEntity(Loc.GetString(psionic.MindbreakingFeedback, ("entity", MetaData(uid).EntityName)), uid, uid, PopupType.MediumCaution); + KillFamiliars(psionic); RemComp(uid); RemComp(uid); @@ -368,5 +370,20 @@ private void RemovePsionicStatSources(EntityUid uid, PsionicPowerPrototype proto RefreshPsionicModifiers(uid, psionic); } + + private void KillFamiliars(PsionicComponent component) + { + if (component.Familiars.Count <= 0) + return; + + foreach (var familiar in component.Familiars) + { + if (!TryComp(familiar, out var familiarComponent) + || !familiarComponent.DespawnOnMasterDeath) + continue; + + _psionicFamiliar.DespawnFamiliar(familiar, familiarComponent); + } + } } } diff --git a/Content.Server/Abilities/Psionics/PsionicFamiliarSystem.cs b/Content.Server/Abilities/Psionics/PsionicFamiliarSystem.cs new file mode 100644 index 00000000000..d382c1f2318 --- /dev/null +++ b/Content.Server/Abilities/Psionics/PsionicFamiliarSystem.cs @@ -0,0 +1,140 @@ +using Content.Server.NPC; +using Content.Server.NPC.Components; +using Content.Server.NPC.HTN; +using Content.Server.NPC.Systems; +using Content.Server.Popups; +using Content.Shared.Abilities.Psionics; +using Content.Shared.Actions.Events; +using Content.Shared.Interaction.Events; +using Content.Shared.Mobs; +using Robust.Shared.Map; +using System.Numerics; + +namespace Content.Server.Abilities.Psionics; + +public sealed partial class PsionicFamiliarSystem : EntitySystem +{ + [Dependency] private readonly SharedPsionicAbilitiesSystem _psionics = default!; + [Dependency] private readonly NpcFactionSystem _factions = default!; + [Dependency] private readonly NPCSystem _npc = default!; + [Dependency] private readonly HTNSystem _htn = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSummon); + SubscribeLocalEvent(OnFamiliarShutdown); + SubscribeLocalEvent(OnFamiliarAttack); + SubscribeLocalEvent(OnFamiliarDeath); + } + + private void OnSummon(EntityUid uid, PsionicComponent psionicComponent, SummonPsionicFamiliarActionEvent args) + { + if (psionicComponent.Familiars.Count >= psionicComponent.FamiliarLimit + || !_psionics.OnAttemptPowerUse(args.Performer, args.PowerName, args.ManaCost, args.CheckInsulation) + || args.Handled || args.FamiliarProto is null) + return; + + args.Handled = true; + var familiar = Spawn(args.FamiliarProto, Transform(uid).Coordinates); + EnsureComp(familiar, out var familiarComponent); + familiarComponent.Master = uid; + psionicComponent.Familiars.Add(familiar); + Dirty(familiar, familiarComponent); + Dirty(uid, psionicComponent); + + InheritFactions(uid, familiar, familiarComponent); + HandleBlackboards(uid, familiar, args); + DoGlimmerEffects(uid, psionicComponent, args); + } + + private void InheritFactions(EntityUid uid, EntityUid familiar, PsionicFamiliarComponent familiarComponent) + { + if (!familiarComponent.InheritMasterFactions + || !TryComp(uid, out var masterFactions) + || masterFactions.Factions.Count <= 0) + return; + + EnsureComp(familiar, out var familiarFactions); + foreach (var faction in masterFactions.Factions) + { + if (familiarFactions.Factions.Contains(faction)) + continue; + + _factions.AddFaction(familiar, faction, true); + } + } + + private void HandleBlackboards(EntityUid master, EntityUid familiar, SummonPsionicFamiliarActionEvent args) + { + if (!args.FollowMaster + || !TryComp(familiar, out var htnComponent)) + return; + + _npc.SetBlackboard(familiar, NPCBlackboard.FollowTarget, new EntityCoordinates(master, Vector2.Zero), htnComponent); + _htn.Replan(htnComponent); + } + + private void DoGlimmerEffects(EntityUid uid, PsionicComponent component, SummonPsionicFamiliarActionEvent args) + { + if (!args.DoGlimmerEffects + || args.MinGlimmer == 0 && args.MaxGlimmer == 0) + return; + + var minGlimmer = (int) Math.Round(MathF.MinMagnitude(args.MinGlimmer, args.MaxGlimmer) + * component.CurrentAmplification - component.CurrentDampening); + var maxGlimmer = (int) Math.Round(MathF.MaxMagnitude(args.MinGlimmer, args.MaxGlimmer) + * component.CurrentAmplification - component.CurrentDampening); + + _psionics.LogPowerUsed(uid, args.PowerName, minGlimmer, maxGlimmer); + } + + private void OnFamiliarShutdown(EntityUid uid, PsionicFamiliarComponent component, ComponentShutdown args) + { + if (!Exists(component.Master) + || !TryComp(component.Master, out var psionicComponent) + || !psionicComponent.Familiars.Contains(uid)) + return; + + psionicComponent.Familiars.Remove(uid); + } + + private void OnFamiliarAttack(EntityUid uid, PsionicFamiliarComponent component, AttackAttemptEvent args) + { + if (component.CanAttackMaster || args.Target is null + || args.Target != component.Master) + return; + + args.Cancel(); + if (!Loc.TryGetString(component.AttackMasterText, out var attackFailMessage)) + return; + + _popup.PopupEntity(attackFailMessage, uid, uid, component.AttackPopupType); + } + + private void OnFamiliarDeath(EntityUid uid, PsionicFamiliarComponent component, MobStateChangedEvent args) + { + if (!component.DespawnOnFamiliarDeath + || args.NewMobState != MobState.Dead) + return; + + DespawnFamiliar(uid, component); + } + + public void DespawnFamiliar(EntityUid uid) + { + if (!TryComp(uid, out var familiarComponent)) + return; + + DespawnFamiliar(uid, familiarComponent); + } + + public void DespawnFamiliar(EntityUid uid, PsionicFamiliarComponent component) + { + var popupText = Loc.GetString(component.DespawnText, ("entity", MetaData(uid).EntityName)); + _popup.PopupEntity(popupText, uid, component.DespawnPopopType); + QueueDel(uid); + } +} diff --git a/Content.Server/Alert/Click/CheckHealth.cs b/Content.Server/Alert/Click/CheckHealth.cs new file mode 100644 index 00000000000..31beff69c29 --- /dev/null +++ b/Content.Server/Alert/Click/CheckHealth.cs @@ -0,0 +1,44 @@ +using Content.Server.Chat.Managers; +using Content.Shared.Alert; +using Content.Shared.Chat; +using Content.Shared.Damage; +using Content.Shared.HealthExaminable; +using JetBrains.Annotations; +using Robust.Server.Player; +using Robust.Shared.Player; + +namespace Content.Server.Alert.Click; + +[UsedImplicitly] +[DataDefinition] +public sealed partial class CheckHealth : IAlertClick +{ + public void AlertClicked(EntityUid player) + { + var chatManager = IoCManager.Resolve(); + var entityManager = IoCManager.Resolve(); + var playerManager = IoCManager.Resolve(); + + var healthExaminableSystem = entityManager.System(); + + if (!entityManager.TryGetComponent(player, out HealthExaminableComponent? healthExaminable) || + !entityManager.TryGetComponent(player, out DamageableComponent? damageable) || + !playerManager.TryGetSessionByEntity(player, out var session)) + return; + + var baseMsg = Loc.GetString("health-alert-start"); + SendMessage(chatManager, baseMsg, session); + var markup = healthExaminableSystem.GetMarkup(player, (player, healthExaminable), damageable).ToMarkup(); + SendMessage(chatManager, markup, session); + } + + private static void SendMessage(IChatManager chatManager, string msg, ICommonSession session) + { + chatManager.ChatMessageToOne(ChatChannel.Emotes, + msg, + msg, + EntityUid.Invalid, + false, + session.Channel); + } +} diff --git a/Content.Server/NPC/Components/NPCRetaliationComponent.cs b/Content.Server/NPC/Components/NPCRetaliationComponent.cs index c0bf54d76e7..21b806c4486 100644 --- a/Content.Server/NPC/Components/NPCRetaliationComponent.cs +++ b/Content.Server/NPC/Components/NPCRetaliationComponent.cs @@ -21,4 +21,10 @@ public sealed partial class NPCRetaliationComponent : Component /// todo: this needs to support timeoffsetserializer at some point [DataField("attackMemories")] public Dictionary AttackMemories = new(); + + /// + /// Whether this NPC will retaliate against a "Friendly" NPC. + /// + [DataField] + public bool RetaliateFriendlies; } diff --git a/Content.Server/NPC/Components/NpcFactionMemberComponent.cs b/Content.Server/NPC/Components/NpcFactionMemberComponent.cs index ce7e59ea2c7..f38d8cca0f4 100644 --- a/Content.Server/NPC/Components/NpcFactionMemberComponent.cs +++ b/Content.Server/NPC/Components/NpcFactionMemberComponent.cs @@ -4,7 +4,6 @@ namespace Content.Server.NPC.Components { [RegisterComponent] - [Access(typeof(NpcFactionSystem))] public sealed partial class NpcFactionMemberComponent : Component { /// diff --git a/Content.Server/NPC/Systems/NPCRetaliationSystem.cs b/Content.Server/NPC/Systems/NPCRetaliationSystem.cs index cde8decefc4..a855c9915a0 100644 --- a/Content.Server/NPC/Systems/NPCRetaliationSystem.cs +++ b/Content.Server/NPC/Systems/NPCRetaliationSystem.cs @@ -47,7 +47,8 @@ public bool TryRetaliate(EntityUid uid, EntityUid target, NPCRetaliationComponen if (!HasComp(target)) return false; - if (_npcFaction.IsEntityFriendly(uid, target)) + if (!component.RetaliateFriendlies + && _npcFaction.IsEntityFriendly(uid, target)) return false; _npcFaction.AggroEntity(uid, target); diff --git a/Content.Server/Psionics/PsionicsSystem.cs b/Content.Server/Psionics/PsionicsSystem.cs index 90f69cf7967..9685334daba 100644 --- a/Content.Server/Psionics/PsionicsSystem.cs +++ b/Content.Server/Psionics/PsionicsSystem.cs @@ -16,7 +16,9 @@ using Robust.Server.Player; using Content.Server.Chat.Managers; using Robust.Shared.Prototypes; -using Content.Shared.Psionics; +using Content.Shared.Mobs; +using Content.Shared.Damage; +using Content.Shared.Interaction.Events; namespace Content.Server.Psionics; @@ -35,6 +37,8 @@ public sealed class PsionicsSystem : EntitySystem [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IChatManager _chatManager = default!; [Dependency] private readonly IPrototypeManager _protoMan = default!; + [Dependency] private readonly PsionicFamiliarSystem _psionicFamiliar = default!; + [Dependency] private readonly NPCRetaliationSystem _retaliationSystem = default!; private const string BaselineAmplification = "Baseline Amplification"; private const string BaselineDampening = "Baseline Dampening"; @@ -64,6 +68,9 @@ public override void Initialize() SubscribeLocalEvent(OnStartup); SubscribeLocalEvent(OnMeleeHit); SubscribeLocalEvent(OnStamHit); + SubscribeLocalEvent(OnMobstateChanged); + SubscribeLocalEvent(OnDamageChanged); + SubscribeLocalEvent(OnAttackAttempt); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnRemove); @@ -250,4 +257,59 @@ public void RerollPsionics(EntityUid uid, PsionicComponent? psionic = null, floa RollPsionics(uid, psionic, true, bonusMuliplier); psionic.CanReroll = false; } + + private void OnMobstateChanged(EntityUid uid, PsionicComponent component, MobStateChangedEvent args) + { + if (component.Familiars.Count <= 0 + || args.NewMobState != MobState.Dead) + return; + + foreach (var familiar in component.Familiars) + { + if (!TryComp(familiar, out var familiarComponent) + || !familiarComponent.DespawnOnMasterDeath) + continue; + + _psionicFamiliar.DespawnFamiliar(familiar, familiarComponent); + } + } + + /// + /// When a caster with active summons is attacked, aggro their familiars to the attacker. + /// + private void OnDamageChanged(EntityUid uid, PsionicComponent component, DamageChangedEvent args) + { + if (component.Familiars.Count <= 0 + || !args.DamageIncreased + || args.Origin is not { } origin + || origin == uid) + return; + + SetFamiliarTarget(origin, component); + } + + /// + /// When a caster with active summons attempts to attack something, aggro their familiars to the target. + /// + private void OnAttackAttempt(EntityUid uid, PsionicComponent component, AttackAttemptEvent args) + { + if (component.Familiars.Count <= 0 + || args.Target == uid + || args.Target is not { } target + || component.Familiars.Contains(target)) + return; + + SetFamiliarTarget(target, component); + } + + private void SetFamiliarTarget(EntityUid target, PsionicComponent component) + { + foreach (var familiar in component.Familiars) + { + if (!TryComp(familiar, out var retaliationComponent)) + continue; + + _retaliationSystem.TryRetaliate(familiar, target, retaliationComponent); + } + } } diff --git a/Content.Server/Stunnable/Components/KnockdownOnHitComponent.cs b/Content.Server/Stunnable/Components/KnockdownOnHitComponent.cs new file mode 100644 index 00000000000..b89e674ecec --- /dev/null +++ b/Content.Server/Stunnable/Components/KnockdownOnHitComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Standing; + +namespace Content.Server.Stunnable.Components; + +[RegisterComponent] +public sealed partial class KnockdownOnHitComponent : Component +{ + [DataField] + public TimeSpan Duration = TimeSpan.FromSeconds(1); + + [DataField] + public DropHeldItemsBehavior DropHeldItemsBehavior = DropHeldItemsBehavior.NoDrop; + + [DataField] + public bool RefreshDuration = true; +} diff --git a/Content.Server/Stunnable/Systems/KnockdownOnHitSystem.cs b/Content.Server/Stunnable/Systems/KnockdownOnHitSystem.cs new file mode 100644 index 00000000000..d1300c54f02 --- /dev/null +++ b/Content.Server/Stunnable/Systems/KnockdownOnHitSystem.cs @@ -0,0 +1,40 @@ +using System.Linq; +using Content.Server.Stunnable.Components; +using Content.Shared.StatusEffect; +using Content.Shared.Stunnable.Events; +using Content.Shared.Weapons.Melee.Events; + +namespace Content.Server.Stunnable.Systems; + +public sealed class KnockdownOnHitSystem : EntitySystem +{ + [Dependency] private readonly StunSystem _stun = default!; + + public override void Initialize() + { + SubscribeLocalEvent(OnMeleeHit); + } + + private void OnMeleeHit(Entity entity, ref MeleeHitEvent args) + { + if (args.Direction.HasValue || !args.IsHit || !args.HitEntities.Any() || entity.Comp.Duration <= TimeSpan.Zero) + return; + + var ev = new KnockdownOnHitAttemptEvent(); + RaiseLocalEvent(entity, ref ev); + if (ev.Cancelled) + return; + + foreach (var target in args.HitEntities) + { + if (!TryComp(target, out StatusEffectsComponent? statusEffects)) + continue; + + _stun.TryKnockdown(target, + entity.Comp.Duration, + entity.Comp.RefreshDuration, + entity.Comp.DropHeldItemsBehavior, + statusEffects); + } + } +} diff --git a/Content.Server/TelescopicBaton/TelescopicBatonComponent.cs b/Content.Server/TelescopicBaton/TelescopicBatonComponent.cs new file mode 100644 index 00000000000..1846c76c75d --- /dev/null +++ b/Content.Server/TelescopicBaton/TelescopicBatonComponent.cs @@ -0,0 +1,17 @@ +namespace Content.Server.TelescopicBaton; + +[RegisterComponent] +public sealed partial class TelescopicBatonComponent : Component +{ + [DataField] + public bool CanKnockDown; + + /// + /// The amount of time during which the baton will be able to knockdown someone after activating it. + /// + [DataField] + public TimeSpan AttackTimeframe = TimeSpan.FromSeconds(1.5f); + + [ViewVariables(VVAccess.ReadOnly)] + public TimeSpan TimeframeAccumulator = TimeSpan.FromSeconds(0); +} diff --git a/Content.Server/TelescopicBaton/TelescopicBatonSystem.cs b/Content.Server/TelescopicBaton/TelescopicBatonSystem.cs new file mode 100644 index 00000000000..a859b447505 --- /dev/null +++ b/Content.Server/TelescopicBaton/TelescopicBatonSystem.cs @@ -0,0 +1,67 @@ +using Content.Shared.Item.ItemToggle.Components; +using Content.Shared.Stunnable.Events; +using Content.Shared.TelescopicBaton; +using Robust.Server.GameObjects; + +namespace Content.Server.TelescopicBaton; + +public sealed class TelescopicBatonSystem : EntitySystem +{ + [Dependency] private readonly AppearanceSystem _appearance = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnToggled); + SubscribeLocalEvent(OnKnockdownAttempt); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var baton)) + { + if (!baton.CanKnockDown) + continue; + + baton.TimeframeAccumulator += TimeSpan.FromSeconds(frameTime); + if (baton.TimeframeAccumulator <= baton.AttackTimeframe) + continue; + + baton.CanKnockDown = false; // Only disable knockdown + baton.TimeframeAccumulator = TimeSpan.Zero; + } + } + + private void OnMapInit(Entity baton, ref MapInitEvent args) + { + ToggleBaton(baton, false); + } + + private void OnToggled(Entity baton, ref ItemToggledEvent args) + { + ToggleBaton(baton, args.Activated); + } + + private void OnKnockdownAttempt(Entity baton, ref KnockdownOnHitAttemptEvent args) + { + if (!baton.Comp.CanKnockDown) + { + args.Cancelled = true; + return; + } + + baton.Comp.CanKnockDown = false; + } + + public void ToggleBaton(Entity baton, bool state) + { + baton.Comp.TimeframeAccumulator = TimeSpan.Zero; + baton.Comp.CanKnockDown = state; + _appearance.SetData(baton, TelescopicBatonVisuals.State, state); + } +} diff --git a/Content.Server/Traits/TraitSystem.cs b/Content.Server/Traits/TraitSystem.cs index bd36b4ecefb..afdf01524de 100644 --- a/Content.Server/Traits/TraitSystem.cs +++ b/Content.Server/Traits/TraitSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Psionics; using Content.Server.Language; using Content.Shared.Mood; +using Content.Server.NPC.Systems; namespace Content.Server.Traits; @@ -28,6 +29,7 @@ public sealed class TraitSystem : EntitySystem [Dependency] private readonly PsionicAbilitiesSystem _psionicAbilities = default!; [Dependency] private readonly IComponentFactory _componentFactory = default!; [Dependency] private readonly LanguageSystem _languageSystem = default!; + [Dependency] private readonly NpcFactionSystem _factionSystem = default!; public override void Initialize() { @@ -71,6 +73,8 @@ public void AddTrait(EntityUid uid, TraitPrototype traitPrototype) AddTraitLanguage(uid, traitPrototype); RemoveTraitLanguage(uid, traitPrototype); AddTraitMoodlets(uid, traitPrototype); + RemoveTraitFactions(uid, traitPrototype); + AddTraitFactions(uid, traitPrototype); } /// @@ -225,4 +229,28 @@ public void AddTraitMoodlets(EntityUid uid, TraitPrototype traitPrototype) if (_prototype.TryIndex(moodProto, out var moodlet)) RaiseLocalEvent(uid, new MoodEffectEvent(moodlet.ID)); } + + /// + /// If a trait includes any faction removals, this removes the faction from the receiving entity. + /// + public void RemoveTraitFactions(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.RemoveFactions is null) + return; + + foreach (var faction in traitPrototype.RemoveFactions) + _factionSystem.RemoveFaction(uid, faction); + } + + /// + /// If a trait includes any factions to add, this adds the factions to the receiving entity. + /// + public void AddTraitFactions(EntityUid uid, TraitPrototype traitPrototype) + { + if (traitPrototype.AddFactions is null) + return; + + foreach (var faction in traitPrototype.AddFactions) + _factionSystem.AddFaction(uid, faction); + } } diff --git a/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs b/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs new file mode 100644 index 00000000000..0df9d86f51e --- /dev/null +++ b/Content.Shared/Actions/Events/SummonPsionicFamiliarActionEvent.cs @@ -0,0 +1,54 @@ +using Robust.Shared.Prototypes; + +namespace Content.Shared.Actions.Events; + +public sealed partial class SummonPsionicFamiliarActionEvent : InstantActionEvent +{ + /// + /// The entity to be spawned by this power. + /// + [DataField] + public EntProtoId? FamiliarProto; + + /// + /// The name of this power, used for logging purposes. + /// + [DataField] + public string PowerName; + + /// + /// How much Mana this power should cost, if any. + /// + [DataField] + public float ManaCost; + + /// + /// Whether this power checks if the wearer is psionically insulated. + /// + [DataField] + public bool CheckInsulation; + + /// + /// Whether this power generates glimmer when used. + /// + [DataField] + public bool DoGlimmerEffects; + + /// + /// Whether the summoned entity will follow the one who summoned it. + /// + [DataField] + public bool FollowMaster; + + /// + /// The minimum amount of glimmer generated by this power. + /// + [DataField] + public int MinGlimmer; + + /// + /// The maximum amount of glimmer generated by this power. + /// + [DataField] + public int MaxGlimmer; +} diff --git a/Content.Shared/HealthExaminable/HealthExaminableSystem.cs b/Content.Shared/HealthExaminable/HealthExaminableSystem.cs index 39addfc9410..091176a3cb1 100644 --- a/Content.Shared/HealthExaminable/HealthExaminableSystem.cs +++ b/Content.Shared/HealthExaminable/HealthExaminableSystem.cs @@ -30,30 +30,33 @@ private void OnGetExamineVerbs(EntityUid uid, HealthExaminableComponent componen var detailsRange = _examineSystem.IsInDetailsRange(args.User, uid); - var verb = new ExamineVerb() + var verb = new ExamineVerb { Act = () => { - FormattedMessage markup; - if (uid == args.User - && TryComp(uid, out var selfAware)) - markup = CreateMarkupSelfAware(uid, selfAware, component, damage); - else - markup = CreateMarkup(uid, component, damage); - + var markup = GetMarkup(args.User, (uid, component), damage); _examineSystem.SendExamineTooltip(args.User, uid, markup, false, false); }, Text = Loc.GetString("health-examinable-verb-text"), Category = VerbCategory.Examine, Disabled = !detailsRange, Message = detailsRange ? null : Loc.GetString("health-examinable-verb-disabled"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/rejuvenate.svg.192dpi.png")) + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/rejuvenate.svg.192dpi.png")) }; args.Verbs.Add(verb); } - public FormattedMessage CreateMarkup(EntityUid uid, HealthExaminableComponent component, DamageableComponent damage) + public FormattedMessage GetMarkup(EntityUid examiner, + Entity examinable, + DamageableComponent damageable) + { + return examiner == examinable.Owner && TryComp(examinable, out var selfAware) + ? CreateMarkupSelfAware(examinable, selfAware, examinable.Comp, damageable) + : CreateMarkup(examinable, examinable.Comp, damageable); + } + + private FormattedMessage CreateMarkup(EntityUid uid, HealthExaminableComponent component, DamageableComponent damage) { var msg = new FormattedMessage(); diff --git a/Content.Shared/Psionics/PsionicComponent.cs b/Content.Shared/Psionics/PsionicComponent.cs index 5a3cce19ad3..16e0f028de0 100644 --- a/Content.Shared/Psionics/PsionicComponent.cs +++ b/Content.Shared/Psionics/PsionicComponent.cs @@ -213,5 +213,17 @@ private set /// Popup to play if there no Mana left for a power to execute. public string NoMana = "no-mana"; + + /// + /// The list of Familiars currently bound to this Psion. + /// + [DataField] + public List Familiars = new(); + + /// + /// The maximum number of Familiars a Psion may bind. + /// + [DataField] + public int FamiliarLimit = 1; } } diff --git a/Content.Shared/Psionics/PsionicFamiliarComponent.cs b/Content.Shared/Psionics/PsionicFamiliarComponent.cs new file mode 100644 index 00000000000..d47b01e7e73 --- /dev/null +++ b/Content.Shared/Psionics/PsionicFamiliarComponent.cs @@ -0,0 +1,75 @@ +using Content.Shared.Popups; +using Robust.Shared.GameStates; + +namespace Content.Shared.Abilities.Psionics; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState(true)] +public sealed partial class PsionicFamiliarComponent : Component +{ + /// + /// The entity that summoned this Familiar. + /// + [DataField, AutoNetworkedField] + public EntityUid? Master; + + /// + /// Whether the familiar is allowed to attack its Master. + /// + [DataField] + public bool CanAttackMaster; + + /// + /// Popup to play when a familiar that isn't allowed to attack its Master, attempts to do so. + /// + [DataField] + public string AttackMasterText = "psionic-familiar-cant-attack-master"; + + /// + /// Popup type to use when failing to attack the familiar's Master. + /// + [DataField] + public PopupType AttackPopupType = PopupType.SmallCaution; + + /// + /// Text to display when a Familiar is forced to return from whence it came. + /// + [DataField] + public string DespawnText = "psionic-familiar-despawn-text"; + + /// + /// Popup type to use when a Familiar is forced to return from whence it came. + /// + [DataField] + public PopupType DespawnPopopType = PopupType.MediumCaution; + + /// + /// Whether a Psionic Familiar is sent back from whence it came if its Master dies. + /// + [DataField] + public bool DespawnOnMasterDeath = true; + + /// + /// Whether a Psionic Familiar is sent back from whence it came if it dies. + /// + [DataField] + public bool DespawnOnFamiliarDeath = true; + + /// + /// Whether a Psionic Familiar is sent back from whence it came if its Master is mindbroken. + /// + [DataField] + public bool DespawnOnMasterMindbroken = true; + + /// + /// Should the Familiar despawn when the player controlling it disconnects. + /// + [DataField] + public bool DespawnOnPlayerDetach; + + /// + /// Whether a Psionic Familiar inherits its Master's factions. + /// This can get people into trouble if the familiar inherits a hostile faction such as Syndicate. + /// + [DataField] + public bool InheritMasterFactions = true; +} diff --git a/Content.Shared/Standing/SharedLayingDownSystem.cs b/Content.Shared/Standing/SharedLayingDownSystem.cs index 914b04cdef6..9fa4717045c 100644 --- a/Content.Shared/Standing/SharedLayingDownSystem.cs +++ b/Content.Shared/Standing/SharedLayingDownSystem.cs @@ -178,6 +178,7 @@ public bool TryLieDown(EntityUid uid, LayingDownComponent? layingDown = null, St [Serializable, NetSerializable] public sealed partial class StandingUpDoAfterEvent : SimpleDoAfterEvent; +[Serializable, NetSerializable] public enum DropHeldItemsBehavior : byte { NoDrop, diff --git a/Content.Shared/StatusEffect/StatusEffectsSystem.cs b/Content.Shared/StatusEffect/StatusEffectsSystem.cs index 6aec3a8b3b4..cc6dedae495 100644 --- a/Content.Shared/StatusEffect/StatusEffectsSystem.cs +++ b/Content.Shared/StatusEffect/StatusEffectsSystem.cs @@ -123,6 +123,33 @@ public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool return false; } + /// + /// Tries to add a status effect to an entity, with a given component added as well. + /// + /// The entity to add the effect to. + /// The status effect ID to add. + /// How long the effect should last for. + /// The status effect cooldown should be refreshed (true) or accumulated (false). + /// The component of status effect itself. + /// The status effects component to change, if you already have it. + /// False if the effect could not be added or the component already exists, true otherwise. + public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, Component component, + StatusEffectsComponent? status = null) + { + if (!Resolve(uid, ref status, false) + || !TryAddStatusEffect(uid, key, time, refresh, status)) + return false; + + // If they already have the comp, we just won't bother updating anything. + if (!EntityManager.HasComponent(uid, component.GetType())) + { + EntityManager.AddComponent(uid, component); + status.ActiveEffects[key].RelevantComponent = _componentFactory.GetComponentName(component.GetType()); + } + + return true; + } + public bool TryAddStatusEffect(EntityUid uid, string key, TimeSpan time, bool refresh, string component, StatusEffectsComponent? status = null) { diff --git a/Content.Shared/Stunnable/Events/KnockdownOnHitEvent.cs b/Content.Shared/Stunnable/Events/KnockdownOnHitEvent.cs new file mode 100644 index 00000000000..b177f0e3f3c --- /dev/null +++ b/Content.Shared/Stunnable/Events/KnockdownOnHitEvent.cs @@ -0,0 +1,4 @@ +namespace Content.Shared.Stunnable.Events; + +[ByRefEvent] +public record struct KnockdownOnHitAttemptEvent(bool Cancelled); diff --git a/Content.Shared/Stunnable/KnockedDownComponent.cs b/Content.Shared/Stunnable/KnockedDownComponent.cs index e4f11b8cdaa..865c69bf6ef 100644 --- a/Content.Shared/Stunnable/KnockedDownComponent.cs +++ b/Content.Shared/Stunnable/KnockedDownComponent.cs @@ -1,6 +1,6 @@ +using Content.Shared.Standing; using Robust.Shared.Audio; using Robust.Shared.GameStates; -using Robust.Shared.Serialization; namespace Content.Shared.Stunnable; @@ -13,6 +13,9 @@ public sealed partial class KnockedDownComponent : Component [DataField("helpAttemptSound")] public SoundSpecifier StunAttemptSound = new SoundPathSpecifier("/Audio/Effects/thudswoosh.ogg"); + [DataField] + public DropHeldItemsBehavior DropHeldItemsBehavior = DropHeldItemsBehavior.DropIfStanding; + [ViewVariables, AutoNetworkedField] public float HelpTimer = 0f; } diff --git a/Content.Shared/Stunnable/SharedStunSystem.cs b/Content.Shared/Stunnable/SharedStunSystem.cs index 52225843f23..05d6b8ec533 100644 --- a/Content.Shared/Stunnable/SharedStunSystem.cs +++ b/Content.Shared/Stunnable/SharedStunSystem.cs @@ -27,6 +27,8 @@ namespace Content.Shared.Stunnable; public abstract class SharedStunSystem : EntitySystem { + [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly ActionBlockerSystem _blocker = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!; @@ -110,7 +112,7 @@ private void UpdateCanMove(EntityUid uid, StunnedComponent component, EntityEven private void OnKnockInit(EntityUid uid, KnockedDownComponent component, ComponentInit args) { RaiseNetworkEvent(new CheckAutoGetUpEvent(GetNetEntity(uid))); - _layingDown.TryLieDown(uid, null, null, DropHeldItemsBehavior.DropIfStanding); + _layingDown.TryLieDown(uid, null, null, component.DropHeldItemsBehavior); } private void OnKnockShutdown(EntityUid uid, KnockedDownComponent component, ComponentShutdown args) @@ -171,6 +173,26 @@ public bool TryStun(EntityUid uid, TimeSpan time, bool refresh, return true; } + /// + /// Knocks down the entity, making it fall to the ground. + /// + public bool TryKnockdown(EntityUid uid, TimeSpan time, bool refresh, + DropHeldItemsBehavior behavior = DropHeldItemsBehavior.DropIfStanding, + StatusEffectsComponent? status = null) + { + if (time <= TimeSpan.Zero || !Resolve(uid, ref status, false)) + return false; + + var component = _componentFactory.GetComponent(); + component.DropHeldItemsBehavior = behavior; + if (!_statusEffect.TryAddStatusEffect(uid, "KnockedDown", time, refresh, component)) + return false; + + var ev = new KnockedDownEvent(); + RaiseLocalEvent(uid, ref ev); + return true; + } + /// /// Knocks down the entity, making it fall to the ground. /// diff --git a/Content.Shared/TelescopicBaton/TelescopicBatonVisuals.cs b/Content.Shared/TelescopicBaton/TelescopicBatonVisuals.cs new file mode 100644 index 00000000000..25e6f583c83 --- /dev/null +++ b/Content.Shared/TelescopicBaton/TelescopicBatonVisuals.cs @@ -0,0 +1,10 @@ +using Robust.Shared.Serialization; + +namespace Content.Shared.TelescopicBaton; + +[Serializable, NetSerializable] +public enum TelescopicBatonVisuals +{ + State, + Layer +} diff --git a/Content.Shared/Traits/Prototypes/TraitPrototype.cs b/Content.Shared/Traits/Prototypes/TraitPrototype.cs index 7c0e429a691..fb8ccf54640 100644 --- a/Content.Shared/Traits/Prototypes/TraitPrototype.cs +++ b/Content.Shared/Traits/Prototypes/TraitPrototype.cs @@ -87,4 +87,22 @@ public sealed partial class TraitPrototype : IPrototype /// [DataField] public List>? MoodEffects { get; private set; } = default!; + + /// + /// The list of all Factions that this trait removes. + /// + /// + /// I can't actually Validate these because the proto lives in Shared. + /// + [DataField] + public List? RemoveFactions { get; private set; } = default!; + + /// + /// The list of all Factions that this trait adds. + /// + /// + /// I can't actually Validate these because the proto lives in Shared. + /// + [DataField] + public List? AddFactions { get; private set; } = default!; } diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index d47fccc7568..5cd1962e56d 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -7578,3 +7578,80 @@ Entries: id: 6488 time: '2024-10-25T19:04:14.0000000+00:00' url: https://github.com/Simple-Station/Einstein-Engines/pull/1142 +- author: Ichaie + changes: + - type: Fix + message: '#1126 ' + id: 6489 + time: '2024-10-27T15:30:55.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1129 +- author: VMSolidus + changes: + - type: Tweak + message: >- + The Syndicate Listening Post now has a custom communications console, + which no longer can recall Nanotrasen shuttles, and doesn't sign its + messages as Nuclear Operatives. + id: 6490 + time: '2024-10-27T15:31:16.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1143 +- author: Remuchi + changes: + - type: Fix + message: Layered icons are now properly displayed in radial menus. + id: 6491 + time: '2024-10-27T15:34:45.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1150 +- author: Remuchi + changes: + - type: Add + message: >- + Clicking on health alert now will print message in chat, displaying your + health state. + id: 6492 + time: '2024-10-27T15:36:43.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1139 +- author: VMSolidus + changes: + - type: Add + message: >- + The Animal Friend trait has been added to the game. Characters with this + trait are not attacked by animals. + id: 6493 + time: '2024-10-27T16:44:50.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/955 +- author: Remuchi + changes: + - type: Add + message: Added telescopic baton - a self-defense weapon for Command staff. + id: 6494 + time: '2024-10-27T16:45:05.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1144 +- author: VMSolidus + changes: + - type: Add + message: >- + A new class of Psionic powers has been added, "Summon Familiar". + Familiars are a new kind of Psionic creature that can be summoned by + Psions with the right power. Familiars will automatically follow their + Master, attack anyone who attacks their Master, fight back when + attacked, and attack anyone their Master attacks. Additionally, + Familiars are also ghostroles, so that they can be taken over by a + player, but otherwise do not require player control to function. + Familiars disappear when they die, and will also disappear if their + Master is either killed, or mindbroken. Psions can have a maximum of + one(1) familiar at a time. + - type: Add + message: >- + New psi-power "Summon Imp", as the first new Psi Familiar. Imps are + small motes of living flame that follow and protect their summoner. Imps + also emit an incredibly bright light, and can natively cast Pyrokinetic + Flare. + - type: Add + message: >- + Remilia has been updated to be a Psi Familiar, and no longer requires + the Bible to summon. Chaplains now start with a Power that lets them + summon Remilia once every 2 minutes. + id: 6495 + time: '2024-10-27T16:51:18.0000000+00:00' + url: https://github.com/Simple-Station/Einstein-Engines/pull/1146 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 3a7e0e7ed60..7b0e97dea4c 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, angelofallars, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlueHNT, Boaz1111, BobdaBiscuit, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, CilliePaint, clorl, Clyybber, CodedCrow, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, Daemon, daerSeebaer, dahnte, dakamakat, dakimasu, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DoctorBeard, DogZeroX, dontbetank, dootythefrooty, Doru991, DoubleRiceEddiedd, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, Evgencheg, exincore, exp111, Fahasor, FairlySadPanda, Fansana, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FluidRock, FoLoKe, fooberticus, Fortune117, FoxxoTrystan, freeman2651, Froffy025, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, geraeumig, Git-Nivrak, github-actions[bot], gituhabu, gluesniffler, Golinth, GoodWheatley, graevy, GreyMario, Guess-My-Name, gusxyz, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, HoofedEar, Hoolny, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, Lgibb18, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, LovelyLophi, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, Mnemotechnician, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, nyeogmi, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuroSlavKing, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, ShadowCommander, Shadowtheprotogen546, ShatteredSwords, SignalWalker, SimpleStation14, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, SleepyScarecrow, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, spoogemonster, ssdaniel24, stalengd, Stealthbomber16, stellar-novas, StrawberryMoses, superjj18, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, Theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, Tmanzxd, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UltimateJester, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, zelezniciar1, ZelteHonor, zerorulez, zionnBE, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, africalimedrop, Agoichi, Ahion, Aidenkrz, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, angelofallars, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, aspiringLich, avghdev, AzzyIsNotHere, BananaFlambe, BasedUser, beck-thompson, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlueHNT, Boaz1111, BobdaBiscuit, brainfood1183, BramvanZijp, Brandon-Huu, Bribrooo, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CaasGit, CakeQ, CaptainSqrBeard, Carbonhell, Carolyn3114, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, CilliePaint, clorl, Clyybber, CodedCrow, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, coolmankid12345, corentt, crazybrain23, creadth, CrigCrag, Crotalus, CrudeWax, CrzyPotato, Cyberboss, d34d10cc, d4kii, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, Darkenson, DawBla, dch-GH, Deahaka, DEATHB4DEFEAT, DeathCamel58, deathride58, DebugOk, Decappi, Deeeeja, deepdarkdepths, Delete69, deltanedas, DeltaV-Bot, DerbyX, DoctorBeard, DogZeroX, dontbetank, dootythefrooty, Doru991, DoubleRiceEddiedd, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, Dutch-VanDerLinde, Easypoller, eclips_e, EEASAS, Efruit, ElectroSR, elthundercloud, Emisse, EmoGarbage404, Endecc, enumerate0, eoineoineoin, ERORR404V1, Errant-4, estacaoespacialpirata, Evgencheg, exincore, exp111, Fahasor, FairlySadPanda, Fansana, ficcialfaint, Fildrance, FillerVK, Fishfish458, Flareguy, FluffiestFloof, FoLoKe, fooberticus, Fortune117, FoxxoTrystan, freeman2651, Fromoriss, FungiFellow, GalacticChimp, gbasood, Geekyhobo, geraeumig, Git-Nivrak, github-actions[bot], gituhabu, gluesniffler, Golinth, GoodWheatley, gradientvera, graevy, GreyMario, Guess-My-Name, gusxyz, h3half, Hanzdegloker, Hardly3D, harikattar, HerCoyote23, HoofedEar, Hoolny, hord-brayden, hubismal, Hugal31, Huxellberger, iacore, IamVelcroboy, icekot8, Ichaie, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, Interrobang01, IProduceWidgets, ItsMeThom, Jackal298, Jackrost, jamessimo, janekvap, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, JohnGinnane, johnku1, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTrotter, KaiShibaa, kalane15, kalanosh, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Ko4ergaPunk, komunre, koteq, Krunklehorn, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, leonardo-dabepis, LetterN, Level10Cybermancer, lever1209, Lgibb18, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, LovelyLophi, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MisterMecky, Mith-randalf, Mnemotechnician, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, notafet, notquitehadouken, noudoit, nuke-haus, NULL882, nyeogmi, OCOtheOmega, OctoRocket, OldDanceJacket, onoira, osjarw, Owai-Seek, pali6, Pangogie, paolordls, patrikturi, PaulRitter, Peptide90, peptron1, Phantom-Lily, PHCodes, PixelTheKermit, PJB3005, Plykiya, pofitlo, pointer-to-null, PolterTzi, PoorMansDreams, potato1234x, ProfanedBane, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykzz, PuroSlavKing, quatre, QuietlyWhisper, qwerltaz, Radosvik, Radrark, Rainbeon, Rainfey, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, Remuchi, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, ShadowCommander, ShatteredSwords, SignalWalker, SimpleStation14, Simyon264, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, SleepyScarecrow, Snowni, snowsignal, SonicHDC, SoulSloth, SpaceManiac, SpeltIncorrectyl, spoogemonster, ssdaniel24, stalengd, Stealthbomber16, stellar-novas, StrawberryMoses, superjj18, SweptWasTaken, Szunti, TadJohnson00, takemysoult, TaralGit, Tayrtahn, tday93, TekuNut, TemporalOroboros, tentekal, tgrkzus, thatrandomcanadianguy, TheArturZh, theashtronaut, thedraccx, themias, theomund, theOperand, TheShuEd, TimrodDX, Titian3, tkdrg, Tmanzxd, tmtmtl30, TokenStyle, tom-leys, tomasalves8, Tomeno, Tornado-Technology, tosatur, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UKNOWH, UltimateJester, UnicornOnLSD, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, VMSolidus, volundr-, Voomra, Vordenburg, vulppine, wafehling, WarMechanic, waylon531, weaversam8, whateverusername0, Willhelm53, Winkarst-cpu, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, zelezniciar1, ZelteHonor, zerorulez, zionnBE, ZNixian, ZoldorfTheWizard, Zymem diff --git a/Resources/Locale/en-US/health-examinable/health-examinable-comp.ftl b/Resources/Locale/en-US/health-examinable/health-examinable-comp.ftl index af31837ab84..60204eb2bd3 100644 --- a/Resources/Locale/en-US/health-examinable/health-examinable-comp.ftl +++ b/Resources/Locale/en-US/health-examinable/health-examinable-comp.ftl @@ -1,2 +1,4 @@ health-examinable-verb-text = Health health-examinable-verb-disabled = Perform a basic health examination in close range. + +health-alert-start = [font size=12][color=green]Health:[/color][/font] diff --git a/Resources/Locale/en-US/health-examinable/health-examinable-silicon.ftl b/Resources/Locale/en-US/health-examinable/health-examinable-silicon.ftl index 03eaf07a3b7..1608d8511d1 100644 --- a/Resources/Locale/en-US/health-examinable/health-examinable-silicon.ftl +++ b/Resources/Locale/en-US/health-examinable/health-examinable-silicon.ftl @@ -1,4 +1,4 @@ -health-examinable-silicon-none = There is no obvious damage to be seen. +health-examinable-silicon-none = [color=green]There is no obvious damage to be seen.[/color] health-examinable-silicon-Blunt-25 = [color=red]{ CAPITALIZE(SUBJECT($target)) } { CONJUGATE-HAVE($target) } minor dents on { POSS-ADJ($target) } chassis.[/color] health-examinable-silicon-Blunt-50 = [color=crimson]{ CAPITALIZE(POSS-ADJ($target)) } chassis is severely dented![/color] diff --git a/Resources/Locale/en-US/psionics/psionic-powers.ftl b/Resources/Locale/en-US/psionics/psionic-powers.ftl index b0e917925c1..a7cec77aa2a 100644 --- a/Resources/Locale/en-US/psionics/psionic-powers.ftl +++ b/Resources/Locale/en-US/psionics/psionic-powers.ftl @@ -70,7 +70,7 @@ revivify-power-initialization-feedback = The Secret of Life in its fullness. I feel my entire existence burning out from within, merely by knowing it. Power flows through me as a mighty river, begging to be released with a simple spoken word. revivify-power-metapsionic-feedback = {CAPITALIZE($entity)} bears the Greater Secret of Life. -revivify-start = {CAPITALIZE($entity)} enunciates a word of such divine power, that those who hear it weep from joy. +revivify-begin = {CAPITALIZE($entity)} enunciates a word of such divine power, that those who hear it weep from joy. # Telegnosis telegnosis-power-description = Create a telegnostic projection to remotely observe things. @@ -143,6 +143,21 @@ pyrokinetic-flare-power-initialization-feedback = I can recall it still, a glimpse of the fires of Gehenna. pyrokinetic-flare-power-metapsionic-feedback = Guh these don't even matter because nobody can read this line in-game and I don't know when I'm ever bringing back Narrow Pulse +# Summon Imp +action-name-summon-imp = Summon Imp +action-description-summon-imp = + Summon and bind an Imp from Gehenna to serve as your Familiar. +summon-imp-power-description = { action-description-summon-imp } +summon-imp-power-initialization-feedback = + For a brief time, I find myself wandering the blackened fields of Gehenna. I sift between the ashes, finding a smoldering coal in the shape of an eye. + I breathe upon it, and it bursts alight with flame. Before I return, the creature thanks me and tells me its name. + +# Summon Remilia +action-name-summon-remilia = Summon Remilia +action-description-summon-remilia = + Call forth your ever-loyal familiar Remilia. +summon-remilia-power-description = { action-description-summon-remilia } + # Psionic System Messages mindbreaking-feedback = The light of life vanishes from {CAPITALIZE($entity)}'s eyes, leaving behind a husk pretending at sapience examine-mindbroken-message = @@ -160,3 +175,12 @@ action-name-darkswap = DarkSwap action-description-darkswap = Mmra Mamm! ethereal-pickup-fail = My hand sizzles as it passes through... + +# Psionic Familiar System +psionic-familiar-cant-attack-master = I am bound by my Master, I cannot harm them. +psionic-familiar-despawn-text = {CAPITALIZE($entity)} returns from whence it came! +ghost-role-information-familiar-name = Psionic Familiar +ghost-role-information-familiar-description = An interdimensional creature bound to the will of a Psion. +ghost-role-information-familiar-rules = + Obey the one who summoned you. Do not act against the interests of your Master. You will die for your Master if it is necessary. + diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index d5c993e2994..921546d466c 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -318,6 +318,10 @@ trait-name-AddictionNicotine = Nicotine Addiction trait-description-AddictionNicotine = You have an addiction to Nicotine, and will require frequent smoke breaks to keep your mood in check. +trait-name-AnimalFriend = Animal Friend +trait-description-AnimalFriend = + You have a way with animals. You will never be attacked by animals, unless you attack them first. + trait-name-Liar = Pathological liar trait-description-Liar = You can hardly bring yourself to tell the truth. Sometimes you lie anyway. diff --git a/Resources/Maps/Shuttles/pirateradio.yml b/Resources/Maps/Shuttles/pirateradio.yml index 4507675d913..28cd42f185f 100644 --- a/Resources/Maps/Shuttles/pirateradio.yml +++ b/Resources/Maps/Shuttles/pirateradio.yml @@ -5775,6 +5775,10 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,3.5 parent: 1 + - type: CommunicationsConsole + color: gold + title: "Pirate Broadcast" + canShuttle: false - proto: SyndicateMonitoringServer entities: - uid: 338 diff --git a/Resources/Maps/radstation.yml b/Resources/Maps/radstation.yml index 198d27abbc5..ccd6233274a 100644 --- a/Resources/Maps/radstation.yml +++ b/Resources/Maps/radstation.yml @@ -112,7 +112,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABYQAAAAAAVAAAAAADVAAAAAACVAAAAAACGwAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAC + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAABAAAAAAAAcAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABYQAAAAAAVAAAAAADVAAAAAACVAAAAAACGwAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAC version: 6 -3,0: ind: -3,0 @@ -132,15 +132,15 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAB + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABVAAAAAABVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABAAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAB version: 6 -2,-3: ind: -2,-3 @@ -212,7 +212,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: GwAAAAABGwAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAACZAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAGwAAAAABGwAAAAADcQAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAA + tiles: GwAAAAABGwAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAACZAAAAAACZAAAAAACZAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAGwAAAAABGwAAAAADcQAAAAAAZAAAAAADZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAACGwAAAAAAcQAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAA version: 6 2,1: ind: 2,1 @@ -340,11 +340,11 @@ entities: version: 6 1,-3: ind: 1,-3 - tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: GwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABGwAAAAACcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACVAAAAAABVAAAAAAAGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAA + tiles: GwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABGwAAAAACcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACVAAAAAABVAAAAAAAGwAAAAABGwAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAHAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAJgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAA version: 6 0,-4: ind: 0,-4 @@ -13558,6 +13558,16 @@ entities: - type: Transform pos: -21.5,12.5 parent: 2 + - uid: 12222 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 - proto: Airlock entities: - uid: 146 @@ -14388,6 +14398,24 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,22.5 parent: 2 + - uid: 16324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-19.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-20.5 + parent: 2 - proto: AirlockExternalLocked entities: - uid: 263 @@ -15105,7 +15133,7 @@ entities: pos: 34.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -52177.2 + secondsUntilStateChange: -53230.88 state: Opening - uid: 383 components: @@ -17745,7 +17773,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -17764,7 +17791,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -17787,7 +17813,6 @@ entities: solutions: beaker: temperature: 293.15 - canMix: True canReact: True maxVol: 50 name: null @@ -44026,11 +44051,6 @@ entities: - type: Transform pos: -6.5,-56.5 parent: 2 - - uid: 5940 - components: - - type: Transform - pos: 34.5,-46.5 - parent: 2 - uid: 5941 components: - type: Transform @@ -44059,17 +44079,7 @@ entities: - uid: 5946 components: - type: Transform - pos: 35.5,-49.5 - parent: 2 - - uid: 5947 - components: - - type: Transform - pos: 35.5,-47.5 - parent: 2 - - uid: 5948 - components: - - type: Transform - pos: 35.5,-48.5 + pos: 34.5,-47.5 parent: 2 - uid: 5949 components: @@ -44516,6 +44526,16 @@ entities: - type: Transform pos: 4.5,-69.5 parent: 2 + - uid: 7208 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 2 - uid: 23837 components: - type: Transform @@ -50491,12 +50511,6 @@ entities: parent: 2 - proto: CableTerminal entities: - - uid: 7208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-46.5 - parent: 2 - uid: 7209 components: - type: Transform @@ -50562,6 +50576,11 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,34.5 parent: 2 + - uid: 18224 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 - proto: CandleRedInfinite entities: - uid: 7220 @@ -77745,7 +77764,7 @@ entities: pos: 31.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11547 components: - type: Transform @@ -77753,7 +77772,7 @@ entities: pos: 31.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - proto: GasMixerFlipped entities: - uid: 11548 @@ -77769,7 +77788,7 @@ entities: pos: 31.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11550 components: - type: Transform @@ -77777,7 +77796,7 @@ entities: pos: 24.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11551 components: - type: Transform @@ -77787,7 +77806,7 @@ entities: inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - proto: GasOutletInjector entities: - uid: 11552 @@ -77845,6 +77864,8 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-53.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 11560 components: - type: Transform @@ -77946,7 +77967,7 @@ entities: pos: 18.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 11571 components: - type: Transform @@ -77954,7 +77975,7 @@ entities: pos: 18.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 11572 components: - type: Transform @@ -77962,7 +77983,7 @@ entities: pos: 18.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 11573 components: - type: Transform @@ -77970,7 +77991,7 @@ entities: pos: 36.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#9003FCFF' + color: '#FF00BFFF' - uid: 14655 components: - type: Transform @@ -78005,7 +78026,7 @@ entities: pos: 31.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11576 components: - type: Transform @@ -78018,7 +78039,7 @@ entities: pos: 45.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11578 components: - type: Transform @@ -78061,7 +78082,7 @@ entities: pos: -6.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11585 components: - type: Transform @@ -78088,7 +78109,7 @@ entities: pos: 34.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11589 components: - type: Transform @@ -78245,7 +78266,7 @@ entities: pos: 20.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 11611 components: - type: Transform @@ -78253,14 +78274,14 @@ entities: pos: 22.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 11612 components: - type: Transform pos: 20.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 11613 components: - type: Transform @@ -78299,7 +78320,7 @@ entities: pos: 22.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 11618 components: - type: Transform @@ -78307,14 +78328,14 @@ entities: pos: 20.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 11619 components: - type: Transform pos: 24.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11620 components: - type: Transform @@ -78322,7 +78343,7 @@ entities: pos: 31.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11621 components: - type: Transform @@ -78411,7 +78432,7 @@ entities: pos: 27.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11633 components: - type: Transform @@ -78457,7 +78478,7 @@ entities: pos: 31.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11639 components: - type: Transform @@ -78465,14 +78486,14 @@ entities: pos: 34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11640 components: - type: Transform pos: 27.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11641 components: - type: Transform @@ -78480,7 +78501,7 @@ entities: pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11642 components: - type: Transform @@ -78502,7 +78523,7 @@ entities: pos: -24.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11645 components: - type: Transform @@ -78510,7 +78531,7 @@ entities: pos: -24.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11646 components: - type: Transform @@ -78518,7 +78539,7 @@ entities: pos: -28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11647 components: - type: Transform @@ -78526,14 +78547,14 @@ entities: pos: -28.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11648 components: - type: Transform pos: -41.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11649 components: - type: Transform @@ -78541,7 +78562,7 @@ entities: pos: -41.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11650 components: - type: Transform @@ -78555,7 +78576,7 @@ entities: pos: -12.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11652 components: - type: Transform @@ -78563,7 +78584,7 @@ entities: pos: 37.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11653 components: - type: Transform @@ -78571,7 +78592,7 @@ entities: pos: 38.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11654 components: - type: Transform @@ -78585,7 +78606,7 @@ entities: pos: 6.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11656 components: - type: Transform @@ -78593,7 +78614,7 @@ entities: pos: 6.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11657 components: - type: Transform @@ -78601,7 +78622,7 @@ entities: pos: 2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11658 components: - type: Transform @@ -78609,7 +78630,7 @@ entities: pos: 2.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11659 components: - type: Transform @@ -78617,7 +78638,7 @@ entities: pos: -7.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11660 components: - type: Transform @@ -78625,7 +78646,7 @@ entities: pos: -7.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11661 components: - type: Transform @@ -78641,7 +78662,7 @@ entities: pos: -4.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11663 components: - type: Transform @@ -78649,7 +78670,7 @@ entities: pos: -5.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11664 components: - type: Transform @@ -78657,7 +78678,7 @@ entities: pos: -5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11665 components: - type: Transform @@ -78665,7 +78686,7 @@ entities: pos: 6.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11666 components: - type: Transform @@ -78673,7 +78694,7 @@ entities: pos: 6.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11667 components: - type: Transform @@ -78689,7 +78710,7 @@ entities: pos: 14.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11669 components: - type: Transform @@ -78697,7 +78718,7 @@ entities: pos: 17.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11670 components: - type: Transform @@ -78705,7 +78726,7 @@ entities: pos: -34.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11671 components: - type: Transform @@ -78729,14 +78750,14 @@ entities: pos: -30.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11674 components: - type: Transform pos: 10.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11675 components: - type: Transform @@ -78744,14 +78765,14 @@ entities: pos: -19.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11676 components: - type: Transform pos: -16.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11677 components: - type: Transform @@ -78759,7 +78780,7 @@ entities: pos: -17.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11678 components: - type: Transform @@ -78767,7 +78788,7 @@ entities: pos: -17.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11679 components: - type: Transform @@ -78775,7 +78796,7 @@ entities: pos: -24.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11680 components: - type: Transform @@ -78783,7 +78804,7 @@ entities: pos: -31.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11681 components: - type: Transform @@ -78791,7 +78812,7 @@ entities: pos: -41.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11682 components: - type: Transform @@ -78807,7 +78828,7 @@ entities: pos: -2.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11684 components: - type: Transform @@ -78815,7 +78836,7 @@ entities: pos: -2.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11685 components: - type: Transform @@ -78823,14 +78844,14 @@ entities: pos: -6.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11686 components: - type: Transform pos: 7.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11687 components: - type: Transform @@ -78838,14 +78859,14 @@ entities: pos: 4.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11688 components: - type: Transform pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11689 components: - type: Transform @@ -78853,14 +78874,14 @@ entities: pos: 22.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11690 components: - type: Transform pos: 22.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11691 components: - type: Transform @@ -78868,7 +78889,7 @@ entities: pos: 42.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11692 components: - type: Transform @@ -78876,21 +78897,21 @@ entities: pos: 19.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11693 components: - type: Transform pos: 28.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11694 components: - type: Transform pos: 32.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11695 components: - type: Transform @@ -78898,7 +78919,7 @@ entities: pos: 44.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11696 components: - type: Transform @@ -78906,14 +78927,14 @@ entities: pos: 40.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11697 components: - type: Transform pos: 44.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11698 components: - type: Transform @@ -78921,14 +78942,14 @@ entities: pos: -29.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11699 components: - type: Transform pos: 20.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11700 components: - type: Transform @@ -78936,7 +78957,7 @@ entities: pos: 32.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11701 components: - type: Transform @@ -78944,7 +78965,7 @@ entities: pos: 32.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11702 components: - type: Transform @@ -78952,14 +78973,14 @@ entities: pos: 34.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11703 components: - type: Transform pos: 34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11704 components: - type: Transform @@ -78967,21 +78988,21 @@ entities: pos: 9.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11705 components: - type: Transform pos: 26.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11706 components: - type: Transform pos: 43.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11707 components: - type: Transform @@ -78989,7 +79010,7 @@ entities: pos: 43.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11708 components: - type: Transform @@ -78997,7 +79018,7 @@ entities: pos: 9.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11709 components: - type: Transform @@ -79012,7 +79033,7 @@ entities: pos: 9.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11711 components: - type: Transform @@ -79020,7 +79041,7 @@ entities: pos: 30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11712 components: - type: Transform @@ -79028,7 +79049,7 @@ entities: pos: 32.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11713 components: - type: Transform @@ -79036,7 +79057,7 @@ entities: pos: 42.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11714 components: - type: Transform @@ -79044,7 +79065,7 @@ entities: pos: 37.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11715 components: - type: Transform @@ -79429,7 +79450,7 @@ entities: pos: -22.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11765 components: - type: Transform @@ -79452,7 +79473,7 @@ entities: pos: -15.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11768 components: - type: Transform @@ -79492,7 +79513,7 @@ entities: pos: -4.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11773 components: - type: Transform @@ -79500,7 +79521,7 @@ entities: pos: -4.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11774 components: - type: Transform @@ -79524,7 +79545,7 @@ entities: pos: -35.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11777 components: - type: Transform @@ -79532,14 +79553,14 @@ entities: pos: -35.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11778 components: - type: Transform pos: -29.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11779 components: - type: Transform @@ -79562,7 +79583,7 @@ entities: pos: -32.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11782 components: - type: Transform @@ -79570,7 +79591,7 @@ entities: pos: -33.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11783 components: - type: Transform @@ -79601,7 +79622,7 @@ entities: pos: -11.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11787 components: - type: Transform @@ -79609,7 +79630,7 @@ entities: pos: -8.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11788 components: - type: Transform @@ -79647,7 +79668,7 @@ entities: pos: -11.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11793 components: - type: Transform @@ -79663,7 +79684,7 @@ entities: pos: -19.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11795 components: - type: Transform @@ -79695,7 +79716,7 @@ entities: pos: -28.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11799 components: - type: Transform @@ -79726,7 +79747,7 @@ entities: pos: -41.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11803 components: - type: Transform @@ -79734,7 +79755,7 @@ entities: pos: -37.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11804 components: - type: Transform @@ -79750,7 +79771,7 @@ entities: pos: -41.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11806 components: - type: Transform @@ -79766,7 +79787,7 @@ entities: pos: -35.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11808 components: - type: Transform @@ -79774,7 +79795,7 @@ entities: pos: -23.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11809 components: - type: Transform @@ -79782,7 +79803,7 @@ entities: pos: 7.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11810 components: - type: Transform @@ -79836,7 +79857,7 @@ entities: pos: 6.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11817 components: - type: Transform @@ -79867,14 +79888,14 @@ entities: pos: -3.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11821 components: - type: Transform pos: -3.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11822 components: - type: Transform @@ -79882,7 +79903,7 @@ entities: pos: -4.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11823 components: - type: Transform @@ -79906,7 +79927,7 @@ entities: pos: 6.5,73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11826 components: - type: Transform @@ -79914,7 +79935,7 @@ entities: pos: 7.5,73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11827 components: - type: Transform @@ -79922,14 +79943,14 @@ entities: pos: 5.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11828 components: - type: Transform pos: 5.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11829 components: - type: Transform @@ -79968,7 +79989,7 @@ entities: pos: -2.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11834 components: - type: Transform @@ -79976,7 +79997,7 @@ entities: pos: -2.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11835 components: - type: Transform @@ -79984,7 +80005,7 @@ entities: pos: -4.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11836 components: - type: Transform @@ -79992,7 +80013,7 @@ entities: pos: -4.5,76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11837 components: - type: Transform @@ -80015,7 +80036,7 @@ entities: pos: 18.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11840 components: - type: Transform @@ -80023,7 +80044,7 @@ entities: pos: 13.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11841 components: - type: Transform @@ -80031,7 +80052,7 @@ entities: pos: 13.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11842 components: - type: Transform @@ -80044,7 +80065,7 @@ entities: pos: 15.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11844 components: - type: Transform @@ -80052,7 +80073,7 @@ entities: pos: 15.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11845 components: - type: Transform @@ -80079,7 +80100,7 @@ entities: pos: 28.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11849 components: - type: Transform @@ -80100,56 +80121,56 @@ entities: pos: -22.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11852 components: - type: Transform pos: -12.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11853 components: - type: Transform pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11854 components: - type: Transform pos: 5.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11855 components: - type: Transform pos: 19.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11856 components: - type: Transform pos: 38.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11857 components: - type: Transform pos: 30.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11858 components: - type: Transform pos: -4.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11859 components: - type: Transform @@ -80163,14 +80184,14 @@ entities: pos: -34.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11861 components: - type: Transform pos: 0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11862 components: - type: Transform @@ -80184,56 +80205,56 @@ entities: pos: -16.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11864 components: - type: Transform pos: -16.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11865 components: - type: Transform pos: -35.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11866 components: - type: Transform pos: 0.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11867 components: - type: Transform pos: 0.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11868 components: - type: Transform pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11869 components: - type: Transform pos: 28.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11870 components: - type: Transform pos: 28.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11871 components: - type: Transform @@ -80332,7 +80353,7 @@ entities: pos: 8.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11885 components: - type: Transform @@ -80340,14 +80361,14 @@ entities: pos: -30.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11886 components: - type: Transform pos: -6.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11887 components: - type: Transform @@ -80355,7 +80376,7 @@ entities: pos: 39.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11888 components: - type: Transform @@ -80377,7 +80398,7 @@ entities: pos: 6.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11891 components: - type: Transform @@ -80453,7 +80474,7 @@ entities: pos: -8.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11904 components: - type: Transform @@ -80461,7 +80482,7 @@ entities: pos: -6.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11905 components: - type: Transform @@ -80469,7 +80490,7 @@ entities: pos: -7.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11906 components: - type: Transform @@ -80484,7 +80505,7 @@ entities: pos: 10.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11908 components: - type: Transform @@ -80492,7 +80513,7 @@ entities: pos: 7.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11909 components: - type: Transform @@ -80521,7 +80542,7 @@ entities: pos: -12.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11913 components: - type: Transform @@ -80529,14 +80550,14 @@ entities: pos: 7.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11914 components: - type: Transform pos: 26.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11915 components: - type: Transform @@ -80544,7 +80565,7 @@ entities: pos: -9.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11916 components: - type: Transform @@ -80552,7 +80573,7 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 11917 components: - type: Transform @@ -81085,7 +81106,7 @@ entities: pos: 20.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 11987 components: - type: Transform @@ -81124,7 +81145,7 @@ entities: pos: 29.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11992 components: - type: Transform @@ -81132,7 +81153,7 @@ entities: pos: 27.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11993 components: - type: Transform @@ -81140,7 +81161,7 @@ entities: pos: 31.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11994 components: - type: Transform @@ -81154,7 +81175,7 @@ entities: pos: 28.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 11996 components: - type: Transform @@ -81184,14 +81205,14 @@ entities: pos: 26.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12000 components: - type: Transform pos: 26.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12001 components: - type: Transform @@ -81221,7 +81242,7 @@ entities: pos: 33.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#9003FCFF' + color: '#FF00BFFF' - uid: 12005 components: - type: Transform @@ -81229,7 +81250,7 @@ entities: pos: 34.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#9003FCFF' + color: '#FF00BFFF' - uid: 12006 components: - type: Transform @@ -81237,7 +81258,7 @@ entities: pos: 35.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#9003FCFF' + color: '#FF00BFFF' - uid: 12007 components: - type: Transform @@ -81245,7 +81266,7 @@ entities: pos: 30.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12008 components: - type: Transform @@ -81260,7 +81281,7 @@ entities: pos: 26.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12010 components: - type: Transform @@ -81281,7 +81302,7 @@ entities: pos: 22.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 12013 components: - type: Transform @@ -81289,14 +81310,14 @@ entities: pos: 28.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12014 components: - type: Transform pos: 26.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12015 components: - type: Transform @@ -81312,7 +81333,7 @@ entities: pos: 23.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 12017 components: - type: Transform @@ -81320,28 +81341,28 @@ entities: pos: 22.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 12018 components: - type: Transform pos: 26.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12019 components: - type: Transform pos: 26.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12020 components: - type: Transform pos: 26.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12021 components: - type: Transform @@ -81349,7 +81370,7 @@ entities: pos: 21.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 12022 components: - type: Transform @@ -81357,7 +81378,7 @@ entities: pos: 20.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 12023 components: - type: Transform @@ -81365,7 +81386,7 @@ entities: pos: 20.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 12024 components: - type: Transform @@ -81373,7 +81394,7 @@ entities: pos: 19.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 12025 components: - type: Transform @@ -81381,7 +81402,7 @@ entities: pos: 19.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#03E8FCFF' + color: '#0000FFFF' - uid: 12026 components: - type: Transform @@ -81389,7 +81410,7 @@ entities: pos: 21.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 12027 components: - type: Transform @@ -81397,14 +81418,14 @@ entities: pos: 23.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 12028 components: - type: Transform pos: 26.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12029 components: - type: Transform @@ -81412,7 +81433,7 @@ entities: pos: 20.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 12030 components: - type: Transform @@ -81420,7 +81441,7 @@ entities: pos: 20.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 12031 components: - type: Transform @@ -81443,7 +81464,7 @@ entities: pos: 22.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12034 components: - type: Transform @@ -81451,7 +81472,7 @@ entities: pos: 21.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12035 components: - type: Transform @@ -81459,7 +81480,7 @@ entities: pos: 20.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12036 components: - type: Transform @@ -81467,7 +81488,7 @@ entities: pos: 20.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12037 components: - type: Transform @@ -81475,7 +81496,7 @@ entities: pos: 19.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12038 components: - type: Transform @@ -81483,7 +81504,7 @@ entities: pos: 21.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12039 components: - type: Transform @@ -81491,7 +81512,7 @@ entities: pos: 22.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12040 components: - type: Transform @@ -81499,7 +81520,7 @@ entities: pos: 22.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12041 components: - type: Transform @@ -81507,7 +81528,7 @@ entities: pos: 22.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12042 components: - type: Transform @@ -81515,7 +81536,7 @@ entities: pos: 19.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12043 components: - type: Transform @@ -81523,7 +81544,7 @@ entities: pos: 20.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12044 components: - type: Transform @@ -81531,7 +81552,7 @@ entities: pos: 21.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 12045 components: - type: Transform @@ -81539,7 +81560,7 @@ entities: pos: 25.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12046 components: - type: Transform @@ -81547,7 +81568,7 @@ entities: pos: 27.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12047 components: - type: Transform @@ -81555,7 +81576,7 @@ entities: pos: 29.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12048 components: - type: Transform @@ -81563,7 +81584,7 @@ entities: pos: 30.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12049 components: - type: Transform @@ -81571,7 +81592,7 @@ entities: pos: 31.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12050 components: - type: Transform @@ -81579,7 +81600,7 @@ entities: pos: 31.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12051 components: - type: Transform @@ -81587,7 +81608,7 @@ entities: pos: 31.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12052 components: - type: Transform @@ -81595,7 +81616,7 @@ entities: pos: 31.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12053 components: - type: Transform @@ -81616,7 +81637,7 @@ entities: pos: 26.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12056 components: - type: Transform @@ -81624,7 +81645,7 @@ entities: pos: 31.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12057 components: - type: Transform @@ -82002,7 +82023,7 @@ entities: pos: 26.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 12107 components: - type: Transform @@ -82308,7 +82329,7 @@ entities: pos: 27.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12147 components: - type: Transform @@ -82316,7 +82337,7 @@ entities: pos: 27.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12148 components: - type: Transform @@ -82324,7 +82345,7 @@ entities: pos: 27.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12149 components: - type: Transform @@ -82332,7 +82353,7 @@ entities: pos: 27.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12150 components: - type: Transform @@ -82340,7 +82361,7 @@ entities: pos: 27.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12151 components: - type: Transform @@ -82348,7 +82369,7 @@ entities: pos: 25.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12152 components: - type: Transform @@ -82356,7 +82377,7 @@ entities: pos: 26.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12153 components: - type: Transform @@ -82402,7 +82423,7 @@ entities: pos: 26.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12159 components: - type: Transform @@ -82410,7 +82431,7 @@ entities: pos: 31.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12160 components: - type: Transform @@ -82418,7 +82439,7 @@ entities: pos: 3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12161 components: - type: Transform @@ -82426,7 +82447,7 @@ entities: pos: 28.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12162 components: - type: Transform @@ -82434,7 +82455,7 @@ entities: pos: 29.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12163 components: - type: Transform @@ -82442,7 +82463,7 @@ entities: pos: 30.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12164 components: - type: Transform @@ -82450,7 +82471,7 @@ entities: pos: 32.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12165 components: - type: Transform @@ -82458,7 +82479,7 @@ entities: pos: 34.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12166 components: - type: Transform @@ -82466,14 +82487,14 @@ entities: pos: 33.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12167 components: - type: Transform pos: 27.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12168 components: - type: Transform @@ -82495,7 +82516,7 @@ entities: pos: 4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12171 components: - type: Transform @@ -82510,7 +82531,7 @@ entities: pos: 27.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12173 components: - type: Transform @@ -82532,7 +82553,7 @@ entities: pos: 26.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12176 components: - type: Transform @@ -82540,7 +82561,7 @@ entities: pos: 25.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12177 components: - type: Transform @@ -82548,7 +82569,7 @@ entities: pos: 24.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12178 components: - type: Transform @@ -82556,7 +82577,7 @@ entities: pos: 23.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12179 components: - type: Transform @@ -82564,7 +82585,7 @@ entities: pos: 22.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12180 components: - type: Transform @@ -82572,7 +82593,7 @@ entities: pos: 21.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12181 components: - type: Transform @@ -82580,7 +82601,7 @@ entities: pos: 20.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12182 components: - type: Transform @@ -82588,7 +82609,7 @@ entities: pos: 19.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12183 components: - type: Transform @@ -82596,7 +82617,7 @@ entities: pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12184 components: - type: Transform @@ -82604,7 +82625,7 @@ entities: pos: 17.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12185 components: - type: Transform @@ -82612,7 +82633,7 @@ entities: pos: 16.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12186 components: - type: Transform @@ -82620,7 +82641,7 @@ entities: pos: 15.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12187 components: - type: Transform @@ -82628,7 +82649,7 @@ entities: pos: 14.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12188 components: - type: Transform @@ -82636,7 +82657,7 @@ entities: pos: 13.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12189 components: - type: Transform @@ -82644,7 +82665,7 @@ entities: pos: 12.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12190 components: - type: Transform @@ -82652,7 +82673,7 @@ entities: pos: 10.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12191 components: - type: Transform @@ -82667,7 +82688,7 @@ entities: pos: 8.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12193 components: - type: Transform @@ -82787,7 +82808,7 @@ entities: pos: 7.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12208 components: - type: Transform @@ -82795,7 +82816,7 @@ entities: pos: 9.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12209 components: - type: Transform @@ -82883,7 +82904,7 @@ entities: pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12220 components: - type: Transform @@ -82891,39 +82912,7 @@ entities: pos: 27.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 12224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12225 components: - type: Transform @@ -82931,7 +82920,7 @@ entities: pos: 4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12226 components: - type: Transform @@ -82939,7 +82928,7 @@ entities: pos: 4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12227 components: - type: Transform @@ -82947,7 +82936,7 @@ entities: pos: 6.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12228 components: - type: Transform @@ -82955,7 +82944,7 @@ entities: pos: 6.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12229 components: - type: Transform @@ -82963,7 +82952,7 @@ entities: pos: 3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12230 components: - type: Transform @@ -82971,7 +82960,7 @@ entities: pos: 0.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12231 components: - type: Transform @@ -82979,7 +82968,7 @@ entities: pos: 0.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12232 components: - type: Transform @@ -82987,7 +82976,7 @@ entities: pos: 0.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12233 components: - type: Transform @@ -82995,49 +82984,49 @@ entities: pos: 0.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12234 components: - type: Transform pos: 0.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12235 components: - type: Transform pos: 0.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12236 components: - type: Transform pos: 0.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12237 components: - type: Transform pos: 0.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12238 components: - type: Transform pos: 0.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12239 components: - type: Transform pos: 0.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12240 components: - type: Transform @@ -83045,7 +83034,7 @@ entities: pos: -0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12241 components: - type: Transform @@ -83053,7 +83042,7 @@ entities: pos: -1.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12242 components: - type: Transform @@ -83061,7 +83050,7 @@ entities: pos: -2.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12243 components: - type: Transform @@ -83069,7 +83058,7 @@ entities: pos: -3.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12244 components: - type: Transform @@ -83077,7 +83066,7 @@ entities: pos: -4.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12245 components: - type: Transform @@ -83085,21 +83074,21 @@ entities: pos: -5.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12246 components: - type: Transform pos: -6.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12247 components: - type: Transform pos: -6.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12248 components: - type: Transform @@ -83107,7 +83096,7 @@ entities: pos: -8.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12249 components: - type: Transform @@ -83115,7 +83104,7 @@ entities: pos: -9.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12250 components: - type: Transform @@ -83123,7 +83112,7 @@ entities: pos: -7.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12251 components: - type: Transform @@ -83131,7 +83120,7 @@ entities: pos: -11.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12252 components: - type: Transform @@ -83139,7 +83128,7 @@ entities: pos: -12.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12253 components: - type: Transform @@ -83147,7 +83136,7 @@ entities: pos: -13.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12254 components: - type: Transform @@ -83155,7 +83144,7 @@ entities: pos: -14.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12255 components: - type: Transform @@ -83163,7 +83152,7 @@ entities: pos: -16.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12256 components: - type: Transform @@ -83171,7 +83160,7 @@ entities: pos: -17.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12257 components: - type: Transform @@ -83179,7 +83168,7 @@ entities: pos: -18.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12258 components: - type: Transform @@ -83187,7 +83176,7 @@ entities: pos: -19.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12259 components: - type: Transform @@ -83195,7 +83184,7 @@ entities: pos: -20.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12260 components: - type: Transform @@ -83203,21 +83192,21 @@ entities: pos: -21.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12261 components: - type: Transform pos: -24.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12262 components: - type: Transform pos: -24.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12263 components: - type: Transform @@ -83225,7 +83214,7 @@ entities: pos: -25.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12264 components: - type: Transform @@ -83233,7 +83222,7 @@ entities: pos: -26.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12265 components: - type: Transform @@ -83241,7 +83230,7 @@ entities: pos: -27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12266 components: - type: Transform @@ -83249,7 +83238,7 @@ entities: pos: -29.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12267 components: - type: Transform @@ -83257,14 +83246,14 @@ entities: pos: -31.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12268 components: - type: Transform pos: -32.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12269 components: - type: Transform @@ -83272,7 +83261,7 @@ entities: pos: -32.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12270 components: - type: Transform @@ -83287,42 +83276,42 @@ entities: pos: -32.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12272 components: - type: Transform pos: -32.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12273 components: - type: Transform pos: -32.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12274 components: - type: Transform pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12275 components: - type: Transform pos: -32.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12276 components: - type: Transform pos: -32.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12277 components: - type: Transform @@ -83330,7 +83319,7 @@ entities: pos: -33.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12278 components: - type: Transform @@ -83338,7 +83327,7 @@ entities: pos: -35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12279 components: - type: Transform @@ -83346,7 +83335,7 @@ entities: pos: -36.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12280 components: - type: Transform @@ -83354,7 +83343,7 @@ entities: pos: -37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12281 components: - type: Transform @@ -83362,7 +83351,7 @@ entities: pos: -38.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12282 components: - type: Transform @@ -83370,7 +83359,7 @@ entities: pos: -39.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12283 components: - type: Transform @@ -83378,7 +83367,7 @@ entities: pos: -40.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12284 components: - type: Transform @@ -83386,7 +83375,7 @@ entities: pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12285 components: - type: Transform @@ -83394,7 +83383,7 @@ entities: pos: -41.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12286 components: - type: Transform @@ -83402,7 +83391,7 @@ entities: pos: -41.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12287 components: - type: Transform @@ -83410,7 +83399,7 @@ entities: pos: -41.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12288 components: - type: Transform @@ -83418,7 +83407,7 @@ entities: pos: -41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12289 components: - type: Transform @@ -83426,7 +83415,7 @@ entities: pos: -41.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12290 components: - type: Transform @@ -83442,7 +83431,7 @@ entities: pos: -41.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12292 components: - type: Transform @@ -83450,7 +83439,7 @@ entities: pos: -41.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12293 components: - type: Transform @@ -83458,7 +83447,7 @@ entities: pos: -41.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12294 components: - type: Transform @@ -83466,7 +83455,7 @@ entities: pos: -41.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12295 components: - type: Transform @@ -83474,7 +83463,7 @@ entities: pos: -34.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12296 components: - type: Transform @@ -83482,7 +83471,7 @@ entities: pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12297 components: - type: Transform @@ -83490,7 +83479,7 @@ entities: pos: -32.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12298 components: - type: Transform @@ -83498,7 +83487,7 @@ entities: pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12299 components: - type: Transform @@ -83506,7 +83495,7 @@ entities: pos: -32.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12300 components: - type: Transform @@ -83514,14 +83503,14 @@ entities: pos: -31.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12301 components: - type: Transform pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12302 components: - type: Transform @@ -83534,21 +83523,21 @@ entities: pos: -12.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12304 components: - type: Transform pos: -12.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12305 components: - type: Transform pos: -12.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12306 components: - type: Transform @@ -83556,7 +83545,7 @@ entities: pos: -10.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12307 components: - type: Transform @@ -83564,7 +83553,7 @@ entities: pos: -11.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12308 components: - type: Transform @@ -83572,7 +83561,7 @@ entities: pos: -13.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12309 components: - type: Transform @@ -83580,7 +83569,7 @@ entities: pos: -14.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12310 components: - type: Transform @@ -83588,7 +83577,7 @@ entities: pos: -15.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12311 components: - type: Transform @@ -83596,14 +83585,14 @@ entities: pos: -15.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12312 components: - type: Transform pos: -12.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12313 components: - type: Transform @@ -83611,7 +83600,7 @@ entities: pos: -12.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12314 components: - type: Transform @@ -83619,7 +83608,7 @@ entities: pos: -12.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12315 components: - type: Transform @@ -83627,7 +83616,7 @@ entities: pos: -12.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12316 components: - type: Transform @@ -83635,7 +83624,7 @@ entities: pos: -15.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12317 components: - type: Transform @@ -83643,7 +83632,7 @@ entities: pos: -14.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12318 components: - type: Transform @@ -83651,7 +83640,7 @@ entities: pos: -13.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12319 components: - type: Transform @@ -83659,7 +83648,7 @@ entities: pos: -15.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12320 components: - type: Transform @@ -83667,7 +83656,7 @@ entities: pos: -13.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12321 components: - type: Transform @@ -83675,7 +83664,7 @@ entities: pos: -14.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12322 components: - type: Transform @@ -83683,7 +83672,7 @@ entities: pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12323 components: - type: Transform @@ -83691,7 +83680,7 @@ entities: pos: -14.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12324 components: - type: Transform @@ -83699,7 +83688,7 @@ entities: pos: -13.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12325 components: - type: Transform @@ -83707,7 +83696,7 @@ entities: pos: -15.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12326 components: - type: Transform @@ -83715,7 +83704,7 @@ entities: pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12327 components: - type: Transform @@ -83723,7 +83712,7 @@ entities: pos: -13.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12328 components: - type: Transform @@ -83731,7 +83720,7 @@ entities: pos: 30.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12329 components: - type: Transform @@ -83739,7 +83728,7 @@ entities: pos: 0.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12330 components: - type: Transform @@ -83747,7 +83736,7 @@ entities: pos: 0.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12331 components: - type: Transform @@ -83755,7 +83744,7 @@ entities: pos: 1.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12332 components: - type: Transform @@ -83763,7 +83752,7 @@ entities: pos: 2.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12333 components: - type: Transform @@ -83771,7 +83760,7 @@ entities: pos: 3.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12334 components: - type: Transform @@ -83779,7 +83768,7 @@ entities: pos: 4.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12335 components: - type: Transform @@ -83787,7 +83776,7 @@ entities: pos: 12.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12336 components: - type: Transform @@ -83795,7 +83784,7 @@ entities: pos: 11.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12337 components: - type: Transform @@ -83803,7 +83792,7 @@ entities: pos: 9.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12338 components: - type: Transform @@ -83811,7 +83800,7 @@ entities: pos: 7.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12339 components: - type: Transform @@ -83819,7 +83808,7 @@ entities: pos: 5.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12340 components: - type: Transform @@ -83827,14 +83816,14 @@ entities: pos: 14.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12341 components: - type: Transform pos: 30.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12342 components: - type: Transform @@ -83842,7 +83831,7 @@ entities: pos: 29.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12343 components: - type: Transform @@ -83850,7 +83839,7 @@ entities: pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12344 components: - type: Transform @@ -83858,7 +83847,7 @@ entities: pos: 27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12345 components: - type: Transform @@ -83874,7 +83863,7 @@ entities: pos: 24.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12347 components: - type: Transform @@ -83882,7 +83871,7 @@ entities: pos: 23.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12348 components: - type: Transform @@ -83890,7 +83879,7 @@ entities: pos: 21.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12349 components: - type: Transform @@ -83898,7 +83887,7 @@ entities: pos: 20.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12350 components: - type: Transform @@ -83906,7 +83895,7 @@ entities: pos: 18.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12351 components: - type: Transform @@ -83914,7 +83903,7 @@ entities: pos: 17.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12352 components: - type: Transform @@ -83922,7 +83911,7 @@ entities: pos: 16.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12353 components: - type: Transform @@ -83930,7 +83919,7 @@ entities: pos: 30.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12354 components: - type: Transform @@ -83938,7 +83927,7 @@ entities: pos: 30.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12355 components: - type: Transform @@ -83946,7 +83935,7 @@ entities: pos: 30.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12356 components: - type: Transform @@ -83954,7 +83943,7 @@ entities: pos: 30.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12357 components: - type: Transform @@ -83962,7 +83951,7 @@ entities: pos: 42.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12358 components: - type: Transform @@ -83970,7 +83959,7 @@ entities: pos: 42.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12359 components: - type: Transform @@ -83978,7 +83967,7 @@ entities: pos: 32.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12360 components: - type: Transform @@ -83986,7 +83975,7 @@ entities: pos: 33.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12361 components: - type: Transform @@ -83994,7 +83983,7 @@ entities: pos: 34.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12362 components: - type: Transform @@ -84002,7 +83991,7 @@ entities: pos: 35.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12363 components: - type: Transform @@ -84010,7 +83999,7 @@ entities: pos: 36.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12364 components: - type: Transform @@ -84018,7 +84007,7 @@ entities: pos: 37.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12365 components: - type: Transform @@ -84026,42 +84015,42 @@ entities: pos: 38.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12366 components: - type: Transform pos: 38.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12367 components: - type: Transform pos: 38.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12368 components: - type: Transform pos: 38.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12369 components: - type: Transform pos: 38.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12370 components: - type: Transform pos: 38.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12371 components: - type: Transform @@ -84076,42 +84065,42 @@ entities: pos: 38.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12373 components: - type: Transform pos: 38.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12374 components: - type: Transform pos: 38.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12375 components: - type: Transform pos: 38.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12376 components: - type: Transform pos: 38.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12377 components: - type: Transform pos: 0.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12378 components: - type: Transform @@ -84119,7 +84108,7 @@ entities: pos: 38.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12379 components: - type: Transform @@ -84127,7 +84116,7 @@ entities: pos: 38.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12380 components: - type: Transform @@ -84135,7 +84124,7 @@ entities: pos: 38.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12381 components: - type: Transform @@ -84143,7 +84132,7 @@ entities: pos: 38.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12382 components: - type: Transform @@ -84151,7 +84140,7 @@ entities: pos: 38.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12383 components: - type: Transform @@ -84159,7 +84148,7 @@ entities: pos: 39.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12384 components: - type: Transform @@ -84167,7 +84156,7 @@ entities: pos: 42.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12385 components: - type: Transform @@ -84175,7 +84164,7 @@ entities: pos: 42.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12386 components: - type: Transform @@ -84183,7 +84172,7 @@ entities: pos: 42.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12387 components: - type: Transform @@ -84191,7 +84180,7 @@ entities: pos: 40.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12388 components: - type: Transform @@ -84199,7 +84188,7 @@ entities: pos: 37.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12389 components: - type: Transform @@ -84207,7 +84196,7 @@ entities: pos: 36.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12390 components: - type: Transform @@ -84215,7 +84204,7 @@ entities: pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12391 components: - type: Transform @@ -84223,7 +84212,7 @@ entities: pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12392 components: - type: Transform @@ -84231,7 +84220,7 @@ entities: pos: 0.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12393 components: - type: Transform @@ -84239,7 +84228,7 @@ entities: pos: 4.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12394 components: - type: Transform @@ -84247,28 +84236,28 @@ entities: pos: 0.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12395 components: - type: Transform pos: 0.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12396 components: - type: Transform pos: 0.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12397 components: - type: Transform pos: 0.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12398 components: - type: Transform @@ -84276,7 +84265,7 @@ entities: pos: 0.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12399 components: - type: Transform @@ -84284,7 +84273,7 @@ entities: pos: 0.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12400 components: - type: Transform @@ -84292,7 +84281,7 @@ entities: pos: 0.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12401 components: - type: Transform @@ -84300,7 +84289,7 @@ entities: pos: 0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12402 components: - type: Transform @@ -84308,7 +84297,7 @@ entities: pos: 0.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12403 components: - type: Transform @@ -84316,7 +84305,7 @@ entities: pos: 0.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12404 components: - type: Transform @@ -84324,7 +84313,7 @@ entities: pos: 0.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12405 components: - type: Transform @@ -84332,7 +84321,7 @@ entities: pos: 0.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12406 components: - type: Transform @@ -84340,7 +84329,7 @@ entities: pos: 0.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12407 components: - type: Transform @@ -84348,7 +84337,7 @@ entities: pos: 0.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12408 components: - type: Transform @@ -84356,7 +84345,7 @@ entities: pos: 0.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12409 components: - type: Transform @@ -84364,7 +84353,7 @@ entities: pos: 0.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12410 components: - type: Transform @@ -84372,7 +84361,7 @@ entities: pos: 0.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12411 components: - type: Transform @@ -84380,7 +84369,7 @@ entities: pos: 0.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12412 components: - type: Transform @@ -84388,7 +84377,7 @@ entities: pos: 0.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12413 components: - type: Transform @@ -84396,28 +84385,28 @@ entities: pos: 0.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12414 components: - type: Transform pos: 5.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12415 components: - type: Transform pos: 5.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12416 components: - type: Transform pos: 5.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12417 components: - type: Transform @@ -84425,7 +84414,7 @@ entities: pos: 3.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12418 components: - type: Transform @@ -84433,7 +84422,7 @@ entities: pos: 5.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12419 components: - type: Transform @@ -84441,7 +84430,7 @@ entities: pos: 2.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12420 components: - type: Transform @@ -84449,35 +84438,35 @@ entities: pos: 1.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12421 components: - type: Transform pos: 6.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12422 components: - type: Transform pos: 6.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12423 components: - type: Transform pos: 6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12424 components: - type: Transform pos: 6.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12425 components: - type: Transform @@ -84485,7 +84474,7 @@ entities: pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12426 components: - type: Transform @@ -84493,14 +84482,14 @@ entities: pos: 4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12427 components: - type: Transform pos: 2.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12428 components: - type: Transform @@ -84508,7 +84497,7 @@ entities: pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12429 components: - type: Transform @@ -84516,7 +84505,7 @@ entities: pos: 0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12430 components: - type: Transform @@ -84524,7 +84513,7 @@ entities: pos: -0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12431 components: - type: Transform @@ -84532,7 +84521,7 @@ entities: pos: -1.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12432 components: - type: Transform @@ -84540,7 +84529,7 @@ entities: pos: -2.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12433 components: - type: Transform @@ -84555,7 +84544,7 @@ entities: pos: -5.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12435 components: - type: Transform @@ -84563,7 +84552,7 @@ entities: pos: -6.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12436 components: - type: Transform @@ -84571,7 +84560,7 @@ entities: pos: -8.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12437 components: - type: Transform @@ -84579,7 +84568,7 @@ entities: pos: -8.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12438 components: - type: Transform @@ -84587,7 +84576,7 @@ entities: pos: -9.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12439 components: - type: Transform @@ -84595,7 +84584,7 @@ entities: pos: -10.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12440 components: - type: Transform @@ -84603,7 +84592,7 @@ entities: pos: -11.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12441 components: - type: Transform @@ -84642,7 +84631,7 @@ entities: pos: -4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12446 components: - type: Transform @@ -84654,77 +84643,77 @@ entities: pos: -4.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12448 components: - type: Transform pos: -4.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12449 components: - type: Transform pos: -4.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12450 components: - type: Transform pos: -5.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12451 components: - type: Transform pos: -5.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12452 components: - type: Transform pos: -5.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12453 components: - type: Transform pos: -5.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12454 components: - type: Transform pos: -5.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12455 components: - type: Transform pos: -5.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12456 components: - type: Transform pos: -5.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12457 components: - type: Transform pos: -5.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12458 components: - type: Transform @@ -84732,7 +84721,7 @@ entities: pos: -5.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12459 components: - type: Transform @@ -84740,7 +84729,7 @@ entities: pos: -5.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12460 components: - type: Transform @@ -84748,7 +84737,7 @@ entities: pos: -5.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12461 components: - type: Transform @@ -84756,7 +84745,7 @@ entities: pos: -5.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12462 components: - type: Transform @@ -84764,7 +84753,7 @@ entities: pos: -5.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12463 components: - type: Transform @@ -84772,7 +84761,7 @@ entities: pos: -5.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12464 components: - type: Transform @@ -84780,7 +84769,7 @@ entities: pos: -4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12465 components: - type: Transform @@ -84788,7 +84777,7 @@ entities: pos: -3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12466 components: - type: Transform @@ -84796,7 +84785,7 @@ entities: pos: -2.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12467 components: - type: Transform @@ -84804,7 +84793,7 @@ entities: pos: -1.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12468 components: - type: Transform @@ -84812,7 +84801,7 @@ entities: pos: -0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12469 components: - type: Transform @@ -84820,7 +84809,7 @@ entities: pos: 0.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12470 components: - type: Transform @@ -84828,7 +84817,7 @@ entities: pos: 1.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12471 components: - type: Transform @@ -84836,7 +84825,7 @@ entities: pos: 2.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12472 components: - type: Transform @@ -84844,7 +84833,7 @@ entities: pos: 3.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12473 components: - type: Transform @@ -84852,7 +84841,7 @@ entities: pos: 4.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12474 components: - type: Transform @@ -84860,70 +84849,70 @@ entities: pos: 5.5,-76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12475 components: - type: Transform pos: 6.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12476 components: - type: Transform pos: 6.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12477 components: - type: Transform pos: 6.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12478 components: - type: Transform pos: 6.5,-72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12479 components: - type: Transform pos: 6.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12480 components: - type: Transform pos: 6.5,-74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12481 components: - type: Transform pos: 6.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12482 components: - type: Transform pos: 6.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12483 components: - type: Transform pos: 6.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12484 components: - type: Transform @@ -84931,7 +84920,7 @@ entities: pos: 6.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12485 components: - type: Transform @@ -84939,7 +84928,7 @@ entities: pos: 7.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12486 components: - type: Transform @@ -84947,7 +84936,7 @@ entities: pos: 8.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12487 components: - type: Transform @@ -84955,7 +84944,7 @@ entities: pos: 9.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12488 components: - type: Transform @@ -84963,7 +84952,7 @@ entities: pos: 10.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12489 components: - type: Transform @@ -84971,7 +84960,7 @@ entities: pos: 11.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12490 components: - type: Transform @@ -84987,7 +84976,7 @@ entities: pos: 14.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12492 components: - type: Transform @@ -84995,7 +84984,7 @@ entities: pos: 14.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12493 components: - type: Transform @@ -85003,7 +84992,7 @@ entities: pos: 14.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12494 components: - type: Transform @@ -85011,7 +85000,7 @@ entities: pos: 14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12495 components: - type: Transform @@ -85019,7 +85008,7 @@ entities: pos: 14.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12496 components: - type: Transform @@ -85027,7 +85016,7 @@ entities: pos: 14.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12497 components: - type: Transform @@ -85035,7 +85024,7 @@ entities: pos: 14.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12498 components: - type: Transform @@ -85043,7 +85032,7 @@ entities: pos: 14.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12499 components: - type: Transform @@ -85051,7 +85040,7 @@ entities: pos: 14.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12500 components: - type: Transform @@ -85059,7 +85048,7 @@ entities: pos: 14.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12501 components: - type: Transform @@ -85067,7 +85056,7 @@ entities: pos: 15.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12502 components: - type: Transform @@ -85075,7 +85064,7 @@ entities: pos: 15.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12503 components: - type: Transform @@ -85083,7 +85072,7 @@ entities: pos: 16.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12504 components: - type: Transform @@ -85091,7 +85080,7 @@ entities: pos: 10.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12505 components: - type: Transform @@ -85099,7 +85088,7 @@ entities: pos: 44.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12506 components: - type: Transform @@ -85107,7 +85096,7 @@ entities: pos: 43.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12507 components: - type: Transform @@ -85115,7 +85104,7 @@ entities: pos: 42.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12508 components: - type: Transform @@ -85123,7 +85112,7 @@ entities: pos: 41.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12509 components: - type: Transform @@ -85131,7 +85120,7 @@ entities: pos: 45.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12510 components: - type: Transform @@ -85139,7 +85128,7 @@ entities: pos: -3.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12511 components: - type: Transform @@ -85153,7 +85142,7 @@ entities: pos: -23.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12513 components: - type: Transform @@ -85168,28 +85157,28 @@ entities: pos: -23.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12515 components: - type: Transform pos: -23.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12516 components: - type: Transform pos: -23.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12517 components: - type: Transform pos: -23.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12518 components: - type: Transform @@ -85204,7 +85193,7 @@ entities: pos: 1.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12520 components: - type: Transform @@ -85212,7 +85201,7 @@ entities: pos: -30.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12521 components: - type: Transform @@ -85220,7 +85209,7 @@ entities: pos: -30.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12522 components: - type: Transform @@ -85252,7 +85241,7 @@ entities: pos: -31.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12526 components: - type: Transform @@ -85260,7 +85249,7 @@ entities: pos: -32.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12527 components: - type: Transform @@ -85268,7 +85257,7 @@ entities: pos: -33.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12528 components: - type: Transform @@ -85276,7 +85265,7 @@ entities: pos: -34.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12529 components: - type: Transform @@ -85284,7 +85273,7 @@ entities: pos: -34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12530 components: - type: Transform @@ -85292,7 +85281,7 @@ entities: pos: -34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12531 components: - type: Transform @@ -85300,7 +85289,7 @@ entities: pos: -34.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12532 components: - type: Transform @@ -85308,7 +85297,7 @@ entities: pos: -34.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12533 components: - type: Transform @@ -85316,14 +85305,14 @@ entities: pos: -34.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12534 components: - type: Transform pos: -34.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12535 components: - type: Transform @@ -85331,7 +85320,7 @@ entities: pos: -37.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12536 components: - type: Transform @@ -85339,7 +85328,7 @@ entities: pos: -34.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12537 components: - type: Transform @@ -85347,7 +85336,7 @@ entities: pos: -34.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12538 components: - type: Transform @@ -85355,7 +85344,7 @@ entities: pos: -34.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12539 components: - type: Transform @@ -85363,7 +85352,7 @@ entities: pos: -34.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12540 components: - type: Transform @@ -85371,7 +85360,7 @@ entities: pos: -34.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12541 components: - type: Transform @@ -85379,7 +85368,7 @@ entities: pos: -34.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12542 components: - type: Transform @@ -85387,7 +85376,7 @@ entities: pos: -34.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12543 components: - type: Transform @@ -85395,7 +85384,7 @@ entities: pos: -37.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12544 components: - type: Transform @@ -85403,7 +85392,7 @@ entities: pos: -36.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12545 components: - type: Transform @@ -85411,7 +85400,7 @@ entities: pos: -34.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12546 components: - type: Transform @@ -85419,7 +85408,7 @@ entities: pos: -37.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12547 components: - type: Transform @@ -85466,7 +85455,7 @@ entities: pos: -37.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12553 components: - type: Transform @@ -85474,7 +85463,7 @@ entities: pos: -37.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12554 components: - type: Transform @@ -85482,7 +85471,7 @@ entities: pos: -37.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12555 components: - type: Transform @@ -85490,7 +85479,7 @@ entities: pos: -37.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12556 components: - type: Transform @@ -85498,7 +85487,7 @@ entities: pos: -37.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12557 components: - type: Transform @@ -85506,7 +85495,7 @@ entities: pos: -37.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12558 components: - type: Transform @@ -85514,7 +85503,7 @@ entities: pos: -37.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12559 components: - type: Transform @@ -85522,7 +85511,7 @@ entities: pos: -37.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12560 components: - type: Transform @@ -85530,7 +85519,7 @@ entities: pos: -37.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12561 components: - type: Transform @@ -85538,7 +85527,7 @@ entities: pos: -37.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12562 components: - type: Transform @@ -85546,7 +85535,7 @@ entities: pos: -37.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12563 components: - type: Transform @@ -85554,7 +85543,7 @@ entities: pos: -37.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12564 components: - type: Transform @@ -85562,7 +85551,7 @@ entities: pos: -37.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12565 components: - type: Transform @@ -85570,7 +85559,7 @@ entities: pos: -37.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12566 components: - type: Transform @@ -85578,7 +85567,7 @@ entities: pos: -37.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12567 components: - type: Transform @@ -85586,7 +85575,7 @@ entities: pos: -37.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12568 components: - type: Transform @@ -85594,7 +85583,7 @@ entities: pos: -37.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12569 components: - type: Transform @@ -85602,7 +85591,7 @@ entities: pos: -37.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12570 components: - type: Transform @@ -85610,91 +85599,91 @@ entities: pos: -37.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12571 components: - type: Transform pos: -34.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12572 components: - type: Transform pos: -34.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12573 components: - type: Transform pos: -34.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12574 components: - type: Transform pos: -34.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12575 components: - type: Transform pos: -34.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12576 components: - type: Transform pos: -34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12577 components: - type: Transform pos: -34.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12578 components: - type: Transform pos: -34.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12579 components: - type: Transform pos: -34.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12580 components: - type: Transform pos: -34.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12581 components: - type: Transform pos: -34.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12582 components: - type: Transform pos: -34.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12583 components: - type: Transform @@ -85702,7 +85691,7 @@ entities: pos: -34.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12584 components: - type: Transform @@ -85710,7 +85699,7 @@ entities: pos: -35.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12585 components: - type: Transform @@ -85718,7 +85707,7 @@ entities: pos: -34.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12586 components: - type: Transform @@ -85726,7 +85715,7 @@ entities: pos: -34.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12587 components: - type: Transform @@ -85734,7 +85723,7 @@ entities: pos: -34.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12588 components: - type: Transform @@ -85742,7 +85731,7 @@ entities: pos: -34.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12589 components: - type: Transform @@ -85750,7 +85739,7 @@ entities: pos: -34.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12590 components: - type: Transform @@ -85758,7 +85747,7 @@ entities: pos: -34.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12591 components: - type: Transform @@ -85766,7 +85755,7 @@ entities: pos: -33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12592 components: - type: Transform @@ -85774,7 +85763,7 @@ entities: pos: -23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12593 components: - type: Transform @@ -85782,7 +85771,7 @@ entities: pos: -24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12594 components: - type: Transform @@ -85790,7 +85779,7 @@ entities: pos: -25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12595 components: - type: Transform @@ -85798,7 +85787,7 @@ entities: pos: -26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12596 components: - type: Transform @@ -85806,7 +85795,7 @@ entities: pos: -27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12597 components: - type: Transform @@ -85814,7 +85803,7 @@ entities: pos: -28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12598 components: - type: Transform @@ -85822,7 +85811,7 @@ entities: pos: -29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12599 components: - type: Transform @@ -85830,7 +85819,7 @@ entities: pos: -31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12600 components: - type: Transform @@ -85838,14 +85827,14 @@ entities: pos: -32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12601 components: - type: Transform pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12602 components: - type: Transform @@ -85853,7 +85842,7 @@ entities: pos: -21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12603 components: - type: Transform @@ -85861,7 +85850,7 @@ entities: pos: -20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12604 components: - type: Transform @@ -85869,7 +85858,7 @@ entities: pos: -19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12605 components: - type: Transform @@ -85877,7 +85866,7 @@ entities: pos: -18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12606 components: - type: Transform @@ -85885,7 +85874,7 @@ entities: pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12607 components: - type: Transform @@ -85893,7 +85882,7 @@ entities: pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12608 components: - type: Transform @@ -85901,7 +85890,7 @@ entities: pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12609 components: - type: Transform @@ -85909,7 +85898,7 @@ entities: pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12610 components: - type: Transform @@ -85917,7 +85906,7 @@ entities: pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12611 components: - type: Transform @@ -85925,7 +85914,7 @@ entities: pos: -12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12612 components: - type: Transform @@ -85933,7 +85922,7 @@ entities: pos: -11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12613 components: - type: Transform @@ -85941,7 +85930,7 @@ entities: pos: -10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12614 components: - type: Transform @@ -85949,7 +85938,7 @@ entities: pos: -8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12615 components: - type: Transform @@ -85957,7 +85946,7 @@ entities: pos: -7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12616 components: - type: Transform @@ -85965,7 +85954,7 @@ entities: pos: -6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12617 components: - type: Transform @@ -85973,7 +85962,7 @@ entities: pos: -5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12618 components: - type: Transform @@ -85981,7 +85970,7 @@ entities: pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12619 components: - type: Transform @@ -85989,7 +85978,7 @@ entities: pos: -3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12620 components: - type: Transform @@ -85997,7 +85986,7 @@ entities: pos: -2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12621 components: - type: Transform @@ -86005,7 +85994,7 @@ entities: pos: -1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12622 components: - type: Transform @@ -86013,49 +86002,49 @@ entities: pos: -0.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12623 components: - type: Transform pos: -30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12624 components: - type: Transform pos: -30.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12625 components: - type: Transform pos: -30.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12626 components: - type: Transform pos: -30.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12627 components: - type: Transform pos: -30.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12628 components: - type: Transform pos: -30.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12629 components: - type: Transform @@ -86063,7 +86052,7 @@ entities: pos: 8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12630 components: - type: Transform @@ -86071,7 +86060,7 @@ entities: pos: 7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12631 components: - type: Transform @@ -86079,7 +86068,7 @@ entities: pos: 6.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12632 components: - type: Transform @@ -86087,7 +86076,7 @@ entities: pos: 5.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12633 components: - type: Transform @@ -86095,7 +86084,7 @@ entities: pos: 4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12634 components: - type: Transform @@ -86103,7 +86092,7 @@ entities: pos: 3.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12635 components: - type: Transform @@ -86111,7 +86100,7 @@ entities: pos: 2.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12636 components: - type: Transform @@ -86119,7 +86108,7 @@ entities: pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12637 components: - type: Transform @@ -86127,105 +86116,105 @@ entities: pos: 1.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12638 components: - type: Transform pos: 0.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12639 components: - type: Transform pos: 0.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12640 components: - type: Transform pos: 0.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12641 components: - type: Transform pos: 0.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12642 components: - type: Transform pos: 0.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12643 components: - type: Transform pos: 0.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12644 components: - type: Transform pos: 0.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12645 components: - type: Transform pos: 0.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12646 components: - type: Transform pos: 0.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12647 components: - type: Transform pos: 0.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12648 components: - type: Transform pos: 0.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12649 components: - type: Transform pos: 0.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12650 components: - type: Transform pos: 0.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12651 components: - type: Transform pos: 0.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12652 components: - type: Transform @@ -86233,7 +86222,7 @@ entities: pos: -9.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12653 components: - type: Transform @@ -86241,7 +86230,7 @@ entities: pos: -8.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12654 components: - type: Transform @@ -86249,7 +86238,7 @@ entities: pos: -7.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12655 components: - type: Transform @@ -86257,7 +86246,7 @@ entities: pos: -6.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12656 components: - type: Transform @@ -86265,7 +86254,7 @@ entities: pos: -5.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12657 components: - type: Transform @@ -86273,7 +86262,7 @@ entities: pos: -4.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12658 components: - type: Transform @@ -86281,7 +86270,7 @@ entities: pos: -3.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12659 components: - type: Transform @@ -86289,7 +86278,7 @@ entities: pos: -2.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12660 components: - type: Transform @@ -86297,7 +86286,7 @@ entities: pos: -1.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12661 components: - type: Transform @@ -86305,7 +86294,7 @@ entities: pos: -0.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12662 components: - type: Transform @@ -86313,7 +86302,7 @@ entities: pos: -15.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12663 components: - type: Transform @@ -86321,7 +86310,7 @@ entities: pos: -14.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12664 components: - type: Transform @@ -86329,7 +86318,7 @@ entities: pos: -13.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12665 components: - type: Transform @@ -86337,7 +86326,7 @@ entities: pos: -11.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12666 components: - type: Transform @@ -86345,7 +86334,7 @@ entities: pos: -10.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12667 components: - type: Transform @@ -86353,7 +86342,7 @@ entities: pos: -17.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12668 components: - type: Transform @@ -86361,63 +86350,63 @@ entities: pos: -18.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12669 components: - type: Transform pos: -16.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12670 components: - type: Transform pos: -16.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12671 components: - type: Transform pos: -16.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12672 components: - type: Transform pos: -16.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12673 components: - type: Transform pos: -16.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12674 components: - type: Transform pos: -16.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12675 components: - type: Transform pos: -16.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12676 components: - type: Transform pos: -16.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12677 components: - type: Transform @@ -86425,7 +86414,7 @@ entities: pos: -30.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12678 components: - type: Transform @@ -86433,7 +86422,7 @@ entities: pos: -31.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12679 components: - type: Transform @@ -86441,7 +86430,7 @@ entities: pos: -32.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12680 components: - type: Transform @@ -86449,14 +86438,14 @@ entities: pos: -33.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12681 components: - type: Transform pos: 32.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12682 components: - type: Transform @@ -86464,7 +86453,7 @@ entities: pos: -3.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12683 components: - type: Transform @@ -86472,7 +86461,7 @@ entities: pos: -4.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12684 components: - type: Transform @@ -86480,7 +86469,7 @@ entities: pos: -5.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12685 components: - type: Transform @@ -86488,7 +86477,7 @@ entities: pos: -6.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12686 components: - type: Transform @@ -86496,7 +86485,7 @@ entities: pos: -7.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12687 components: - type: Transform @@ -86504,7 +86493,7 @@ entities: pos: -10.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12688 components: - type: Transform @@ -86512,7 +86501,7 @@ entities: pos: -12.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12689 components: - type: Transform @@ -86520,7 +86509,7 @@ entities: pos: -13.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12690 components: - type: Transform @@ -86528,7 +86517,7 @@ entities: pos: -14.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12691 components: - type: Transform @@ -86536,7 +86525,7 @@ entities: pos: -15.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12692 components: - type: Transform @@ -86544,7 +86533,7 @@ entities: pos: -2.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12693 components: - type: Transform @@ -86552,7 +86541,7 @@ entities: pos: -2.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12694 components: - type: Transform @@ -86560,7 +86549,7 @@ entities: pos: -2.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12695 components: - type: Transform @@ -86568,7 +86557,7 @@ entities: pos: -2.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12696 components: - type: Transform @@ -86576,7 +86565,7 @@ entities: pos: -2.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12697 components: - type: Transform @@ -86584,7 +86573,7 @@ entities: pos: -2.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12698 components: - type: Transform @@ -86592,7 +86581,7 @@ entities: pos: -2.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12699 components: - type: Transform @@ -86600,7 +86589,7 @@ entities: pos: -2.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12700 components: - type: Transform @@ -86608,7 +86597,7 @@ entities: pos: -2.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12701 components: - type: Transform @@ -86616,7 +86605,7 @@ entities: pos: -24.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12702 components: - type: Transform @@ -86624,7 +86613,7 @@ entities: pos: -16.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12703 components: - type: Transform @@ -86632,7 +86621,7 @@ entities: pos: -16.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12704 components: - type: Transform @@ -86640,7 +86629,7 @@ entities: pos: -16.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12705 components: - type: Transform @@ -86648,14 +86637,14 @@ entities: pos: -16.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12706 components: - type: Transform pos: -24.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12707 components: - type: Transform @@ -86663,7 +86652,7 @@ entities: pos: -17.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12708 components: - type: Transform @@ -86671,7 +86660,7 @@ entities: pos: -17.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12709 components: - type: Transform @@ -86679,7 +86668,7 @@ entities: pos: -17.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12710 components: - type: Transform @@ -86687,7 +86676,7 @@ entities: pos: -17.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12711 components: - type: Transform @@ -86695,7 +86684,7 @@ entities: pos: -17.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12712 components: - type: Transform @@ -86703,7 +86692,7 @@ entities: pos: -22.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12713 components: - type: Transform @@ -86711,7 +86700,7 @@ entities: pos: -21.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12714 components: - type: Transform @@ -86719,7 +86708,7 @@ entities: pos: -20.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12715 components: - type: Transform @@ -86727,7 +86716,7 @@ entities: pos: -18.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12716 components: - type: Transform @@ -86735,7 +86724,7 @@ entities: pos: -26.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12717 components: - type: Transform @@ -86743,7 +86732,7 @@ entities: pos: -25.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12718 components: - type: Transform @@ -86751,7 +86740,7 @@ entities: pos: -27.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12719 components: - type: Transform @@ -86759,7 +86748,7 @@ entities: pos: -28.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12720 components: - type: Transform @@ -86767,7 +86756,7 @@ entities: pos: -29.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12721 components: - type: Transform @@ -86775,7 +86764,7 @@ entities: pos: -31.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12722 components: - type: Transform @@ -86783,7 +86772,7 @@ entities: pos: -32.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12723 components: - type: Transform @@ -86791,7 +86780,7 @@ entities: pos: -33.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12724 components: - type: Transform @@ -86799,21 +86788,21 @@ entities: pos: -34.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12725 components: - type: Transform pos: -35.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12726 components: - type: Transform pos: -35.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12727 components: - type: Transform @@ -86821,7 +86810,7 @@ entities: pos: -35.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12728 components: - type: Transform @@ -86829,7 +86818,7 @@ entities: pos: -34.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12729 components: - type: Transform @@ -86837,7 +86826,7 @@ entities: pos: -33.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12730 components: - type: Transform @@ -86845,14 +86834,14 @@ entities: pos: -32.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12731 components: - type: Transform pos: 0.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12732 components: - type: Transform @@ -86860,7 +86849,7 @@ entities: pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12733 components: - type: Transform @@ -86868,7 +86857,7 @@ entities: pos: -36.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12734 components: - type: Transform @@ -86876,7 +86865,7 @@ entities: pos: -38.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12735 components: - type: Transform @@ -86884,7 +86873,7 @@ entities: pos: -39.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12736 components: - type: Transform @@ -86892,7 +86881,7 @@ entities: pos: -40.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12737 components: - type: Transform @@ -86900,7 +86889,7 @@ entities: pos: -41.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12738 components: - type: Transform @@ -86908,7 +86897,7 @@ entities: pos: -41.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12739 components: - type: Transform @@ -86916,7 +86905,7 @@ entities: pos: -41.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12740 components: - type: Transform @@ -86924,7 +86913,7 @@ entities: pos: -41.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12741 components: - type: Transform @@ -86955,42 +86944,42 @@ entities: pos: -1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12745 components: - type: Transform pos: -24.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12746 components: - type: Transform pos: -24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12747 components: - type: Transform pos: -24.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12748 components: - type: Transform pos: -24.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12749 components: - type: Transform pos: -24.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12750 components: - type: Transform @@ -86998,7 +86987,7 @@ entities: pos: -25.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12751 components: - type: Transform @@ -87006,7 +86995,7 @@ entities: pos: -26.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12752 components: - type: Transform @@ -87014,7 +87003,7 @@ entities: pos: -27.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12753 components: - type: Transform @@ -87022,7 +87011,7 @@ entities: pos: -24.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12754 components: - type: Transform @@ -87030,7 +87019,7 @@ entities: pos: -24.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12755 components: - type: Transform @@ -87038,7 +87027,7 @@ entities: pos: -24.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12756 components: - type: Transform @@ -87046,7 +87035,7 @@ entities: pos: -24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12757 components: - type: Transform @@ -87054,7 +87043,7 @@ entities: pos: -24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12758 components: - type: Transform @@ -87062,7 +87051,7 @@ entities: pos: -24.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12759 components: - type: Transform @@ -87070,7 +87059,7 @@ entities: pos: -24.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12760 components: - type: Transform @@ -87078,105 +87067,105 @@ entities: pos: -24.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12761 components: - type: Transform pos: 0.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12762 components: - type: Transform pos: 0.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12763 components: - type: Transform pos: 0.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12764 components: - type: Transform pos: 0.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12765 components: - type: Transform pos: 0.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12766 components: - type: Transform pos: 0.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12767 components: - type: Transform pos: 0.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12768 components: - type: Transform pos: 0.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12769 components: - type: Transform pos: 0.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12770 components: - type: Transform pos: 0.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12771 components: - type: Transform pos: 0.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12772 components: - type: Transform pos: 0.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12773 components: - type: Transform pos: 0.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12774 components: - type: Transform pos: 0.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12775 components: - type: Transform @@ -87184,7 +87173,7 @@ entities: pos: 0.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12776 components: - type: Transform @@ -87192,7 +87181,7 @@ entities: pos: 0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12777 components: - type: Transform @@ -87200,7 +87189,7 @@ entities: pos: 0.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12778 components: - type: Transform @@ -87208,7 +87197,7 @@ entities: pos: 0.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12779 components: - type: Transform @@ -87216,7 +87205,7 @@ entities: pos: 0.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12780 components: - type: Transform @@ -87224,7 +87213,7 @@ entities: pos: 0.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12781 components: - type: Transform @@ -87232,7 +87221,7 @@ entities: pos: 0.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12782 components: - type: Transform @@ -87240,7 +87229,7 @@ entities: pos: 0.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12783 components: - type: Transform @@ -87248,7 +87237,7 @@ entities: pos: 0.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12784 components: - type: Transform @@ -87256,7 +87245,7 @@ entities: pos: 0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12785 components: - type: Transform @@ -87264,7 +87253,7 @@ entities: pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12786 components: - type: Transform @@ -87272,7 +87261,7 @@ entities: pos: 0.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12787 components: - type: Transform @@ -87280,7 +87269,7 @@ entities: pos: 0.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12788 components: - type: Transform @@ -87288,7 +87277,7 @@ entities: pos: 0.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12789 components: - type: Transform @@ -87296,7 +87285,7 @@ entities: pos: 0.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12790 components: - type: Transform @@ -87304,7 +87293,7 @@ entities: pos: 0.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12791 components: - type: Transform @@ -87312,7 +87301,7 @@ entities: pos: 0.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12792 components: - type: Transform @@ -87320,7 +87309,7 @@ entities: pos: 0.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12793 components: - type: Transform @@ -87328,7 +87317,7 @@ entities: pos: 0.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12794 components: - type: Transform @@ -87344,7 +87333,7 @@ entities: pos: -0.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12796 components: - type: Transform @@ -87352,35 +87341,35 @@ entities: pos: -1.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12797 components: - type: Transform pos: -2.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12798 components: - type: Transform pos: -2.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12799 components: - type: Transform pos: -2.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12800 components: - type: Transform pos: -2.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12801 components: - type: Transform @@ -87388,7 +87377,7 @@ entities: pos: -3.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12802 components: - type: Transform @@ -87396,7 +87385,7 @@ entities: pos: -4.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12803 components: - type: Transform @@ -87404,42 +87393,42 @@ entities: pos: -4.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12804 components: - type: Transform pos: -6.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12805 components: - type: Transform pos: -6.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12806 components: - type: Transform pos: -6.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12807 components: - type: Transform pos: -6.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12808 components: - type: Transform pos: -6.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12809 components: - type: Transform @@ -87447,7 +87436,7 @@ entities: pos: 2.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12810 components: - type: Transform @@ -87455,35 +87444,35 @@ entities: pos: 3.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12811 components: - type: Transform pos: 4.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12812 components: - type: Transform pos: 4.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12813 components: - type: Transform pos: 4.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12814 components: - type: Transform pos: 4.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12815 components: - type: Transform @@ -87491,7 +87480,7 @@ entities: pos: 7.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12816 components: - type: Transform @@ -87499,7 +87488,7 @@ entities: pos: 1.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12817 components: - type: Transform @@ -87507,7 +87496,7 @@ entities: pos: 2.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12818 components: - type: Transform @@ -87555,7 +87544,7 @@ entities: pos: 7.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12824 components: - type: Transform @@ -87563,7 +87552,7 @@ entities: pos: 7.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12825 components: - type: Transform @@ -87571,7 +87560,7 @@ entities: pos: 7.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12826 components: - type: Transform @@ -87579,7 +87568,7 @@ entities: pos: 7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12827 components: - type: Transform @@ -87587,7 +87576,7 @@ entities: pos: 6.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12828 components: - type: Transform @@ -87595,7 +87584,7 @@ entities: pos: 5.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12829 components: - type: Transform @@ -87603,7 +87592,7 @@ entities: pos: 7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12830 components: - type: Transform @@ -87611,7 +87600,7 @@ entities: pos: 7.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12831 components: - type: Transform @@ -87619,7 +87608,7 @@ entities: pos: 5.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12832 components: - type: Transform @@ -87627,7 +87616,7 @@ entities: pos: 1.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12833 components: - type: Transform @@ -87635,7 +87624,7 @@ entities: pos: 2.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12834 components: - type: Transform @@ -87643,7 +87632,7 @@ entities: pos: 3.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12835 components: - type: Transform @@ -87651,7 +87640,7 @@ entities: pos: 1.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12836 components: - type: Transform @@ -87659,7 +87648,7 @@ entities: pos: 2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12837 components: - type: Transform @@ -87667,7 +87656,7 @@ entities: pos: 3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12838 components: - type: Transform @@ -87675,7 +87664,7 @@ entities: pos: 4.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12839 components: - type: Transform @@ -87707,7 +87696,7 @@ entities: pos: 27.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12843 components: - type: Transform @@ -87715,7 +87704,7 @@ entities: pos: 1.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12844 components: - type: Transform @@ -87723,7 +87712,7 @@ entities: pos: 2.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12845 components: - type: Transform @@ -87731,7 +87720,7 @@ entities: pos: 3.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12846 components: - type: Transform @@ -87739,7 +87728,7 @@ entities: pos: 4.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12847 components: - type: Transform @@ -87747,7 +87736,7 @@ entities: pos: 26.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12848 components: - type: Transform @@ -87755,7 +87744,7 @@ entities: pos: 25.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12849 components: - type: Transform @@ -87763,7 +87752,7 @@ entities: pos: 24.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12850 components: - type: Transform @@ -87771,7 +87760,7 @@ entities: pos: 23.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12851 components: - type: Transform @@ -87779,7 +87768,7 @@ entities: pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12852 components: - type: Transform @@ -87787,7 +87776,7 @@ entities: pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12853 components: - type: Transform @@ -87795,7 +87784,7 @@ entities: pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12854 components: - type: Transform @@ -87803,7 +87792,7 @@ entities: pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12855 components: - type: Transform @@ -87811,7 +87800,7 @@ entities: pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12856 components: - type: Transform @@ -87819,7 +87808,7 @@ entities: pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12857 components: - type: Transform @@ -87827,7 +87816,7 @@ entities: pos: 15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12858 components: - type: Transform @@ -87835,7 +87824,7 @@ entities: pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12859 components: - type: Transform @@ -87843,7 +87832,7 @@ entities: pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12860 components: - type: Transform @@ -87851,7 +87840,7 @@ entities: pos: 12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12861 components: - type: Transform @@ -87859,7 +87848,7 @@ entities: pos: 28.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12862 components: - type: Transform @@ -87867,7 +87856,7 @@ entities: pos: 28.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12863 components: - type: Transform @@ -87875,7 +87864,7 @@ entities: pos: 28.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12864 components: - type: Transform @@ -87883,7 +87872,7 @@ entities: pos: 28.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12865 components: - type: Transform @@ -87891,7 +87880,7 @@ entities: pos: 25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12866 components: - type: Transform @@ -87899,7 +87888,7 @@ entities: pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12867 components: - type: Transform @@ -87907,7 +87896,7 @@ entities: pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12868 components: - type: Transform @@ -87915,7 +87904,7 @@ entities: pos: 24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12869 components: - type: Transform @@ -87923,7 +87912,7 @@ entities: pos: 22.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12870 components: - type: Transform @@ -87931,7 +87920,7 @@ entities: pos: 23.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12871 components: - type: Transform @@ -87939,7 +87928,7 @@ entities: pos: 21.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12872 components: - type: Transform @@ -87947,7 +87936,7 @@ entities: pos: 19.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12873 components: - type: Transform @@ -87955,42 +87944,42 @@ entities: pos: 18.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12874 components: - type: Transform pos: 28.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12875 components: - type: Transform pos: 28.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12876 components: - type: Transform pos: 28.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12877 components: - type: Transform pos: 28.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12878 components: - type: Transform pos: 28.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12879 components: - type: Transform @@ -87998,7 +87987,7 @@ entities: pos: 27.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12880 components: - type: Transform @@ -88006,7 +87995,7 @@ entities: pos: 25.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12881 components: - type: Transform @@ -88014,7 +88003,7 @@ entities: pos: 26.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12882 components: - type: Transform @@ -88022,7 +88011,7 @@ entities: pos: 24.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12883 components: - type: Transform @@ -88030,7 +88019,7 @@ entities: pos: 23.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12884 components: - type: Transform @@ -88038,42 +88027,42 @@ entities: pos: 22.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12886 components: - type: Transform pos: 21.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12887 components: - type: Transform pos: 21.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12888 components: - type: Transform pos: 21.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12889 components: - type: Transform pos: 21.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12890 components: - type: Transform pos: 21.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12891 components: - type: Transform @@ -88081,7 +88070,7 @@ entities: pos: 29.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12892 components: - type: Transform @@ -88089,7 +88078,7 @@ entities: pos: 30.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12893 components: - type: Transform @@ -88097,7 +88086,7 @@ entities: pos: 31.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12894 components: - type: Transform @@ -88105,7 +88094,7 @@ entities: pos: 32.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12895 components: - type: Transform @@ -88113,7 +88102,7 @@ entities: pos: 33.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12896 components: - type: Transform @@ -88121,7 +88110,7 @@ entities: pos: 34.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12897 components: - type: Transform @@ -88129,7 +88118,7 @@ entities: pos: 35.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12898 components: - type: Transform @@ -88137,7 +88126,7 @@ entities: pos: 36.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12899 components: - type: Transform @@ -88145,7 +88134,7 @@ entities: pos: 37.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12900 components: - type: Transform @@ -88153,7 +88142,7 @@ entities: pos: 38.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12901 components: - type: Transform @@ -88161,7 +88150,7 @@ entities: pos: 39.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12902 components: - type: Transform @@ -88169,7 +88158,7 @@ entities: pos: 40.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12903 components: - type: Transform @@ -88177,28 +88166,28 @@ entities: pos: 41.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12904 components: - type: Transform pos: 28.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12905 components: - type: Transform pos: 28.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12906 components: - type: Transform pos: 28.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12907 components: - type: Transform @@ -88206,7 +88195,7 @@ entities: pos: 28.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12908 components: - type: Transform @@ -88214,7 +88203,7 @@ entities: pos: 28.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12909 components: - type: Transform @@ -88222,7 +88211,7 @@ entities: pos: 29.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12910 components: - type: Transform @@ -88230,7 +88219,7 @@ entities: pos: 30.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12911 components: - type: Transform @@ -88238,7 +88227,7 @@ entities: pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12912 components: - type: Transform @@ -88246,7 +88235,7 @@ entities: pos: 34.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12913 components: - type: Transform @@ -88254,7 +88243,7 @@ entities: pos: 33.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12914 components: - type: Transform @@ -88262,7 +88251,7 @@ entities: pos: 28.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12915 components: - type: Transform @@ -88270,7 +88259,7 @@ entities: pos: 28.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12916 components: - type: Transform @@ -88278,7 +88267,7 @@ entities: pos: 28.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12917 components: - type: Transform @@ -88286,7 +88275,7 @@ entities: pos: 28.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12918 components: - type: Transform @@ -88294,7 +88283,7 @@ entities: pos: 28.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12919 components: - type: Transform @@ -88302,7 +88291,7 @@ entities: pos: 31.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12920 components: - type: Transform @@ -88310,7 +88299,7 @@ entities: pos: 29.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12921 components: - type: Transform @@ -88318,7 +88307,7 @@ entities: pos: 30.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12922 components: - type: Transform @@ -88326,7 +88315,7 @@ entities: pos: 32.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12923 components: - type: Transform @@ -88334,7 +88323,7 @@ entities: pos: 33.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12924 components: - type: Transform @@ -88342,21 +88331,21 @@ entities: pos: 34.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12925 components: - type: Transform pos: 28.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12926 components: - type: Transform pos: 28.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12927 components: - type: Transform @@ -88364,7 +88353,7 @@ entities: pos: 27.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12928 components: - type: Transform @@ -88372,7 +88361,7 @@ entities: pos: 26.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12929 components: - type: Transform @@ -88380,7 +88369,7 @@ entities: pos: 25.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12930 components: - type: Transform @@ -88388,7 +88377,7 @@ entities: pos: 24.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12931 components: - type: Transform @@ -88396,7 +88385,7 @@ entities: pos: 23.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12932 components: - type: Transform @@ -88404,7 +88393,7 @@ entities: pos: 22.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12933 components: - type: Transform @@ -88412,7 +88401,7 @@ entities: pos: 20.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12934 components: - type: Transform @@ -88428,7 +88417,7 @@ entities: pos: 19.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12936 components: - type: Transform @@ -88436,7 +88425,7 @@ entities: pos: 19.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12937 components: - type: Transform @@ -88444,7 +88433,7 @@ entities: pos: 19.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12938 components: - type: Transform @@ -88452,7 +88441,7 @@ entities: pos: 19.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12939 components: - type: Transform @@ -88460,7 +88449,7 @@ entities: pos: 19.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12940 components: - type: Transform @@ -88468,7 +88457,7 @@ entities: pos: 19.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12941 components: - type: Transform @@ -88476,7 +88465,7 @@ entities: pos: 19.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12942 components: - type: Transform @@ -88484,7 +88473,7 @@ entities: pos: 19.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12943 components: - type: Transform @@ -88492,7 +88481,7 @@ entities: pos: 18.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12944 components: - type: Transform @@ -88500,7 +88489,7 @@ entities: pos: 17.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12945 components: - type: Transform @@ -88508,7 +88497,7 @@ entities: pos: 16.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12946 components: - type: Transform @@ -88516,70 +88505,70 @@ entities: pos: 15.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12947 components: - type: Transform pos: 19.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12948 components: - type: Transform pos: 19.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12949 components: - type: Transform pos: 19.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12950 components: - type: Transform pos: 19.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12951 components: - type: Transform pos: 19.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12952 components: - type: Transform pos: 19.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12953 components: - type: Transform pos: 28.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12954 components: - type: Transform pos: 28.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12955 components: - type: Transform pos: 28.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12956 components: - type: Transform @@ -88587,7 +88576,7 @@ entities: pos: 30.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12957 components: - type: Transform @@ -88595,7 +88584,7 @@ entities: pos: 31.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12958 components: - type: Transform @@ -88603,7 +88592,7 @@ entities: pos: 29.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12959 components: - type: Transform @@ -88611,7 +88600,7 @@ entities: pos: 27.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12960 components: - type: Transform @@ -88627,7 +88616,7 @@ entities: pos: 28.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12962 components: - type: Transform @@ -88635,7 +88624,7 @@ entities: pos: 28.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12963 components: - type: Transform @@ -88643,7 +88632,7 @@ entities: pos: 27.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12964 components: - type: Transform @@ -88651,28 +88640,28 @@ entities: pos: 26.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12965 components: - type: Transform pos: 14.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12966 components: - type: Transform pos: 14.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12967 components: - type: Transform pos: 14.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12968 components: - type: Transform @@ -88680,7 +88669,7 @@ entities: pos: 35.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12969 components: - type: Transform @@ -88688,7 +88677,7 @@ entities: pos: 37.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12970 components: - type: Transform @@ -88696,7 +88685,7 @@ entities: pos: 38.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12971 components: - type: Transform @@ -88704,7 +88693,7 @@ entities: pos: 39.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12972 components: - type: Transform @@ -88712,7 +88701,7 @@ entities: pos: 41.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12973 components: - type: Transform @@ -88720,7 +88709,7 @@ entities: pos: 42.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12974 components: - type: Transform @@ -88728,49 +88717,49 @@ entities: pos: 43.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12975 components: - type: Transform pos: 44.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12976 components: - type: Transform pos: 44.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12977 components: - type: Transform pos: 44.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12978 components: - type: Transform pos: 44.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12979 components: - type: Transform pos: 44.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12980 components: - type: Transform pos: 44.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12981 components: - type: Transform @@ -88778,14 +88767,14 @@ entities: pos: 44.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12982 components: - type: Transform pos: 44.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12983 components: - type: Transform @@ -88793,7 +88782,7 @@ entities: pos: 44.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12984 components: - type: Transform @@ -88801,7 +88790,7 @@ entities: pos: 44.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12985 components: - type: Transform @@ -88809,7 +88798,7 @@ entities: pos: 44.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12986 components: - type: Transform @@ -88817,7 +88806,7 @@ entities: pos: 43.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12987 components: - type: Transform @@ -88825,7 +88814,7 @@ entities: pos: 41.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12988 components: - type: Transform @@ -88833,7 +88822,7 @@ entities: pos: 42.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12989 components: - type: Transform @@ -88841,7 +88830,7 @@ entities: pos: 41.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12990 components: - type: Transform @@ -88849,21 +88838,21 @@ entities: pos: 40.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12991 components: - type: Transform pos: 44.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12992 components: - type: Transform pos: 44.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12993 components: - type: Transform @@ -88871,7 +88860,7 @@ entities: pos: 36.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12994 components: - type: Transform @@ -88879,7 +88868,7 @@ entities: pos: 36.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12995 components: - type: Transform @@ -88887,14 +88876,14 @@ entities: pos: 36.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12996 components: - type: Transform pos: -24.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12997 components: - type: Transform @@ -88902,7 +88891,7 @@ entities: pos: 37.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12998 components: - type: Transform @@ -88910,7 +88899,7 @@ entities: pos: 42.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 12999 components: - type: Transform @@ -88918,7 +88907,7 @@ entities: pos: 20.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13000 components: - type: Transform @@ -88926,7 +88915,7 @@ entities: pos: 20.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13001 components: - type: Transform @@ -88934,7 +88923,7 @@ entities: pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13002 components: - type: Transform @@ -88942,7 +88931,7 @@ entities: pos: 20.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13003 components: - type: Transform @@ -88950,7 +88939,7 @@ entities: pos: 20.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13004 components: - type: Transform @@ -88958,7 +88947,7 @@ entities: pos: 20.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13005 components: - type: Transform @@ -88966,7 +88955,7 @@ entities: pos: 20.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13006 components: - type: Transform @@ -88974,7 +88963,7 @@ entities: pos: 33.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13007 components: - type: Transform @@ -88982,7 +88971,7 @@ entities: pos: 35.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13008 components: - type: Transform @@ -88997,35 +88986,35 @@ entities: pos: 32.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13010 components: - type: Transform pos: 32.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13011 components: - type: Transform pos: 32.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13012 components: - type: Transform pos: 32.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13013 components: - type: Transform pos: 32.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13014 components: - type: Transform @@ -89033,14 +89022,14 @@ entities: pos: 33.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13015 components: - type: Transform pos: 32.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13016 components: - type: Transform @@ -89048,7 +89037,7 @@ entities: pos: 34.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13017 components: - type: Transform @@ -89056,7 +89045,7 @@ entities: pos: 34.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13018 components: - type: Transform @@ -89064,7 +89053,7 @@ entities: pos: 34.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13019 components: - type: Transform @@ -89072,7 +89061,7 @@ entities: pos: 34.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13020 components: - type: Transform @@ -89080,7 +89069,7 @@ entities: pos: 34.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13021 components: - type: Transform @@ -89088,7 +89077,7 @@ entities: pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13022 components: - type: Transform @@ -89096,7 +89085,7 @@ entities: pos: 32.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13023 components: - type: Transform @@ -89104,7 +89093,7 @@ entities: pos: 31.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13024 components: - type: Transform @@ -89112,7 +89101,7 @@ entities: pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13025 components: - type: Transform @@ -89120,7 +89109,7 @@ entities: pos: 29.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13026 components: - type: Transform @@ -89128,7 +89117,7 @@ entities: pos: 39.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13027 components: - type: Transform @@ -89136,7 +89125,7 @@ entities: pos: 40.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13028 components: - type: Transform @@ -89144,7 +89133,7 @@ entities: pos: 41.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13029 components: - type: Transform @@ -89159,7 +89148,7 @@ entities: pos: 9.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13031 components: - type: Transform @@ -89167,7 +89156,7 @@ entities: pos: 9.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13032 components: - type: Transform @@ -89175,7 +89164,7 @@ entities: pos: 9.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13033 components: - type: Transform @@ -89183,14 +89172,14 @@ entities: pos: 9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13034 components: - type: Transform pos: 10.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13035 components: - type: Transform @@ -89198,7 +89187,7 @@ entities: pos: 9.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13036 components: - type: Transform @@ -89206,7 +89195,7 @@ entities: pos: 9.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13037 components: - type: Transform @@ -89214,7 +89203,7 @@ entities: pos: 9.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13038 components: - type: Transform @@ -89222,7 +89211,7 @@ entities: pos: 9.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13039 components: - type: Transform @@ -89230,7 +89219,7 @@ entities: pos: 9.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13040 components: - type: Transform @@ -89238,7 +89227,7 @@ entities: pos: 9.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13041 components: - type: Transform @@ -89246,7 +89235,7 @@ entities: pos: 9.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13042 components: - type: Transform @@ -89254,7 +89243,7 @@ entities: pos: 9.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13043 components: - type: Transform @@ -89262,7 +89251,7 @@ entities: pos: 9.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13044 components: - type: Transform @@ -89270,7 +89259,7 @@ entities: pos: 9.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13045 components: - type: Transform @@ -89278,7 +89267,7 @@ entities: pos: -12.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13046 components: - type: Transform @@ -89286,7 +89275,7 @@ entities: pos: -12.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13047 components: - type: Transform @@ -89294,7 +89283,7 @@ entities: pos: -12.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13048 components: - type: Transform @@ -89302,7 +89291,7 @@ entities: pos: -28.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13049 components: - type: Transform @@ -89310,7 +89299,7 @@ entities: pos: -27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13050 components: - type: Transform @@ -89318,7 +89307,7 @@ entities: pos: -26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13051 components: - type: Transform @@ -89326,7 +89315,7 @@ entities: pos: -25.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13052 components: - type: Transform @@ -89341,28 +89330,28 @@ entities: pos: 6.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13054 components: - type: Transform pos: 6.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13055 components: - type: Transform pos: 6.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13056 components: - type: Transform pos: 6.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13057 components: - type: Transform @@ -89370,7 +89359,7 @@ entities: pos: 19.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13058 components: - type: Transform @@ -89378,7 +89367,7 @@ entities: pos: 19.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13059 components: - type: Transform @@ -89386,7 +89375,7 @@ entities: pos: 19.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13060 components: - type: Transform @@ -89394,7 +89383,7 @@ entities: pos: 19.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13061 components: - type: Transform @@ -89402,7 +89391,7 @@ entities: pos: 19.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13062 components: - type: Transform @@ -89410,7 +89399,7 @@ entities: pos: 26.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13063 components: - type: Transform @@ -89418,7 +89407,7 @@ entities: pos: 26.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13064 components: - type: Transform @@ -89426,7 +89415,7 @@ entities: pos: 26.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13065 components: - type: Transform @@ -89434,7 +89423,7 @@ entities: pos: 26.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13066 components: - type: Transform @@ -89442,7 +89431,7 @@ entities: pos: 26.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13067 components: - type: Transform @@ -89450,7 +89439,7 @@ entities: pos: 26.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13068 components: - type: Transform @@ -89458,42 +89447,42 @@ entities: pos: 38.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13069 components: - type: Transform pos: 43.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13070 components: - type: Transform pos: 43.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13071 components: - type: Transform pos: 43.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13072 components: - type: Transform pos: 43.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13073 components: - type: Transform pos: 43.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13074 components: - type: Transform @@ -89501,7 +89490,7 @@ entities: pos: 39.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13075 components: - type: Transform @@ -89509,7 +89498,7 @@ entities: pos: 40.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13076 components: - type: Transform @@ -89517,7 +89506,7 @@ entities: pos: 42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13077 components: - type: Transform @@ -89525,7 +89514,7 @@ entities: pos: 43.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13078 components: - type: Transform @@ -89533,7 +89522,7 @@ entities: pos: 42.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13079 components: - type: Transform @@ -89541,7 +89530,7 @@ entities: pos: 41.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13080 components: - type: Transform @@ -89549,7 +89538,7 @@ entities: pos: 43.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13081 components: - type: Transform @@ -89557,7 +89546,7 @@ entities: pos: 44.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13082 components: - type: Transform @@ -89565,7 +89554,7 @@ entities: pos: 19.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13083 components: - type: Transform @@ -89573,7 +89562,7 @@ entities: pos: 19.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13084 components: - type: Transform @@ -89581,7 +89570,7 @@ entities: pos: 19.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13085 components: - type: Transform @@ -89589,7 +89578,7 @@ entities: pos: 19.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13086 components: - type: Transform @@ -89597,7 +89586,7 @@ entities: pos: 19.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13087 components: - type: Transform @@ -89638,7 +89627,7 @@ entities: pos: 6.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13093 components: - type: Transform @@ -89753,7 +89742,7 @@ entities: pos: 10.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13108 components: - type: Transform @@ -89761,7 +89750,7 @@ entities: pos: 11.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13109 components: - type: Transform @@ -89769,7 +89758,7 @@ entities: pos: 25.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13110 components: - type: Transform @@ -89777,14 +89766,14 @@ entities: pos: 7.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13111 components: - type: Transform pos: 30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13112 components: - type: Transform @@ -89807,7 +89796,7 @@ entities: pos: 30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13115 components: - type: Transform @@ -89823,7 +89812,7 @@ entities: pos: 30.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13117 components: - type: Transform @@ -89831,7 +89820,7 @@ entities: pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13118 components: - type: Transform @@ -89839,14 +89828,14 @@ entities: pos: 38.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13119 components: - type: Transform pos: 42.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13120 components: - type: Transform @@ -89854,14 +89843,14 @@ entities: pos: 34.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13121 components: - type: Transform pos: 42.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13122 components: - type: Transform @@ -89869,14 +89858,14 @@ entities: pos: 36.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13123 components: - type: Transform pos: 42.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13124 components: - type: Transform @@ -89884,7 +89873,7 @@ entities: pos: 34.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13125 components: - type: Transform @@ -89892,7 +89881,7 @@ entities: pos: 41.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13126 components: - type: Transform @@ -89900,14 +89889,14 @@ entities: pos: 33.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13127 components: - type: Transform pos: 42.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13128 components: - type: Transform @@ -90531,7 +90520,7 @@ entities: pos: -0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13210 components: - type: Transform @@ -90539,7 +90528,7 @@ entities: pos: -1.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13211 components: - type: Transform @@ -90547,7 +90536,7 @@ entities: pos: -2.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13212 components: - type: Transform @@ -90555,7 +90544,7 @@ entities: pos: -3.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13213 components: - type: Transform @@ -91433,7 +91422,7 @@ entities: pos: 34.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13325 components: - type: Transform @@ -91601,7 +91590,7 @@ entities: pos: 28.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13346 components: - type: Transform @@ -91609,7 +91598,7 @@ entities: pos: 28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13347 components: - type: Transform @@ -91617,7 +91606,7 @@ entities: pos: 28.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13348 components: - type: Transform @@ -91645,7 +91634,7 @@ entities: pos: 28.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13352 components: - type: Transform @@ -92055,7 +92044,7 @@ entities: pos: 42.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13404 components: - type: Transform @@ -92883,7 +92872,7 @@ entities: pos: 14.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13510 components: - type: Transform @@ -93779,7 +93768,7 @@ entities: pos: -37.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13625 components: - type: Transform @@ -93787,7 +93776,7 @@ entities: pos: -37.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13626 components: - type: Transform @@ -93952,7 +93941,7 @@ entities: pos: -33.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13649 components: - type: Transform @@ -93960,7 +93949,7 @@ entities: pos: -32.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13650 components: - type: Transform @@ -93968,7 +93957,7 @@ entities: pos: -31.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13651 components: - type: Transform @@ -93976,7 +93965,7 @@ entities: pos: -30.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13652 components: - type: Transform @@ -94016,7 +94005,7 @@ entities: pos: -30.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13657 components: - type: Transform @@ -94024,7 +94013,7 @@ entities: pos: -30.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13658 components: - type: Transform @@ -94032,7 +94021,7 @@ entities: pos: -30.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13659 components: - type: Transform @@ -94135,7 +94124,7 @@ entities: pos: -30.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13673 components: - type: Transform @@ -94143,28 +94132,28 @@ entities: pos: -30.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13674 components: - type: Transform pos: -22.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13675 components: - type: Transform pos: -22.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13676 components: - type: Transform pos: -22.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13677 components: - type: Transform @@ -94200,7 +94189,7 @@ entities: pos: -33.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13682 components: - type: Transform @@ -94208,7 +94197,7 @@ entities: pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13683 components: - type: Transform @@ -94216,7 +94205,7 @@ entities: pos: -31.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13684 components: - type: Transform @@ -94224,7 +94213,7 @@ entities: pos: -30.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13685 components: - type: Transform @@ -94264,7 +94253,7 @@ entities: pos: -15.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13690 components: - type: Transform @@ -94272,7 +94261,7 @@ entities: pos: -15.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13691 components: - type: Transform @@ -94280,7 +94269,7 @@ entities: pos: -15.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13692 components: - type: Transform @@ -94325,21 +94314,21 @@ entities: pos: -15.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13698 components: - type: Transform pos: -15.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13699 components: - type: Transform pos: -15.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13700 components: - type: Transform @@ -94773,7 +94762,7 @@ entities: pos: -0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13755 components: - type: Transform @@ -94781,7 +94770,7 @@ entities: pos: -1.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13756 components: - type: Transform @@ -94789,28 +94778,28 @@ entities: pos: -2.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13757 components: - type: Transform pos: -4.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13758 components: - type: Transform pos: -4.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13759 components: - type: Transform pos: -4.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13760 components: - type: Transform @@ -94842,7 +94831,7 @@ entities: pos: -33.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13764 components: - type: Transform @@ -94850,7 +94839,7 @@ entities: pos: -34.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13765 components: - type: Transform @@ -94858,7 +94847,7 @@ entities: pos: -35.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13766 components: - type: Transform @@ -94866,7 +94855,7 @@ entities: pos: -35.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13767 components: - type: Transform @@ -94874,7 +94863,7 @@ entities: pos: -35.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13768 components: - type: Transform @@ -94946,7 +94935,7 @@ entities: pos: -34.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13777 components: - type: Transform @@ -94954,7 +94943,7 @@ entities: pos: -35.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13778 components: - type: Transform @@ -94962,7 +94951,7 @@ entities: pos: -36.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13779 components: - type: Transform @@ -94970,7 +94959,7 @@ entities: pos: -37.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13780 components: - type: Transform @@ -95031,7 +95020,7 @@ entities: pos: -31.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13788 components: - type: Transform @@ -95039,7 +95028,7 @@ entities: pos: -30.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13789 components: - type: Transform @@ -95186,7 +95175,7 @@ entities: pos: -30.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13808 components: - type: Transform @@ -95194,7 +95183,7 @@ entities: pos: -29.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13809 components: - type: Transform @@ -95202,7 +95191,7 @@ entities: pos: -28.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13810 components: - type: Transform @@ -95539,7 +95528,7 @@ entities: pos: -10.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13855 components: - type: Transform @@ -95547,7 +95536,7 @@ entities: pos: -9.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13856 components: - type: Transform @@ -95555,7 +95544,7 @@ entities: pos: -8.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13857 components: - type: Transform @@ -95563,7 +95552,7 @@ entities: pos: -7.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13858 components: - type: Transform @@ -95571,7 +95560,7 @@ entities: pos: -6.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13859 components: - type: Transform @@ -95579,7 +95568,7 @@ entities: pos: -5.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13860 components: - type: Transform @@ -95672,14 +95661,14 @@ entities: pos: -11.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13872 components: - type: Transform pos: -11.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13873 components: - type: Transform @@ -95687,7 +95676,7 @@ entities: pos: -11.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13874 components: - type: Transform @@ -95695,7 +95684,7 @@ entities: pos: -13.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13875 components: - type: Transform @@ -95703,7 +95692,7 @@ entities: pos: -14.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13876 components: - type: Transform @@ -95711,7 +95700,7 @@ entities: pos: -15.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13877 components: - type: Transform @@ -95898,7 +95887,7 @@ entities: pos: -11.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13902 components: - type: Transform @@ -95906,7 +95895,7 @@ entities: pos: -11.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13903 components: - type: Transform @@ -95914,28 +95903,28 @@ entities: pos: -11.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13904 components: - type: Transform pos: -8.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13905 components: - type: Transform pos: -8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13906 components: - type: Transform pos: -8.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13907 components: - type: Transform @@ -95943,7 +95932,7 @@ entities: pos: -8.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13908 components: - type: Transform @@ -96054,7 +96043,7 @@ entities: pos: -2.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13923 components: - type: Transform @@ -96062,7 +96051,7 @@ entities: pos: -2.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13924 components: - type: Transform @@ -96070,7 +96059,7 @@ entities: pos: -2.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13925 components: - type: Transform @@ -96078,7 +96067,7 @@ entities: pos: -16.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13926 components: - type: Transform @@ -96131,7 +96120,7 @@ entities: pos: -15.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13933 components: - type: Transform @@ -96139,7 +96128,7 @@ entities: pos: -14.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13934 components: - type: Transform @@ -96147,7 +96136,7 @@ entities: pos: -13.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13935 components: - type: Transform @@ -96155,7 +96144,7 @@ entities: pos: -12.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13936 components: - type: Transform @@ -96202,7 +96191,7 @@ entities: pos: -19.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13942 components: - type: Transform @@ -96226,7 +96215,7 @@ entities: pos: -17.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13945 components: - type: Transform @@ -96234,7 +96223,7 @@ entities: pos: -18.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13946 components: - type: Transform @@ -96649,7 +96638,7 @@ entities: pos: -41.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 13999 components: - type: Transform @@ -96657,7 +96646,7 @@ entities: pos: -40.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14000 components: - type: Transform @@ -96665,7 +96654,7 @@ entities: pos: -39.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14001 components: - type: Transform @@ -96673,7 +96662,7 @@ entities: pos: -38.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14002 components: - type: Transform @@ -96681,7 +96670,7 @@ entities: pos: -37.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14003 components: - type: Transform @@ -96689,7 +96678,7 @@ entities: pos: -37.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14004 components: - type: Transform @@ -96697,7 +96686,7 @@ entities: pos: -36.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14005 components: - type: Transform @@ -96705,7 +96694,7 @@ entities: pos: -35.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14006 components: - type: Transform @@ -96713,7 +96702,7 @@ entities: pos: -34.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14007 components: - type: Transform @@ -96721,7 +96710,7 @@ entities: pos: -36.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14008 components: - type: Transform @@ -96729,7 +96718,7 @@ entities: pos: -35.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14009 components: - type: Transform @@ -96737,7 +96726,7 @@ entities: pos: -34.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14010 components: - type: Transform @@ -96745,7 +96734,7 @@ entities: pos: -40.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14011 components: - type: Transform @@ -96753,7 +96742,7 @@ entities: pos: -39.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14012 components: - type: Transform @@ -96761,7 +96750,7 @@ entities: pos: -38.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14013 components: - type: Transform @@ -96769,7 +96758,7 @@ entities: pos: -37.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14014 components: - type: Transform @@ -96777,7 +96766,7 @@ entities: pos: -36.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14015 components: - type: Transform @@ -96785,7 +96774,7 @@ entities: pos: -35.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14016 components: - type: Transform @@ -96793,7 +96782,7 @@ entities: pos: -34.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14017 components: - type: Transform @@ -96833,7 +96822,7 @@ entities: pos: -36.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14022 components: - type: Transform @@ -96841,7 +96830,7 @@ entities: pos: -37.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14023 components: - type: Transform @@ -96849,7 +96838,7 @@ entities: pos: -38.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14024 components: - type: Transform @@ -96857,7 +96846,7 @@ entities: pos: -39.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14025 components: - type: Transform @@ -96865,7 +96854,7 @@ entities: pos: -40.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14026 components: - type: Transform @@ -96935,14 +96924,14 @@ entities: pos: -35.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14035 components: - type: Transform pos: -35.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14036 components: - type: Transform @@ -96950,7 +96939,7 @@ entities: pos: -36.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14037 components: - type: Transform @@ -96958,7 +96947,7 @@ entities: pos: -37.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14038 components: - type: Transform @@ -96966,21 +96955,21 @@ entities: pos: -38.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14039 components: - type: Transform pos: -23.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14040 components: - type: Transform pos: -23.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14041 components: - type: Transform @@ -97159,7 +97148,7 @@ entities: pos: 1.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14064 components: - type: Transform @@ -97167,7 +97156,7 @@ entities: pos: 2.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14065 components: - type: Transform @@ -97175,7 +97164,7 @@ entities: pos: 3.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14066 components: - type: Transform @@ -97183,7 +97172,7 @@ entities: pos: 4.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14067 components: - type: Transform @@ -97228,7 +97217,7 @@ entities: pos: 3.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14073 components: - type: Transform @@ -97236,7 +97225,7 @@ entities: pos: 4.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14074 components: - type: Transform @@ -97244,7 +97233,7 @@ entities: pos: 6.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14075 components: - type: Transform @@ -97604,7 +97593,7 @@ entities: pos: 5.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14123 components: - type: Transform @@ -97612,7 +97601,7 @@ entities: pos: 6.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14124 components: - type: Transform @@ -97620,7 +97609,7 @@ entities: pos: 6.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14125 components: - type: Transform @@ -97628,7 +97617,7 @@ entities: pos: 6.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14126 components: - type: Transform @@ -97636,7 +97625,7 @@ entities: pos: 6.5,63.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14127 components: - type: Transform @@ -97644,7 +97633,7 @@ entities: pos: 6.5,64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14128 components: - type: Transform @@ -97652,7 +97641,7 @@ entities: pos: 6.5,65.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14129 components: - type: Transform @@ -97660,7 +97649,7 @@ entities: pos: 6.5,66.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14130 components: - type: Transform @@ -97668,7 +97657,7 @@ entities: pos: 6.5,67.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14131 components: - type: Transform @@ -97676,7 +97665,7 @@ entities: pos: 6.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14132 components: - type: Transform @@ -97684,7 +97673,7 @@ entities: pos: 6.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14133 components: - type: Transform @@ -97804,7 +97793,7 @@ entities: pos: 7.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14148 components: - type: Transform @@ -97812,7 +97801,7 @@ entities: pos: 5.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14149 components: - type: Transform @@ -97820,7 +97809,7 @@ entities: pos: 4.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14150 components: - type: Transform @@ -97828,7 +97817,7 @@ entities: pos: 3.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14151 components: - type: Transform @@ -97868,7 +97857,7 @@ entities: pos: 1.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14156 components: - type: Transform @@ -97876,7 +97865,7 @@ entities: pos: 0.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14157 components: - type: Transform @@ -97884,7 +97873,7 @@ entities: pos: -0.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14158 components: - type: Transform @@ -97892,7 +97881,7 @@ entities: pos: -1.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14159 components: - type: Transform @@ -97924,7 +97913,7 @@ entities: pos: -4.5,73.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14163 components: - type: Transform @@ -97932,7 +97921,7 @@ entities: pos: -4.5,74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14164 components: - type: Transform @@ -97980,7 +97969,7 @@ entities: pos: 6.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14170 components: - type: Transform @@ -97988,7 +97977,7 @@ entities: pos: 7.5,74.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14171 components: - type: Transform @@ -98009,14 +97998,14 @@ entities: pos: 7.5,75.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14174 components: - type: Transform pos: 7.5,76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14175 components: - type: Transform @@ -98064,7 +98053,7 @@ entities: pos: 7.5,78.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14181 components: - type: Transform @@ -98072,7 +98061,7 @@ entities: pos: 7.5,79.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14182 components: - type: Transform @@ -98080,7 +98069,7 @@ entities: pos: 7.5,80.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14183 components: - type: Transform @@ -98088,7 +98077,7 @@ entities: pos: 7.5,81.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14184 components: - type: Transform @@ -98096,7 +98085,7 @@ entities: pos: 7.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14185 components: - type: Transform @@ -98104,7 +98093,7 @@ entities: pos: 7.5,84.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14186 components: - type: Transform @@ -98112,7 +98101,7 @@ entities: pos: 6.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14187 components: - type: Transform @@ -98160,7 +98149,7 @@ entities: pos: 3.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14193 components: - type: Transform @@ -98168,7 +98157,7 @@ entities: pos: 2.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14194 components: - type: Transform @@ -98176,7 +98165,7 @@ entities: pos: 4.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14195 components: - type: Transform @@ -98232,7 +98221,7 @@ entities: pos: 0.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14202 components: - type: Transform @@ -98240,7 +98229,7 @@ entities: pos: -0.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14203 components: - type: Transform @@ -98248,7 +98237,7 @@ entities: pos: -1.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14204 components: - type: Transform @@ -98256,14 +98245,14 @@ entities: pos: -3.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14205 components: - type: Transform pos: -4.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14206 components: - type: Transform @@ -98278,7 +98267,7 @@ entities: pos: -4.5,75.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14208 components: - type: Transform @@ -98330,7 +98319,7 @@ entities: pos: 39.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14215 components: - type: Transform @@ -98338,7 +98327,7 @@ entities: pos: 40.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14216 components: - type: Transform @@ -98346,7 +98335,7 @@ entities: pos: 27.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14217 components: - type: Transform @@ -98354,7 +98343,7 @@ entities: pos: 26.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14218 components: - type: Transform @@ -98362,7 +98351,7 @@ entities: pos: 25.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14219 components: - type: Transform @@ -98370,7 +98359,7 @@ entities: pos: 24.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14220 components: - type: Transform @@ -98378,7 +98367,7 @@ entities: pos: 23.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14221 components: - type: Transform @@ -98386,7 +98375,7 @@ entities: pos: 22.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14222 components: - type: Transform @@ -98394,7 +98383,7 @@ entities: pos: 21.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14223 components: - type: Transform @@ -98402,7 +98391,7 @@ entities: pos: 20.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14224 components: - type: Transform @@ -98410,7 +98399,7 @@ entities: pos: 19.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14225 components: - type: Transform @@ -98534,14 +98523,14 @@ entities: pos: 18.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14241 components: - type: Transform pos: 18.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14242 components: - type: Transform @@ -98569,21 +98558,21 @@ entities: pos: -12.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14246 components: - type: Transform pos: -12.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14247 components: - type: Transform pos: -12.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14248 components: - type: Transform @@ -98592,6 +98581,20 @@ entities: parent: 2 - proto: GasPipeTJunction entities: + - uid: 12221 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 12223 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14249 components: - type: Transform @@ -98603,7 +98606,7 @@ entities: pos: 32.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14251 components: - type: Transform @@ -98644,7 +98647,7 @@ entities: pos: -12.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14258 components: - type: Transform @@ -98652,7 +98655,7 @@ entities: pos: 27.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14259 components: - type: Transform @@ -98660,7 +98663,7 @@ entities: pos: 38.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14260 components: - type: Transform @@ -98676,7 +98679,7 @@ entities: pos: -6.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14262 components: - type: Transform @@ -98860,7 +98863,7 @@ entities: pos: 26.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14287 components: - type: Transform @@ -98876,7 +98879,7 @@ entities: pos: 31.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14289 components: - type: Transform @@ -98892,7 +98895,7 @@ entities: pos: 26.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14291 components: - type: Transform @@ -98907,14 +98910,14 @@ entities: pos: 22.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#00FFFFFF' + color: '#0000FFFF' - uid: 14293 components: - type: Transform pos: 20.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 14294 components: - type: Transform @@ -98922,7 +98925,7 @@ entities: pos: 22.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 14295 components: - type: Transform @@ -98953,7 +98956,7 @@ entities: pos: 11.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14299 components: - type: Transform @@ -98961,7 +98964,7 @@ entities: pos: 0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14300 components: - type: Transform @@ -98969,7 +98972,7 @@ entities: pos: 27.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14301 components: - type: Transform @@ -98985,7 +98988,7 @@ entities: pos: 27.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14303 components: - type: Transform @@ -98999,7 +99002,7 @@ entities: pos: -6.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14305 components: - type: Transform @@ -99007,7 +99010,7 @@ entities: pos: -10.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14306 components: - type: Transform @@ -99015,7 +99018,7 @@ entities: pos: -15.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14307 components: - type: Transform @@ -99023,7 +99026,7 @@ entities: pos: -23.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14308 components: - type: Transform @@ -99031,14 +99034,14 @@ entities: pos: -30.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14309 components: - type: Transform pos: -32.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14310 components: - type: Transform @@ -99046,7 +99049,7 @@ entities: pos: -32.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14311 components: - type: Transform @@ -99054,7 +99057,7 @@ entities: pos: -32.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14312 components: - type: Transform @@ -99062,7 +99065,7 @@ entities: pos: -32.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14313 components: - type: Transform @@ -99070,7 +99073,7 @@ entities: pos: -41.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14314 components: - type: Transform @@ -99078,7 +99081,7 @@ entities: pos: -32.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14315 components: - type: Transform @@ -99086,7 +99089,7 @@ entities: pos: -12.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14316 components: - type: Transform @@ -99094,7 +99097,7 @@ entities: pos: 0.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14317 components: - type: Transform @@ -99102,14 +99105,14 @@ entities: pos: 0.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14318 components: - type: Transform pos: 6.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14319 components: - type: Transform @@ -99117,14 +99120,14 @@ entities: pos: 22.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14320 components: - type: Transform pos: 38.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14321 components: - type: Transform @@ -99132,7 +99135,7 @@ entities: pos: 8.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14322 components: - type: Transform @@ -99140,7 +99143,7 @@ entities: pos: 30.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14323 components: - type: Transform @@ -99148,7 +99151,7 @@ entities: pos: 38.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14324 components: - type: Transform @@ -99156,7 +99159,7 @@ entities: pos: 40.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14325 components: - type: Transform @@ -99164,7 +99167,7 @@ entities: pos: 0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14326 components: - type: Transform @@ -99180,7 +99183,7 @@ entities: pos: 5.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14328 components: - type: Transform @@ -99188,7 +99191,7 @@ entities: pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14329 components: - type: Transform @@ -99196,14 +99199,14 @@ entities: pos: 6.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14330 components: - type: Transform pos: 3.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14331 components: - type: Transform @@ -99219,7 +99222,7 @@ entities: pos: -5.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14333 components: - type: Transform @@ -99227,7 +99230,7 @@ entities: pos: 6.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14334 components: - type: Transform @@ -99235,7 +99238,7 @@ entities: pos: 14.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14335 components: - type: Transform @@ -99243,7 +99246,7 @@ entities: pos: -30.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14336 components: - type: Transform @@ -99267,7 +99270,7 @@ entities: pos: -34.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14339 components: - type: Transform @@ -99275,7 +99278,7 @@ entities: pos: -37.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14340 components: - type: Transform @@ -99283,14 +99286,14 @@ entities: pos: -37.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14341 components: - type: Transform pos: -37.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14342 components: - type: Transform @@ -99298,7 +99301,7 @@ entities: pos: -34.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14343 components: - type: Transform @@ -99306,14 +99309,14 @@ entities: pos: -34.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14344 components: - type: Transform pos: -30.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14345 components: - type: Transform @@ -99321,7 +99324,7 @@ entities: pos: -22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14346 components: - type: Transform @@ -99329,7 +99332,7 @@ entities: pos: -9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14347 components: - type: Transform @@ -99361,7 +99364,7 @@ entities: pos: 10.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14351 components: - type: Transform @@ -99369,7 +99372,7 @@ entities: pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14352 components: - type: Transform @@ -99377,7 +99380,7 @@ entities: pos: 0.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14353 components: - type: Transform @@ -99385,7 +99388,7 @@ entities: pos: 0.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14354 components: - type: Transform @@ -99393,7 +99396,7 @@ entities: pos: 0.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14355 components: - type: Transform @@ -99401,7 +99404,7 @@ entities: pos: -10.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14356 components: - type: Transform @@ -99409,14 +99412,14 @@ entities: pos: -16.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14357 components: - type: Transform pos: -12.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14358 components: - type: Transform @@ -99424,14 +99427,14 @@ entities: pos: -29.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14359 components: - type: Transform pos: -8.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14360 components: - type: Transform @@ -99439,14 +99442,14 @@ entities: pos: -9.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14361 components: - type: Transform pos: -11.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14362 components: - type: Transform @@ -99454,7 +99457,7 @@ entities: pos: -2.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14363 components: - type: Transform @@ -99462,21 +99465,21 @@ entities: pos: -16.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14364 components: - type: Transform pos: -23.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14365 components: - type: Transform pos: -19.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14366 components: - type: Transform @@ -99484,7 +99487,7 @@ entities: pos: -24.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14367 components: - type: Transform @@ -99492,14 +99495,14 @@ entities: pos: -30.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14368 components: - type: Transform pos: -35.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14369 components: - type: Transform @@ -99507,7 +99510,7 @@ entities: pos: -35.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14370 components: - type: Transform @@ -99515,7 +99518,7 @@ entities: pos: -37.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14371 components: - type: Transform @@ -99523,7 +99526,7 @@ entities: pos: -41.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14372 components: - type: Transform @@ -99531,7 +99534,7 @@ entities: pos: -41.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14373 components: - type: Transform @@ -99555,7 +99558,7 @@ entities: pos: -24.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14376 components: - type: Transform @@ -99563,7 +99566,7 @@ entities: pos: -24.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14377 components: - type: Transform @@ -99571,7 +99574,7 @@ entities: pos: 0.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14378 components: - type: Transform @@ -99579,7 +99582,7 @@ entities: pos: -2.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14379 components: - type: Transform @@ -99587,7 +99590,7 @@ entities: pos: 0.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14380 components: - type: Transform @@ -99595,7 +99598,7 @@ entities: pos: 0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14381 components: - type: Transform @@ -99603,7 +99606,7 @@ entities: pos: 0.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14382 components: - type: Transform @@ -99611,7 +99614,7 @@ entities: pos: 0.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14383 components: - type: Transform @@ -99619,14 +99622,14 @@ entities: pos: -5.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14384 components: - type: Transform pos: 4.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14385 components: - type: Transform @@ -99634,7 +99637,7 @@ entities: pos: 4.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14386 components: - type: Transform @@ -99650,7 +99653,7 @@ entities: pos: 4.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14388 components: - type: Transform @@ -99666,7 +99669,7 @@ entities: pos: 22.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14390 components: - type: Transform @@ -99674,7 +99677,7 @@ entities: pos: 20.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14391 components: - type: Transform @@ -99682,7 +99685,7 @@ entities: pos: 28.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14392 components: - type: Transform @@ -99690,7 +99693,7 @@ entities: pos: 28.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14393 components: - type: Transform @@ -99698,7 +99701,7 @@ entities: pos: 22.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14394 components: - type: Transform @@ -99706,7 +99709,7 @@ entities: pos: 21.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14395 components: - type: Transform @@ -99714,7 +99717,7 @@ entities: pos: 28.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14396 components: - type: Transform @@ -99722,7 +99725,7 @@ entities: pos: 28.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14397 components: - type: Transform @@ -99730,7 +99733,7 @@ entities: pos: 28.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14398 components: - type: Transform @@ -99738,7 +99741,7 @@ entities: pos: 28.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14399 components: - type: Transform @@ -99746,7 +99749,7 @@ entities: pos: 21.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14400 components: - type: Transform @@ -99754,7 +99757,7 @@ entities: pos: 19.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14401 components: - type: Transform @@ -99762,7 +99765,7 @@ entities: pos: 28.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14402 components: - type: Transform @@ -99770,7 +99773,7 @@ entities: pos: 28.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14403 components: - type: Transform @@ -99778,7 +99781,7 @@ entities: pos: 14.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14404 components: - type: Transform @@ -99786,21 +99789,21 @@ entities: pos: 14.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14405 components: - type: Transform pos: 36.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14406 components: - type: Transform pos: 40.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14407 components: - type: Transform @@ -99808,7 +99811,7 @@ entities: pos: 44.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14408 components: - type: Transform @@ -99816,7 +99819,7 @@ entities: pos: 44.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14409 components: - type: Transform @@ -99824,7 +99827,7 @@ entities: pos: 42.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14410 components: - type: Transform @@ -99832,7 +99835,7 @@ entities: pos: 42.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14411 components: - type: Transform @@ -99840,7 +99843,7 @@ entities: pos: -12.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14412 components: - type: Transform @@ -99848,7 +99851,7 @@ entities: pos: 33.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14413 components: - type: Transform @@ -99863,7 +99866,7 @@ entities: pos: 26.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14415 components: - type: Transform @@ -99886,7 +99889,7 @@ entities: pos: 30.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14418 components: - type: Transform @@ -99910,7 +99913,7 @@ entities: pos: 0.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14421 components: - type: Transform @@ -99942,7 +99945,7 @@ entities: pos: 0.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14425 components: - type: Transform @@ -100380,7 +100383,7 @@ entities: pos: -34.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14482 components: - type: Transform @@ -100388,7 +100391,7 @@ entities: pos: -34.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14483 components: - type: Transform @@ -100403,7 +100406,7 @@ entities: pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14485 components: - type: Transform @@ -100441,7 +100444,7 @@ entities: pos: -15.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14490 components: - type: Transform @@ -100518,7 +100521,7 @@ entities: pos: -3.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14500 components: - type: Transform @@ -100542,7 +100545,7 @@ entities: pos: -33.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14503 components: - type: Transform @@ -100643,7 +100646,7 @@ entities: pos: -11.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14516 components: - type: Transform @@ -100658,7 +100661,7 @@ entities: pos: -12.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14518 components: - type: Transform @@ -100778,7 +100781,7 @@ entities: pos: -37.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14534 components: - type: Transform @@ -100839,7 +100842,7 @@ entities: pos: 5.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14542 components: - type: Transform @@ -100901,7 +100904,7 @@ entities: pos: 6.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14550 components: - type: Transform @@ -100909,21 +100912,21 @@ entities: pos: 6.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14551 components: - type: Transform pos: 2.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14552 components: - type: Transform pos: -2.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14553 components: - type: Transform @@ -100947,7 +100950,7 @@ entities: pos: 7.5,77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14556 components: - type: Transform @@ -100955,7 +100958,7 @@ entities: pos: 7.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14557 components: - type: Transform @@ -100970,7 +100973,7 @@ entities: pos: 1.5,83.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14559 components: - type: Transform @@ -100986,7 +100989,7 @@ entities: pos: 14.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasPort entities: - uid: 14561 @@ -101194,6 +101197,8 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-58.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 14593 components: - type: Transform @@ -101211,6 +101216,22 @@ entities: - type: Transform pos: 7.5,-31.5 parent: 2 + - uid: 22671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPressurePump entities: - uid: 14596 @@ -101245,6 +101266,8 @@ entities: parent: 2 - uid: 14601 components: + - type: MetaData + name: waste pump - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-51.5 @@ -101307,27 +101330,31 @@ entities: parent: 2 - uid: 14611 components: + - type: MetaData + name: TEG burn pump - type: Transform rot: 3.141592653589793 rad pos: 26.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14612 components: - type: Transform pos: 26.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14613 components: + - type: MetaData + name: supermatter pump - type: Transform rot: 3.141592653589793 rad pos: 28.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14614 components: - type: Transform @@ -101351,7 +101378,7 @@ entities: pos: 28.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - uid: 14617 components: - type: Transform @@ -101409,7 +101436,7 @@ entities: pos: 23.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 14625 components: - type: Transform @@ -101417,7 +101444,7 @@ entities: pos: 23.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#0000FFFF' - uid: 14626 components: - type: Transform @@ -101431,15 +101458,17 @@ entities: pos: 32.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#9003FCFF' + color: '#FF00BFFF' - uid: 14628 components: + - type: MetaData + name: distro pump - type: Transform rot: 1.5707963267948966 rad pos: 24.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasThermoMachineFreezer entities: - uid: 14629 @@ -101487,7 +101516,7 @@ entities: pos: 25.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - proto: GasThermoMachineFreezerEnabled entities: - uid: 14636 @@ -101517,7 +101546,7 @@ entities: pos: 32.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#8800FFFF' + color: '#FF00BFFF' - proto: GasThermoMachineHeaterEnabled entities: - uid: 14640 @@ -101610,7 +101639,7 @@ entities: pos: 42.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14652 components: - type: Transform @@ -101618,7 +101647,7 @@ entities: pos: -6.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14653 components: - type: Transform @@ -101626,7 +101655,7 @@ entities: pos: 7.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14654 components: - type: Transform @@ -101640,7 +101669,7 @@ entities: pos: 35.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14659 components: - type: Transform @@ -101648,7 +101677,7 @@ entities: pos: 26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14660 components: - type: Transform @@ -101656,7 +101685,7 @@ entities: pos: 26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14661 components: - type: Transform @@ -101664,14 +101693,14 @@ entities: pos: -0.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14662 components: - type: Transform pos: 11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14663 components: - type: Transform @@ -101679,14 +101708,14 @@ entities: pos: -5.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14664 components: - type: Transform pos: -10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14665 components: - type: Transform @@ -101694,7 +101723,7 @@ entities: pos: -16.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14666 components: - type: Transform @@ -101702,7 +101731,7 @@ entities: pos: -16.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14667 components: - type: Transform @@ -101710,7 +101739,7 @@ entities: pos: -16.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14668 components: - type: Transform @@ -101718,7 +101747,7 @@ entities: pos: -16.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14669 components: - type: Transform @@ -101726,14 +101755,14 @@ entities: pos: -16.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14670 components: - type: Transform pos: 8.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14671 components: - type: Transform @@ -101749,7 +101778,7 @@ entities: pos: -11.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14673 components: - type: Transform @@ -101757,21 +101786,21 @@ entities: pos: 29.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14674 components: - type: Transform pos: 30.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14675 components: - type: Transform pos: 40.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14676 components: - type: Transform @@ -101779,7 +101808,7 @@ entities: pos: -0.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14677 components: - type: Transform @@ -101787,14 +101816,14 @@ entities: pos: 0.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14678 components: - type: Transform pos: -4.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14679 components: - type: Transform @@ -101802,7 +101831,7 @@ entities: pos: -12.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14680 components: - type: Transform @@ -101810,7 +101839,7 @@ entities: pos: 12.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14681 components: - type: Transform @@ -101818,7 +101847,7 @@ entities: pos: 15.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14682 components: - type: Transform @@ -101826,14 +101855,14 @@ entities: pos: 46.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14683 components: - type: Transform pos: -30.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14684 components: - type: Transform @@ -101841,7 +101870,7 @@ entities: pos: -33.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14685 components: - type: Transform @@ -101849,7 +101878,7 @@ entities: pos: -37.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14686 components: - type: Transform @@ -101857,7 +101886,7 @@ entities: pos: -38.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14687 components: - type: Transform @@ -101865,7 +101894,7 @@ entities: pos: -38.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14688 components: - type: Transform @@ -101873,7 +101902,7 @@ entities: pos: -38.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14689 components: - type: Transform @@ -101881,21 +101910,21 @@ entities: pos: -33.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14690 components: - type: Transform pos: -34.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14691 components: - type: Transform pos: -22.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14692 components: - type: Transform @@ -101903,35 +101932,35 @@ entities: pos: -29.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14693 components: - type: Transform pos: -9.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14694 components: - type: Transform pos: 11.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14695 components: - type: Transform pos: -10.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14696 components: - type: Transform pos: -19.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14697 components: - type: Transform @@ -101939,7 +101968,7 @@ entities: pos: 23.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14698 components: - type: Transform @@ -101947,7 +101976,7 @@ entities: pos: -29.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14699 components: - type: Transform @@ -101955,14 +101984,14 @@ entities: pos: -15.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14700 components: - type: Transform pos: -30.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14701 components: - type: Transform @@ -101970,14 +101999,14 @@ entities: pos: -36.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14702 components: - type: Transform pos: -31.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14703 components: - type: Transform @@ -101985,7 +102014,7 @@ entities: pos: -23.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14704 components: - type: Transform @@ -101993,21 +102022,21 @@ entities: pos: -40.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14705 components: - type: Transform pos: -2.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14706 components: - type: Transform pos: -9.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14707 components: - type: Transform @@ -102015,7 +102044,7 @@ entities: pos: -0.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14708 components: - type: Transform @@ -102023,14 +102052,14 @@ entities: pos: -0.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14709 components: - type: Transform pos: -5.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14710 components: - type: Transform @@ -102038,14 +102067,14 @@ entities: pos: 36.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14711 components: - type: Transform pos: 5.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14712 components: - type: Transform @@ -102053,7 +102082,7 @@ entities: pos: 7.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14713 components: - type: Transform @@ -102061,7 +102090,7 @@ entities: pos: 5.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14714 components: - type: Transform @@ -102069,14 +102098,14 @@ entities: pos: 5.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14715 components: - type: Transform pos: 22.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14716 components: - type: Transform @@ -102084,7 +102113,7 @@ entities: pos: 17.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14717 components: - type: Transform @@ -102092,14 +102121,14 @@ entities: pos: 20.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14718 components: - type: Transform pos: 21.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14719 components: - type: Transform @@ -102107,21 +102136,21 @@ entities: pos: 29.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14720 components: - type: Transform pos: 21.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14721 components: - type: Transform pos: 19.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14722 components: - type: Transform @@ -102129,7 +102158,7 @@ entities: pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14723 components: - type: Transform @@ -102137,14 +102166,14 @@ entities: pos: 25.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14724 components: - type: Transform pos: 14.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14725 components: - type: Transform @@ -102152,7 +102181,7 @@ entities: pos: 29.5,30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14726 components: - type: Transform @@ -102160,7 +102189,7 @@ entities: pos: 40.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14727 components: - type: Transform @@ -102168,7 +102197,7 @@ entities: pos: 32.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14728 components: - type: Transform @@ -102176,14 +102205,14 @@ entities: pos: 43.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14729 components: - type: Transform pos: 40.5,41.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14730 components: - type: Transform @@ -102191,14 +102220,14 @@ entities: pos: 43.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14731 components: - type: Transform pos: 42.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14732 components: - type: Transform @@ -102206,7 +102235,7 @@ entities: pos: 29.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14733 components: - type: Transform @@ -102214,21 +102243,21 @@ entities: pos: 19.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14734 components: - type: Transform pos: 42.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14735 components: - type: Transform pos: 9.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14736 components: - type: Transform @@ -102236,7 +102265,7 @@ entities: pos: -12.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14737 components: - type: Transform @@ -102244,7 +102273,7 @@ entities: pos: -24.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14738 components: - type: Transform @@ -102252,21 +102281,21 @@ entities: pos: 6.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14739 components: - type: Transform pos: 22.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14740 components: - type: Transform pos: 19.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14741 components: - type: Transform @@ -102274,7 +102303,7 @@ entities: pos: 25.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14742 components: - type: Transform @@ -102282,7 +102311,7 @@ entities: pos: 37.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14743 components: - type: Transform @@ -102290,14 +102319,14 @@ entities: pos: 44.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14744 components: - type: Transform pos: 45.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14745 components: - type: Transform @@ -102305,7 +102334,7 @@ entities: pos: 19.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14746 components: - type: Transform @@ -102313,7 +102342,7 @@ entities: pos: 12.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14747 components: - type: Transform @@ -102321,7 +102350,7 @@ entities: pos: 31.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14748 components: - type: Transform @@ -102329,14 +102358,14 @@ entities: pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14749 components: - type: Transform pos: 17.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14750 components: - type: Transform @@ -102344,14 +102373,14 @@ entities: pos: 35.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14751 components: - type: Transform pos: 42.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14752 components: - type: Transform @@ -102359,14 +102388,14 @@ entities: pos: -4.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14753 components: - type: Transform pos: 33.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14754 components: - type: Transform @@ -102374,7 +102403,7 @@ entities: pos: 28.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14755 components: - type: Transform @@ -102382,7 +102411,7 @@ entities: pos: 15.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14756 components: - type: Transform @@ -102390,28 +102419,28 @@ entities: pos: 14.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14757 components: - type: Transform pos: -29.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14758 components: - type: Transform pos: -23.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14759 components: - type: Transform pos: -22.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14760 components: - type: Transform @@ -102419,7 +102448,7 @@ entities: pos: -21.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14761 components: - type: Transform @@ -102427,7 +102456,7 @@ entities: pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14762 components: - type: Transform @@ -102435,7 +102464,7 @@ entities: pos: -16.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14763 components: - type: Transform @@ -102443,14 +102472,14 @@ entities: pos: -16.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14764 components: - type: Transform pos: -3.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14765 components: - type: Transform @@ -102458,7 +102487,7 @@ entities: pos: -3.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14766 components: - type: Transform @@ -102466,7 +102495,7 @@ entities: pos: -34.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14767 components: - type: Transform @@ -102474,7 +102503,7 @@ entities: pos: -38.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14768 components: - type: Transform @@ -102482,14 +102511,14 @@ entities: pos: -29.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14769 components: - type: Transform pos: -33.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14770 components: - type: Transform @@ -102497,7 +102526,7 @@ entities: pos: -42.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14771 components: - type: Transform @@ -102505,7 +102534,7 @@ entities: pos: -43.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14772 components: - type: Transform @@ -102513,7 +102542,7 @@ entities: pos: -27.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14773 components: - type: Transform @@ -102521,7 +102550,7 @@ entities: pos: -33.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14774 components: - type: Transform @@ -102529,7 +102558,7 @@ entities: pos: -4.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14775 components: - type: Transform @@ -102537,7 +102566,7 @@ entities: pos: -16.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14776 components: - type: Transform @@ -102545,7 +102574,7 @@ entities: pos: -12.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14777 components: - type: Transform @@ -102553,7 +102582,7 @@ entities: pos: -11.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14778 components: - type: Transform @@ -102561,7 +102590,7 @@ entities: pos: -7.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14779 components: - type: Transform @@ -102569,7 +102598,7 @@ entities: pos: -2.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14780 components: - type: Transform @@ -102577,14 +102606,14 @@ entities: pos: -15.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14781 components: - type: Transform pos: -11.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14782 components: - type: Transform @@ -102592,14 +102621,14 @@ entities: pos: -19.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14783 components: - type: Transform pos: -19.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14784 components: - type: Transform @@ -102607,14 +102636,14 @@ entities: pos: -28.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14785 components: - type: Transform pos: -24.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14786 components: - type: Transform @@ -102622,7 +102651,7 @@ entities: pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14787 components: - type: Transform @@ -102630,14 +102659,14 @@ entities: pos: -0.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14788 components: - type: Transform pos: -37.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14789 components: - type: Transform @@ -102645,7 +102674,7 @@ entities: pos: -33.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14790 components: - type: Transform @@ -102653,7 +102682,7 @@ entities: pos: -33.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14791 components: - type: Transform @@ -102661,7 +102690,7 @@ entities: pos: -33.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14792 components: - type: Transform @@ -102669,7 +102698,7 @@ entities: pos: -41.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14793 components: - type: Transform @@ -102677,7 +102706,7 @@ entities: pos: -39.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14794 components: - type: Transform @@ -102685,7 +102714,7 @@ entities: pos: -24.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14795 components: - type: Transform @@ -102693,21 +102722,21 @@ entities: pos: 5.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14796 components: - type: Transform pos: 7.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14797 components: - type: Transform pos: 0.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14798 components: - type: Transform @@ -102715,7 +102744,7 @@ entities: pos: 8.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14799 components: - type: Transform @@ -102723,7 +102752,7 @@ entities: pos: 2.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14800 components: - type: Transform @@ -102731,7 +102760,7 @@ entities: pos: -2.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14801 components: - type: Transform @@ -102739,14 +102768,14 @@ entities: pos: 6.5,77.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14802 components: - type: Transform pos: 7.5,85.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14803 components: - type: Transform @@ -102754,14 +102783,14 @@ entities: pos: 1.5,82.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14804 components: - type: Transform pos: -4.5,84.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14805 components: - type: Transform @@ -102769,7 +102798,7 @@ entities: pos: -3.5,76.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14806 components: - type: Transform @@ -102777,7 +102806,7 @@ entities: pos: 7.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14807 components: - type: Transform @@ -102785,7 +102814,7 @@ entities: pos: 3.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14808 components: - type: Transform @@ -102793,7 +102822,7 @@ entities: pos: 7.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14809 components: - type: Transform @@ -102801,14 +102830,14 @@ entities: pos: -6.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14810 components: - type: Transform pos: 5.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14811 components: - type: Transform @@ -102816,7 +102845,7 @@ entities: pos: 41.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14812 components: - type: Transform @@ -102824,7 +102853,7 @@ entities: pos: 43.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14813 components: - type: Transform @@ -102832,14 +102861,14 @@ entities: pos: 18.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - uid: 14814 components: - type: Transform pos: -12.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 14815 @@ -107098,17 +107127,41 @@ entities: - type: Transform pos: -8.5,-25.5 parent: 2 + - uid: 16299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 2 - uid: 19032 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 + - uid: 22678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-21.5 + parent: 2 - uid: 22837 components: - type: Transform pos: -24.5,-1.5 parent: 2 + - uid: 22954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 - proto: GrilleBroken entities: - uid: 15519 @@ -110196,13 +110249,6 @@ entities: - type: Transform pos: -20.5,32.5 parent: 2 - - uid: 16321 - components: - - type: Transform - pos: -2.5,-44.5 - parent: 2 - - type: MailingUnit - tag: Engenharia - uid: 16325 components: - type: Transform @@ -110220,11 +110266,6 @@ entities: - type: Transform pos: 32.5,17.5 parent: 2 - - uid: 22671 - components: - - type: Transform - pos: 21.5,23.5 - parent: 2 - uid: 22676 components: - type: Transform @@ -110235,18 +110276,6 @@ entities: - type: Transform pos: 10.5,15.5 parent: 2 - - uid: 22678 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 2 - - uid: 24030 - components: - - type: Transform - pos: 12.5,-32.5 - parent: 2 - - type: MailingUnit - tag: Medicina - proto: MailTeleporter entities: - uid: 15956 @@ -112375,6 +112404,38 @@ entities: - type: Transform pos: 20.5,47.5 parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 18225 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 22374 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 - proto: PlasticFlapsClear entities: - uid: 16310 @@ -112656,6 +112717,11 @@ entities: parent: 2 - proto: PortableScrubber entities: + - uid: 5948 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 - uid: 16364 components: - type: Transform @@ -112701,11 +112767,6 @@ entities: - type: Transform pos: -6.5,-76.5 parent: 2 - - uid: 16373 - components: - - type: Transform - pos: 35.5,-48.5 - parent: 2 - uid: 16374 components: - type: Transform @@ -120671,6 +120732,24 @@ entities: parent: 2 - proto: ReinforcedWindow entities: + - uid: 16300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-21.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 2 - uid: 17597 components: - type: Transform @@ -122869,6 +122948,12 @@ entities: - type: Transform pos: -9.5,-25.5 parent: 2 + - uid: 18222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 2 - uid: 22835 components: - type: Transform @@ -124515,71 +124600,6 @@ entities: - type: DeviceLinkSink links: - 18265 -- proto: ShuttersWindow - entities: - - uid: 18222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-22.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - - uid: 18223 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-21.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - - uid: 18224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-20.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - - uid: 18225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-19.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - - uid: 18226 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-18.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - - uid: 18227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-17.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - - uid: 18228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-16.5 - parent: 2 - - type: DeviceLinkSink - links: - - 18245 - proto: ShuttersWindowOpen entities: - uid: 18229 @@ -124740,28 +124760,6 @@ entities: linkedPorts: 1000: - Pressed: Toggle - - uid: 18245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.781517,-17.427288 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 18228: - - Pressed: Toggle - 18227: - - Pressed: Toggle - 18226: - - Pressed: Toggle - 18225: - - Pressed: Toggle - 18224: - - Pressed: Toggle - 18223: - - Pressed: Toggle - 18222: - - Pressed: Toggle - uid: 18246 components: - type: Transform @@ -127574,11 +127572,6 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,12.5 parent: 2 - - uid: 18472 - components: - - type: Transform - pos: 31.5,17.5 - parent: 2 - proto: SignJanitor entities: - uid: 18473 @@ -128268,10 +128261,10 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 18593 + - uid: 5940 components: - type: Transform - pos: 35.5,-46.5 + pos: 34.5,-46.5 parent: 2 - uid: 18594 components: @@ -138813,10 +138806,29 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-15.5 parent: 2 - - uid: 16324 + - uid: 16304 components: - type: Transform - pos: 16.5,-37.5 + rot: -1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 2 + - uid: 16320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 16321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-21.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-17.5 parent: 2 - uid: 17057 components: @@ -138869,11 +138881,21 @@ entities: - type: Transform pos: 15.5,-7.5 parent: 2 + - uid: 18472 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 - uid: 18551 components: - type: Transform pos: 14.5,-7.5 parent: 2 + - uid: 18593 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 - uid: 18868 components: - type: Transform @@ -148909,8 +148931,7 @@ entities: - uid: 22277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-33.5 + pos: -2.5,-43.5 parent: 2 - uid: 22278 components: @@ -149002,6 +149023,11 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-42.5 parent: 2 + - uid: 22373 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 - uid: 22403 components: - type: Transform @@ -149379,11 +149405,6 @@ entities: - type: Transform pos: 13.5,-33.5 parent: 2 - - uid: 22954 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - uid: 23467 components: - type: Transform @@ -149593,15 +149614,10 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 16320 - components: - - type: Transform - pos: -3.5,-44.5 - parent: 2 - - uid: 16322 + - uid: 5947 components: - type: Transform - pos: 21.5,24.5 + pos: 33.5,-46.5 parent: 2 - uid: 19029 components: @@ -151882,28 +151898,10 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,-49.5 parent: 2 - - uid: 22373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 2 - - uid: 22374 - components: - - type: Transform - pos: -3.5,-43.5 - parent: 2 - uid: 22375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-43.5 - parent: 2 - - uid: 22376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 + pos: 35.5,-47.5 parent: 2 - uid: 22377 components: @@ -154149,12 +154147,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,20.5 parent: 2 - - uid: 22839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,17.5 - parent: 2 - uid: 22842 components: - type: Transform @@ -154807,11 +154799,6 @@ entities: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 23014 - components: - - type: Transform - pos: 35.5,-47.5 - parent: 2 - uid: 23015 components: - type: Transform @@ -154858,12 +154845,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-54.5 parent: 2 - - uid: 23024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-46.5 - parent: 2 - uid: 23025 components: - type: Transform @@ -156667,7 +156648,7 @@ entities: links: - 19976 - type: Door - secondsUntilStateChange: -188469.52 + secondsUntilStateChange: -189523.19 state: Opening - uid: 23356 components: @@ -158018,41 +157999,17 @@ entities: parent: 2 - proto: WindowReinforcedDirectional entities: - - uid: 16299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-69.5 - parent: 2 - - uid: 16300 + - uid: 22376 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-68.5 + pos: -1.5,-68.5 parent: 2 - - uid: 16301 + - uid: 23024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-70.5 - parent: 2 - - uid: 16302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-70.5 - parent: 2 - - uid: 16303 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-69.5 - parent: 2 - - uid: 16304 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-68.5 + pos: -1.5,-69.5 parent: 2 - uid: 23584 components: @@ -159403,6 +159360,30 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-49.5 parent: 2 + - uid: 23892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-70.5 + parent: 2 + - uid: 23893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-68.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-69.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-70.5 + parent: 2 - proto: Wirecutter entities: - uid: 23818 diff --git a/Resources/Prototypes/Actions/psionics.yml b/Resources/Prototypes/Actions/psionics.yml index d302de7a643..a372a480ac7 100644 --- a/Resources/Prototypes/Actions/psionics.yml +++ b/Resources/Prototypes/Actions/psionics.yml @@ -364,3 +364,41 @@ maxRange: 1 spawns: - EffectPyrokineticFlare + +- type: entity + id: ActionSummonImp + name: action-name-summon-imp + description: action-description-summon-imp + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Interface/Actions/psionics.rsi, state: summon_imp } + useDelay: 120 + checkCanInteract: false + event: !type:SummonPsionicFamiliarActionEvent + familiarProto: MobPsionicFamiliarImp + powerName: "Summon Imp" + checkInsulation: true + doGlimmerEffects: true + followMaster: true + minGlimmer: 10 + maxGlimmer: 20 + +- type: entity + id: ActionSummonRemilia + name: action-name-summon-remilia + description: action-description-summon-remilia + noSpawn: true + components: + - type: InstantAction + icon: { sprite: Interface/Actions/psionics.rsi, state: summon_remilia } + useDelay: 120 + checkCanInteract: false + event: !type:SummonPsionicFamiliarActionEvent + familiarProto: MobBatRemilia + powerName: "Summon Remilia" + checkInsulation: true + doGlimmerEffects: true + followMaster: true + minGlimmer: 5 + maxGlimmer: 10 diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index bb0c47f48fb..e32eea3cc93 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -192,6 +192,7 @@ - type: alert id: HumanHealth category: Health + onClick: !type:CheckHealth { } icons: - sprite: /Textures/Interface/Alerts/human_alive.rsi state: health0 diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index 87166f13a3e..a605e22e642 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -1,6 +1,69 @@ +- type: entity + parent: + - BaseMob + - MobCombat + - MobDamageable + id: BaseMobPsionicFamiliar + abstract: true + components: + - type: Sprite + drawdepth: Mobs + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: bat + sprite: Mobs/Animals/bat.rsi + - type: GhostRole + makeSentient: true + allowMovement: true + allowSpeech: true + name: ghost-role-information-familiar-name + description: ghost-role-information-familiar-description + rules: ghost-role-information-familiar-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: Tag + tags: + - DoorBumpOpener + - type: MobThresholds + thresholds: + 0: Alive + 100: Dead + - type: Damageable + damageContainer: CorporealSpirit + damageModifierSet: CorporealSpirit + - type: MindContainer + showExamineInfo: false + - type: NpcFactionMember + factions: + - PsionicInterloper + - type: Alerts + - type: Familiar + - type: Psionic + removable: false + psychognomicDescriptors: + - p-descriptor-bound + - p-descriptor-cyclic + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower + - type: HTN + rootTask: + task: MeleePsionicFamiliarCompound + - type: NPCRetaliation + attackMemoryLength: 10 + retaliateFriendlies: true + - type: PsionicFamiliar + - type: DamageOnDispel + damage: + types: + Heat: 100 + - type: RandomMetadata + nameSegments: [names_golem] + - type: entity name: Remilia - parent: MobBat + parent: BaseMobPsionicFamiliar id: MobBatRemilia description: The chaplain's familiar. Likes fruit. components: @@ -23,25 +86,43 @@ - type: Access tags: - Chapel - - type: Damageable # Nyanotrasen - Corporeal Spirit allows Holy water to do damage - damageContainer: CorporealSpirit - damageModifierSet: CorporealSpirit - - type: MindContainer - showExamineInfo: true - - type: NpcFactionMember - factions: - - PetsNT - - PsionicInterloper #Nyano - Summary: makes a part of the psionic faction. - - type: Alerts - - type: Familiar - - type: Psionic - removable: false - psychognomicDescriptors: - - p-descriptor-bound - - p-descriptor-cyclic - type: InnatePsionicPowers powersToAdd: - TelepathyPower + - XenoglossyPower + - type: MovementSpeedModifier + baseWalkSpeed : 3 + baseSprintSpeed : 6 + - type: Speech + speechSounds: Squeak + speechVerb: SmallMob + allowedEmotes: ['Squeak'] + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.25 + density: 0.8 + mask: + - FlyingMobMask + layer: + - FlyingMobLayer + - type: InteractionPopup + successChance: 0.2 + interactSuccessString: petting-success-soft-floofy + interactFailureString: petting-failure-bat + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/fox_squeak.ogg + - type: MeleeWeapon + soundHit: + path: /Audio/Effects/bite.ogg + angle: 0 + animation: WeaponArcBite + damage: + types: + Piercing: 5 - type: entity name: Cerberus @@ -74,7 +155,7 @@ - type: NpcFactionMember factions: - Syndicate - - PsionicInterloper #Nyano - Summary: makes part of the psionoic faction. + - PsionicInterloper - type: InteractionPopup successChance: 0.5 interactSuccessString: petting-success-corrupted-corgi @@ -99,7 +180,7 @@ showExamineInfo: true - type: Familiar - type: Dispellable - - type: Psionic #Nyano - Summary: makes psionic on creation. + - type: Psionic removable: false - type: InnatePsionicPowers powersToAdd: @@ -109,3 +190,45 @@ Male: Cerberus Female: Cerberus Unsexed: Cerberus + +- type: entity + name: imp familiar + parent: BaseMobPsionicFamiliar + id: MobPsionicFamiliarImp + description: A living mote of flame summoned from Gehenna. + components: + - type: Sprite + drawdepth: Mobs + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: imp + sprite: Mobs/Demons/imp.rsi + - type: InnatePsionicPowers + powersToAdd: + - TelepathyPower + - PyrokineticFlare + - XenoglossyPower + - type: MeleeWeapon + damage: + types: + Heat: 9 + soundHit: + path: /Audio/Weapons/Guns/Hits/energy_meat1.ogg + params: + variation: 0.250 + volume: -10 + - type: PointLight + radius: 2 + energy: 30 + color: "#ff4500" + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 13 + mask: + - Opaque + layer: + - MobLayer diff --git a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml index 9a0709e8e74..23ce5a36ee2 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Chapel/bibles.yml @@ -20,8 +20,6 @@ Burn: 10 - type: Prayable bibleUserOnly: true - - type: Summonable - specialItem: SpawnPointGhostRemilia - type: ReactionMixer mixMessage: "bible-mixing-success" reactionTypes: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/telescopic_baton.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/telescopic_baton.yml new file mode 100644 index 00000000000..5e797c85361 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/telescopic_baton.yml @@ -0,0 +1,71 @@ +- type: entity + id: TelescopicBaton + parent: BaseItem + name: telescopic baton + description: A compact and harmless personal defense weapon. Sturdy enough to knock the feet out from under attackers. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/telebaton.rsi + layers: + - state: icon + map: [ "enum.TelescopicBatonVisuals.Layer" ] + - type: Item + size: Small + - type: ItemToggle + soundActivate: + path: /Audio/Weapons/telescopicon.ogg + params: + volume: -2 + soundDeactivate: + path: /Audio/Weapons/telescopicoff.ogg + params: + volume: -2 + - type: ItemToggleDisarmMalus + activatedDisarmMalus: 0.6 + - type: ItemToggleMeleeWeapon + activatedDamage: + types: + Blunt: 12 + - type: ItemToggleSize + activatedSize: Normal + - type: UseDelay + delay: 2 + - type: TelescopicBaton + - type: KnockdownOnHit + duration: 1.5 + dropHeldItemsBehavior: NoDrop + - type: MeleeWeapon + attackRate: 0.8 + bluntStaminaDamageFactor: 1.5 + heavyDamageBaseModifier: 1.2 + heavyStaminaCost: 5 + maxTargets: 1 + angle: 40 + damage: + types: + Blunt: 1 + - type: Appearance + - type: GenericVisualizer + visuals: + enum.TelescopicBatonVisuals.State: + enum.TelescopicBatonVisuals.Layer: + True: { state: icon } + False: { state: icon-off } + +- type: entity + parent: TelescopicBaton + id: TelescopicBatonAdmeme + name: robust telescopic baton + description: A compact and HARMFUL personal defense weapon. Sturdy enough to break legs of the attackers, making them unable to walk again. + suffix: admeme, DO NOT MAP + components: + - type: TelescopicBaton + attackTimeframe: 300 # one minute after activation + - type: KnockdownOnHit + duration: 60 # + - type: MeleeWeapon + attackRate: 1.2 + - type: ItemToggleMeleeWeapon + activatedDamage: + types: + Blunt: 20 diff --git a/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml b/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml index bf45fb6ed74..ccc791460b6 100644 --- a/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml +++ b/Resources/Prototypes/Loadouts/Jobs/Heads/command.yml @@ -10,3 +10,15 @@ - Captain items: - ClothingHandsGlovesInspection + +- type: loadout + id: LoadoutCommandTelescopicBaton + category: JobsCommand + cost: 3 + exclusive: true + requirements: + - !type:CharacterDepartmentRequirement + departments: + - Command + items: + - TelescopicBaton diff --git a/Resources/Prototypes/NPCs/psionic.yml b/Resources/Prototypes/NPCs/psionic.yml new file mode 100644 index 00000000000..0c3772bd912 --- /dev/null +++ b/Resources/Prototypes/NPCs/psionic.yml @@ -0,0 +1,25 @@ +- type: htnCompound + id: MeleePsionicFamiliarCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: MeleeCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FollowCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + +- type: htnCompound + id: RangedPsionicFamiliarCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: InnateRangedCombatCompound + - tasks: + - !type:HTNCompoundTask + task: FollowCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound diff --git a/Resources/Prototypes/Nyanotrasen/psionicPowers.yml b/Resources/Prototypes/Nyanotrasen/psionicPowers.yml index 22198ff5b02..8b2911018f9 100644 --- a/Resources/Prototypes/Nyanotrasen/psionicPowers.yml +++ b/Resources/Prototypes/Nyanotrasen/psionicPowers.yml @@ -16,3 +16,4 @@ ShadeskipPower: 0.15 TelekineticPulsePower: 0.15 PyrokineticFlare: 0.3 + SummonImpPower: 0.15 diff --git a/Resources/Prototypes/Psionics/psionics.yml b/Resources/Prototypes/Psionics/psionics.yml index dbc7f91bfbe..7ee6e193e37 100644 --- a/Resources/Prototypes/Psionics/psionics.yml +++ b/Resources/Prototypes/Psionics/psionics.yml @@ -254,3 +254,22 @@ initializationFeedback: pyrokinetic-flare-power-initialization-feedback metapsionicFeedback: pyrokinetic-flare-power-metapsionic-feedback amplificationModifier: 0.25 + +- type: psionicPower + id: SummonImpPower + name: Summon Imp + description: summon-imp-power-description + actions: + - ActionSummonImp + powerSlotCost: 1 + initializationFeedback: summon-imp-power-initialization-feedback + amplificationModifier: 0.5 + dampeningModifier: 0.5 + +- type: psionicPower + id: SummonRemiliaPower + name: Summon Remilia + description: summon-imp-power-description + actions: + - ActionSummonRemilia + powerSlotCost: 0 diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml index b96ef9517e0..169ac3006c1 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/chaplain.yml @@ -29,13 +29,14 @@ special: - !type:AddComponentSpecial components: - - type: BibleUser #Lets them heal with bibles + - type: BibleUser - type: Psionic powerRollMultiplier: 3 - type: InnatePsionicPowers powersToAdd: - TelepathyPower - HealingWordPower + - SummonRemiliaPower - type: startingGear id: ChaplainGear diff --git a/Resources/Prototypes/Traits/skills.yml b/Resources/Prototypes/Traits/skills.yml index 0d6eb045ac6..fb0c6d4fc91 100644 --- a/Resources/Prototypes/Traits/skills.yml +++ b/Resources/Prototypes/Traits/skills.yml @@ -297,8 +297,13 @@ componentRemovals: - PsionicInsulation requirements: - - !type:CharacterLogicOrRequirement - requirements: - - !type:CharacterSpeciesRequirement - species: - - IPC + - !type:CharacterSpeciesRequirement + species: + - IPC + +- type: trait + id: AnimalFriend + category: Mental + points: -4 + addFactions: + - AnimalFriend diff --git a/Resources/Prototypes/ai_factions.yml b/Resources/Prototypes/ai_factions.yml index 02a2ac168d3..cdbbf868662 100644 --- a/Resources/Prototypes/ai_factions.yml +++ b/Resources/Prototypes/ai_factions.yml @@ -35,6 +35,8 @@ - type: npcFaction id: SimpleHostile + friendly: + - AnimalFriend hostile: - NanoTrasen - Syndicate @@ -86,6 +88,8 @@ - type: npcFaction id: Pibble + friendly: + - AnimalFriend hostile: - Cat - Birb @@ -99,3 +103,6 @@ - type: npcFaction id: Birb + +- type: npcFaction + id: AnimalFriend diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/meta.json b/Resources/Textures/Interface/Actions/psionics.rsi/meta.json index 9c49090db8c..735bc293d15 100644 --- a/Resources/Textures/Interface/Actions/psionics.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/psionics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by leonardo_dabepis (discord)", + "copyright": "healing_word, revivify, shadeskip by leonardo_dabepis (discord), telekinetic_pulse by .mocho (discord), pyrokinetic_flare, summon_remilia, summon_bat and summon_imp by ghost581 (discord)", "size": { "x": 64, "y": 64 @@ -21,6 +21,15 @@ }, { "name": "pyrokinetic_flare" + }, + { + "name": "summon_imp" + }, + { + "name": "summon_remilia" + }, + { + "name": "summon_bat" } ] } diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/summon_bat.png b/Resources/Textures/Interface/Actions/psionics.rsi/summon_bat.png new file mode 100644 index 00000000000..60f571278b9 Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/summon_bat.png differ diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/summon_imp.png b/Resources/Textures/Interface/Actions/psionics.rsi/summon_imp.png new file mode 100644 index 00000000000..5de7c274fc1 Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/summon_imp.png differ diff --git a/Resources/Textures/Interface/Actions/psionics.rsi/summon_remilia.png b/Resources/Textures/Interface/Actions/psionics.rsi/summon_remilia.png new file mode 100644 index 00000000000..fcfe2a37265 Binary files /dev/null and b/Resources/Textures/Interface/Actions/psionics.rsi/summon_remilia.png differ diff --git a/Resources/Textures/Mobs/Demons/imp.rsi/imp.png b/Resources/Textures/Mobs/Demons/imp.rsi/imp.png new file mode 100644 index 00000000000..575c223ee87 Binary files /dev/null and b/Resources/Textures/Mobs/Demons/imp.rsi/imp.png differ diff --git a/Resources/Textures/Mobs/Demons/imp.rsi/meta.json b/Resources/Textures/Mobs/Demons/imp.rsi/meta.json new file mode 100644 index 00000000000..98f33679c7b --- /dev/null +++ b/Resources/Textures/Mobs/Demons/imp.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by ghost581(Discord)", + "states": [ + { + "name": "imp", + "delays": [[0.3, 0.3, 0.3, 0.3]] + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/icon-off.png b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/icon-off.png new file mode 100644 index 00000000000..77efc573562 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/icon-off.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/icon.png new file mode 100644 index 00000000000..fb6adc7b3dc Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/inhand-left.png new file mode 100644 index 00000000000..6f31eafd0f4 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/inhand-right.png new file mode 100644 index 00000000000..3ff76ef4daa Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/meta.json new file mode 100644 index 00000000000..1abc5be52ff --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/telebaton.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Taken from Bee Station 13 at https://github.com/BeeStation/BeeStation-Hornet/commit/59b6fbe2e6f6f4194d650e2c51c6ae70b8a14aca", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-off" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +}