diff --git a/Content.Client/Construction/ConstructionMenu.cs b/Content.Client/Construction/ConstructionMenu.cs index 089d2245f1..4bc9808984 100644 --- a/Content.Client/Construction/ConstructionMenu.cs +++ b/Content.Client/Construction/ConstructionMenu.cs @@ -1,20 +1,28 @@ -using System; +#nullable enable +using System; using System.Collections.Generic; using System.Linq; using Content.Client.GameObjects.EntitySystems; +using Content.Client.Utility; using Content.Shared.Construction; +using Content.Shared.GameObjects.Components; using Content.Shared.GameObjects.Components.Interactable; +using Content.Shared.Materials; +using Microsoft.CodeAnalysis.Options; using Robust.Client.Graphics; using Robust.Client.Interfaces.Placement; using Robust.Client.Interfaces.ResourceManagement; using Robust.Client.Placement; using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Client.Utility; using Robust.Shared.Enums; +using Robust.Shared.GameObjects.Systems; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.IoC; +using Robust.Shared.Localization; using Robust.Shared.Maths; using Robust.Shared.Prototypes; @@ -25,376 +33,424 @@ namespace Content.Client.Construction [Dependency] private readonly IPrototypeManager _prototypeManager = default!; [Dependency] private readonly IResourceCache _resourceCache = default!; [Dependency] private readonly IEntitySystemManager _systemManager = default!; + [Dependency] private readonly IPlacementManager _placementManager = default!; - private readonly Button BuildButton; - private readonly Button EraseButton; - private readonly LineEdit SearchBar; - private readonly Tree RecipeList; - private readonly TextureRect InfoIcon; - private readonly Label InfoLabel; - private readonly ItemList StepList; + protected override Vector2? CustomSize => (720, 320); - private CategoryNode RootCategory; + private ConstructionPrototype? _selected; + private string[] _categories = Array.Empty(); - // This list is flattened in such a way that the top most deepest category is first. - private List FlattenedCategories; - private readonly PlacementManager Placement; - - protected override Vector2? CustomSize => (500, 350); + private readonly ItemList _recipes; + private readonly ItemList _stepList; + private readonly Button _buildButton; + private readonly Button _eraseButton; + private readonly LineEdit _searchBar; + private readonly OptionButton _category; + private readonly TextureRect _targetTexture; + private readonly RichTextLabel _targetName; + private readonly RichTextLabel _targetDescription; public ConstructionMenu() { IoCManager.InjectDependencies(this); - Placement = (PlacementManager) IoCManager.Resolve(); - Placement.PlacementChanged += OnPlacementChanged; + + _placementManager.PlacementChanged += PlacementChanged; Title = "Construction"; - var hSplitContainer = new HSplitContainer(); + var hbox = new HBoxContainer() {SizeFlagsHorizontal = SizeFlags.FillExpand}; - // Left side - var recipes = new VBoxContainer {CustomMinimumSize = new Vector2(150.0f, 0.0f)}; - SearchBar = new LineEdit {PlaceHolder = "Search"}; - RecipeList = new Tree {SizeFlagsVertical = SizeFlags.FillExpand, HideRoot = true}; - recipes.AddChild(SearchBar); - recipes.AddChild(RecipeList); - hSplitContainer.AddChild(recipes); + var recipeContainer = new VBoxContainer() {SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.45f}; - // Right side - var guide = new VBoxContainer(); - var info = new HBoxContainer(); - InfoIcon = new TextureRect(); - InfoLabel = new Label - { - SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsVertical = SizeFlags.ShrinkCenter - }; - info.AddChild(InfoIcon); - info.AddChild(InfoLabel); - guide.AddChild(info); + var searchContainer = new HBoxContainer() {SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.1f}; + _searchBar = new LineEdit() {PlaceHolder = "Search", SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.6f}; + _category = new OptionButton() {SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.4f}; - var stepsLabel = new Label - { - SizeFlagsHorizontal = SizeFlags.ShrinkCenter, - SizeFlagsVertical = SizeFlags.ShrinkCenter, - Text = "Steps" - }; - guide.AddChild(stepsLabel); + _recipes = new ItemList() {SelectMode = ItemList.ItemListSelectMode.Single, SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.9f}; - StepList = new ItemList - { - SizeFlagsVertical = SizeFlags.FillExpand, SelectMode = ItemList.ItemListSelectMode.None - }; - guide.AddChild(StepList); + var spacer = new Control() {SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.05f}; - var buttonsContainer = new HBoxContainer(); - BuildButton = new Button - { - SizeFlagsHorizontal = SizeFlags.FillExpand, - TextAlign = Label.AlignMode.Center, - Text = "Build!", - Disabled = true, - ToggleMode = true - }; - EraseButton = new Button - { - TextAlign = Label.AlignMode.Center, Text = "Clear Ghosts", ToggleMode = true - }; - buttonsContainer.AddChild(BuildButton); - buttonsContainer.AddChild(EraseButton); - guide.AddChild(buttonsContainer); + var stepsContainer = new VBoxContainer() {SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.45f}; + var targetContainer = new HBoxContainer() {Align = BoxContainer.AlignMode.Center, SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.25f}; + _targetTexture = new TextureRect() {SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.15f, Stretch = TextureRect.StretchMode.KeepCentered}; + var targetInfoContainer = new VBoxContainer() {SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.85f}; + _targetName = new RichTextLabel() {SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.1f}; + _targetDescription = new RichTextLabel() {SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.9f}; - hSplitContainer.AddChild(guide); - Contents.AddChild(hSplitContainer); + _stepList = new ItemList() {SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.75f, SelectMode = ItemList.ItemListSelectMode.None}; - BuildButton.OnToggled += OnBuildToggled; - EraseButton.OnToggled += OnEraseToggled; - SearchBar.OnTextChanged += OnTextEntered; - RecipeList.OnItemSelected += OnItemSelected; + var buttonContainer = new VBoxContainer() {SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.1f}; + _buildButton = new Button() {Disabled = true, ToggleMode = true, Text = Loc.GetString("Place construction ghost"), SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.5f}; - PopulatePrototypeList(); - PopulateTree(); + var eraseContainer = new HBoxContainer() {SizeFlagsVertical = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.5f}; + _eraseButton = new Button() {Text = Loc.GetString("Eraser Mode"), ToggleMode = true, SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.7f}; + var clearButton = new Button() {Text = Loc.GetString("Clear All"), SizeFlagsHorizontal = SizeFlags.FillExpand, SizeFlagsStretchRatio = 0.3f}; + + recipeContainer.AddChild(searchContainer); + recipeContainer.AddChild(_recipes); + + searchContainer.AddChild(_searchBar); + searchContainer.AddChild(_category); + + targetInfoContainer.AddChild(_targetName); + targetInfoContainer.AddChild(_targetDescription); + + targetContainer.AddChild(_targetTexture); + targetContainer.AddChild(targetInfoContainer); + + stepsContainer.AddChild(targetContainer); + stepsContainer.AddChild(_stepList); + + eraseContainer.AddChild(_eraseButton); + eraseContainer.AddChild(clearButton); + + buttonContainer.AddChild(_buildButton); + buttonContainer.AddChild(eraseContainer); + + stepsContainer.AddChild(buttonContainer); + + hbox.AddChild(recipeContainer); + hbox.AddChild(spacer); + hbox.AddChild(stepsContainer); + Contents.AddChild(hbox); + + _recipes.OnItemSelected += RecipeSelected; + _recipes.OnItemDeselected += RecipeDeselected; + + _searchBar.OnTextChanged += SearchTextChanged; + _category.OnItemSelected += CategorySelected; + + _buildButton.OnToggled += BuildButtonToggled; + clearButton.OnPressed += ClearAllButtonPressed; + _eraseButton.OnToggled += EraseButtonToggled; + + PopulateCategories(); + PopulateAll(); + } + + private void PlacementChanged(object? sender, EventArgs e) + { + _buildButton.Pressed = false; + _eraseButton.Pressed = false; + } + + private void PopulateAll() + { + foreach (var recipe in _prototypeManager.EnumeratePrototypes()) + { + _recipes.Add(GetItem(recipe, _recipes)); + } + } + + private static ItemList.Item GetItem(ConstructionPrototype recipe, ItemList itemList) + { + return new ItemList.Item(itemList) + { + Metadata = recipe, + Text = recipe.Name, + Icon = recipe.Icon.Frame0(), + TooltipEnabled = true, + TooltipText = recipe.Description, + }; + } + + private void PopulateBy(string search, string category) + { + _recipes.Clear(); + + foreach (var recipe in _prototypeManager.EnumeratePrototypes()) + { + if (!string.IsNullOrEmpty(search)) + { + if (!recipe.Name.ToLowerInvariant().Contains(search.Trim().ToLowerInvariant())) + continue; + } + + if (!string.IsNullOrEmpty(category) && category != Loc.GetString("All")) + { + if (recipe.Category != category) + continue; + } + + _recipes.Add(GetItem(recipe, _recipes)); + } + } + + private void PopulateCategories() + { + var uniqueCategories = new HashSet(); + + // hard-coded to show all recipes + uniqueCategories.Add(Loc.GetString("All")); + + foreach (var prototype in _prototypeManager.EnumeratePrototypes()) + { + var category = Loc.GetString(prototype.Category); + + if (!string.IsNullOrEmpty(category)) + uniqueCategories.Add(category); + } + + _category.Clear(); + + var array = uniqueCategories.ToArray(); + Array.Sort(array); + + for (var i = 0; i < array.Length; i++) + { + var category = array[i]; + _category.AddItem(category, i); + } + + _categories = array; + } + + private void PopulateInfo(ConstructionPrototype prototype) + { + ClearInfo(); + + var isItem = prototype.Type == ConstructionType.Item; + + _buildButton.Disabled = false; + _buildButton.Text = Loc.GetString(!isItem ? "Place construction ghost" : "Craft"); + _targetName.SetMessage(prototype.Name); + _targetDescription.SetMessage(prototype.Description); + _targetTexture.Texture = prototype.Icon.Frame0(); + + if (!_prototypeManager.TryIndex(prototype.Graph, out ConstructionGraphPrototype graph)) + return; + + var startNode = graph.Nodes[prototype.StartNode]; + var targetNode = graph.Nodes[prototype.TargetNode]; + + var path = graph.Path(startNode.Name, targetNode.Name); + + var current = startNode; + + var stepNumber = 1; + + Texture? GetTextureForStep(ConstructionGraphStep step) + { + switch (step) + { + case MaterialConstructionGraphStep materialStep: + switch (materialStep.Material) + { + case StackType.Metal: + return _resourceCache.GetTexture("/Textures/Objects/Materials/sheets.rsi/metal.png"); + + case StackType.Glass: + return _resourceCache.GetTexture("/Textures/Objects/Materials/sheets.rsi/glass.png"); + + case StackType.Plasteel: + return _resourceCache.GetTexture("/Textures/Objects/Materials/sheets.rsi/plasteel.png"); + + case StackType.Phoron: + return _resourceCache.GetTexture("/Textures/Objects/Materials/sheets.rsi/phoron.png"); + + case StackType.Cable: + return _resourceCache.GetTexture("/Textures/Objects/Tools/cables.rsi/coil-30.png"); + + } + break; + + case ToolConstructionGraphStep toolStep: + switch (toolStep.Tool) + { + case ToolQuality.Anchoring: + return _resourceCache.GetTexture("/Textures/Objects/Tools/wrench.rsi/icon.png"); + case ToolQuality.Prying: + return _resourceCache.GetTexture("/Textures/Objects/Tools/crowbar.rsi/icon.png"); + case ToolQuality.Screwing: + return _resourceCache.GetTexture("/Textures/Objects/Tools/screwdriver.rsi/screwdriver-map.png"); + case ToolQuality.Cutting: + return _resourceCache.GetTexture("/Textures/Objects/Tools/wirecutters.rsi/cutters-map.png"); + case ToolQuality.Welding: + return _resourceCache.GetTexture("/Textures/Objects/Tools/welder.rsi/welder.png"); + case ToolQuality.Multitool: + return _resourceCache.GetTexture("/Textures/Objects/Tools/multitool.rsi/multitool.png"); + } + + break; + + case ComponentConstructionGraphStep componentStep: + return componentStep.Icon?.Frame0(); + + case PrototypeConstructionGraphStep prototypeStep: + return prototypeStep.Icon?.Frame0(); + + case NestedConstructionGraphStep _: + return null; + } + + return null; + } + + foreach (var node in path) + { + var edge = current.GetEdge(node.Name); + var firstNode = current == startNode; + + if (firstNode) + { + _stepList.AddItem(isItem + ? Loc.GetString($"{stepNumber++}. To craft this item, you need:") + : Loc.GetString($"{stepNumber++}. To build this, first you need:")); + } + + foreach (var step in edge.Steps) + { + var icon = GetTextureForStep(step); + + switch (step) + { + case MaterialConstructionGraphStep materialStep: + _stepList.AddItem( + !firstNode + ? Loc.GetString( + "{0}. Add {1}x {2}.", stepNumber++, materialStep.Amount, materialStep.Material) + : Loc.GetString(" {0}x {1}", materialStep.Amount, materialStep.Material), icon); + + break; + + case ToolConstructionGraphStep toolStep: + _stepList.AddItem(Loc.GetString("{0}. Use a {1}.", stepNumber++, toolStep.Tool.GetToolName()), icon); + break; + + case PrototypeConstructionGraphStep prototypeStep: + _stepList.AddItem(Loc.GetString("{0}. Add {1}.", stepNumber++, prototypeStep.Name), icon); + break; + + case ComponentConstructionGraphStep componentStep: + _stepList.AddItem(Loc.GetString("{0}. Add {1}.", stepNumber++, componentStep.Name), icon); + break; + + case NestedConstructionGraphStep nestedStep: + var parallelNumber = 1; + _stepList.AddItem(Loc.GetString("{0}. In parallel...", stepNumber++)); + + foreach (var steps in nestedStep.Steps) + { + var subStepNumber = 1; + + foreach (var subStep in steps) + { + icon = GetTextureForStep(subStep); + + switch (subStep) + { + case MaterialConstructionGraphStep materialStep: + if (!isItem) + _stepList.AddItem(Loc.GetString(" {0}.{1}.{2}. Add {3}x {4}.", stepNumber, parallelNumber, subStepNumber++, materialStep.Amount, materialStep.Material), icon); + break; + + case ToolConstructionGraphStep toolStep: + _stepList.AddItem(Loc.GetString(" {0}.{1}.{2}. Use a {3}.", stepNumber, parallelNumber, subStepNumber++, toolStep.Tool.GetToolName()), icon); + break; + + case PrototypeConstructionGraphStep prototypeStep: + _stepList.AddItem(Loc.GetString(" {0}.{1}.{2}. Add {3}.", stepNumber, parallelNumber, subStepNumber++, prototypeStep.Name), icon); + break; + + case ComponentConstructionGraphStep componentStep: + _stepList.AddItem(Loc.GetString(" {0}.{1}.{2}. Add {3}.", stepNumber, parallelNumber, subStepNumber++, componentStep.Name), icon); + break; + } + } + + parallelNumber++; + } + + break; + } + } + + current = node; + } + } + + private void ClearInfo() + { + _buildButton.Disabled = true; + _targetName.SetMessage(string.Empty); + _targetDescription.SetMessage(string.Empty); + _targetTexture.Texture = null; + _stepList.Clear(); + } + + private void RecipeSelected(ItemList.ItemListSelectedEventArgs obj) + { + _selected = (ConstructionPrototype) obj.ItemList[obj.ItemIndex].Metadata!; + PopulateInfo(_selected); + } + + private void RecipeDeselected(ItemList.ItemListDeselectedEventArgs obj) + { + _selected = null; + ClearInfo(); + } + + private void CategorySelected(OptionButton.ItemSelectedEventArgs obj) + { + _category.SelectId(obj.Id); + PopulateBy(_searchBar.Text, _categories[obj.Id]); + } + + private void SearchTextChanged(LineEdit.LineEditEventArgs obj) + { + PopulateBy(_searchBar.Text, _categories[_category.SelectedId]); + } + + private void BuildButtonToggled(BaseButton.ButtonToggledEventArgs args) + { + if (args.Pressed) + { + if (_selected == null) return; + + var constructSystem = EntitySystem.Get(); + + if (_selected.Type == ConstructionType.Item) + { + constructSystem.TryStartItemConstruction(_selected.ID); + _buildButton.Pressed = false; + return; + } + + _placementManager.BeginPlacing(new PlacementInformation() + { + IsTile = false, + PlacementOption = _selected.PlacementMode, + }, new ConstructionPlacementHijack(constructSystem, _selected)); + } + else + { + _placementManager.Clear(); + } + + _buildButton.Pressed = args.Pressed; + } + + private void EraseButtonToggled(BaseButton.ButtonToggledEventArgs args) + { + if (args.Pressed) _placementManager.Clear(); + _placementManager.ToggleEraserHijacked(new ConstructionPlacementHijack(_systemManager.GetEntitySystem(), null)); + _eraseButton.Pressed = args.Pressed; + } + + private void ClearAllButtonPressed(BaseButton.ButtonEventArgs obj) + { + var constructionSystem = EntitySystem.Get(); + + constructionSystem.ClearAllGhosts(); } - /// protected override void Dispose(bool disposing) { base.Dispose(disposing); if (disposing) { - Placement.PlacementChanged -= OnPlacementChanged; - } - } - - private void OnItemSelected() - { - var prototype = (ConstructionPrototype) RecipeList.Selected.Metadata; - - if (prototype == null) - { - InfoLabel.Text = ""; - InfoIcon.Texture = null; - StepList.Clear(); - BuildButton.Disabled = true; - } - else - { - BuildButton.Disabled = false; - InfoLabel.Text = prototype.Description; - InfoIcon.Texture = prototype.Icon.Frame0(); - - StepList.Clear(); - - foreach (var forward in prototype.Stages.Select(a => a.Forward)) - { - if (forward == null) - { - continue; - } - - Texture icon; - string text; - switch (forward) - { - case ConstructionStepMaterial mat: - switch (mat.Material) - { - case ConstructionStepMaterial.MaterialType.Metal: - icon = _resourceCache.GetResource( - "/Textures/Objects/Materials/sheet_metal.png"); - text = $"Metal x{mat.Amount}"; - break; - case ConstructionStepMaterial.MaterialType.Glass: - icon = _resourceCache.GetResource( - "/Textures/Objects/Materials/sheet_glass.png"); - text = $"Glass x{mat.Amount}"; - break; - case ConstructionStepMaterial.MaterialType.Cable: - icon = _resourceCache.GetResource( - "/Textures/Objects/Tools/cable_coil.png"); - text = $"Cable Coil x{mat.Amount}"; - break; - default: - throw new NotImplementedException(); - } - - break; - case ConstructionStepTool tool: - switch (tool.ToolQuality) - { - case ToolQuality.Anchoring: - icon = _resourceCache.GetResource("/Textures/Objects/Tools/wrench.rsi/icon.png"); - text = "Wrench"; - break; - case ToolQuality.Prying: - icon = _resourceCache.GetResource("/Textures/Objects/Tools/crowbar.rsi/icon.png"); - text = "Crowbar"; - break; - case ToolQuality.Screwing: - icon = _resourceCache.GetResource( - "/Textures/Objects/Tools/screwdriver.rsi/screwdriver-map.png"); - text = "Screwdriver"; - break; - case ToolQuality.Welding: - icon = _resourceCache.GetResource("/Textures/Objects/tools.rsi") - .RSI["welder"].Frame0; - text = $"Welding tool ({tool.Amount} fuel)"; - break; - case ToolQuality.Cutting: - icon = _resourceCache.GetResource( - "/Textures/Objects/Tools/wirecutters.rsi/cutters-map.png"); - text = "Wirecutters"; - break; - default: - throw new NotImplementedException(); - } - - break; - default: - throw new NotImplementedException(); - } - - StepList.AddItem(text, icon, false); - } - } - } - - private void OnTextEntered(LineEdit.LineEditEventArgs args) - { - var str = args.Text; - PopulateTree(string.IsNullOrWhiteSpace(str) ? null : str.ToLowerInvariant()); - } - - private void OnBuildToggled(BaseButton.ButtonToggledEventArgs args) - { - if (args.Pressed) - { - var prototype = (ConstructionPrototype) RecipeList.Selected.Metadata; - if (prototype == null) - { - return; - } - - if (prototype.Type == ConstructionType.Item) - { - var constructSystem = _systemManager.GetEntitySystem(); - constructSystem.TryStartItemConstruction(prototype.ID); - BuildButton.Pressed = false; - return; - } - - Placement.BeginHijackedPlacing( - new PlacementInformation - { - IsTile = false, - PlacementOption = prototype.PlacementMode - }, - new ConstructionPlacementHijack(_systemManager.GetEntitySystem(), prototype)); - } - else - { - Placement.Clear(); - } - BuildButton.Pressed = args.Pressed; - } - - private void OnEraseToggled(BaseButton.ButtonToggledEventArgs args) - { - if (args.Pressed) Placement.Clear(); - Placement.ToggleEraserHijacked(new ConstructionPlacementHijack(_systemManager.GetEntitySystem(), null)); - EraseButton.Pressed = args.Pressed; - } - - private void OnPlacementChanged(object sender, EventArgs e) - { - BuildButton.Pressed = false; - EraseButton.Pressed = false; - } - - private void PopulatePrototypeList() - { - RootCategory = new CategoryNode("", null); - var count = 1; - - foreach (var prototype in _prototypeManager.EnumeratePrototypes()) - { - var currentNode = RootCategory; - - foreach (var category in prototype.CategorySegments) - { - if (!currentNode.ChildCategories.TryGetValue(category, out var subNode)) - { - count++; - subNode = new CategoryNode(category, currentNode); - currentNode.ChildCategories.Add(category, subNode); - } - - currentNode = subNode; - } - - currentNode.Prototypes.Add(prototype); - } - - // Do a pass to sort the prototype lists and flatten the hierarchy. - void Recurse(CategoryNode node) - { - // I give up we're using recursion to flatten this. - // There probably IS a way to do it. - // I'm too stupid to think of what that way is. - foreach (var child in node.ChildCategories.Values) - { - Recurse(child); - } - - node.Prototypes.Sort(ComparePrototype); - FlattenedCategories.Add(node); - node.FlattenedIndex = FlattenedCategories.Count - 1; - } - - FlattenedCategories = new List(count); - Recurse(RootCategory); - } - - private void PopulateTree(string searchTerm = null) - { - RecipeList.Clear(); - - var categoryItems = new Tree.Item[FlattenedCategories.Count]; - categoryItems[RootCategory.FlattenedIndex] = RecipeList.CreateItem(); - - // Yay more recursion. - Tree.Item ItemForNode(CategoryNode node) - { - if (categoryItems[node.FlattenedIndex] != null) - { - return categoryItems[node.FlattenedIndex]; - } - - var item = RecipeList.CreateItem(ItemForNode(node.Parent)); - item.Text = node.Name; - item.Selectable = false; - categoryItems[node.FlattenedIndex] = item; - return item; - } - - foreach (var node in FlattenedCategories) - { - foreach (var prototype in node.Prototypes) - { - if (searchTerm != null) - { - var found = false; - // TODO: don't run ToLowerInvariant() constantly. - if (prototype.Name.ToLowerInvariant().IndexOf(searchTerm, StringComparison.Ordinal) != -1) - { - found = true; - } - else - { - foreach (var keyw in prototype.Keywords.Concat(prototype.CategorySegments)) - { - // TODO: don't run ToLowerInvariant() constantly. - if (keyw.ToLowerInvariant().IndexOf(searchTerm, StringComparison.Ordinal) != -1) - { - found = true; - break; - } - } - } - - if (!found) - { - continue; - } - } - - var subItem = RecipeList.CreateItem(ItemForNode(node)); - subItem.Text = prototype.Name; - subItem.Metadata = prototype; - } - } - } - - private static int ComparePrototype(ConstructionPrototype x, ConstructionPrototype y) - { - return string.Compare(x.Name, y.Name, StringComparison.Ordinal); - } - - private class CategoryNode - { - public readonly string Name; - public readonly CategoryNode Parent; - - public readonly SortedDictionary - ChildCategories = new SortedDictionary(); - - public readonly List Prototypes = new List(); - public int FlattenedIndex = -1; - - public CategoryNode(string name, CategoryNode parent) - { - Name = name; - Parent = parent; + _placementManager.PlacementChanged -= PlacementChanged; } } } diff --git a/Content.Client/GameObjects/Components/Construction/ConstructionGhostComponent.cs b/Content.Client/GameObjects/Components/Construction/ConstructionGhostComponent.cs index 28adc6a316..9563a63bfd 100644 --- a/Content.Client/GameObjects/Components/Construction/ConstructionGhostComponent.cs +++ b/Content.Client/GameObjects/Components/Construction/ConstructionGhostComponent.cs @@ -1,8 +1,9 @@ using Content.Shared.Construction; using Content.Shared.GameObjects.EntitySystems; using Robust.Shared.GameObjects; -using Robust.Shared.GameObjects.Systems; +using Robust.Shared.IoC; using Robust.Shared.Localization; +using Robust.Shared.Prototypes; using Robust.Shared.Utility; using Robust.Shared.ViewVariables; @@ -11,6 +12,8 @@ namespace Content.Client.GameObjects.Components.Construction [RegisterComponent] public class ConstructionGhostComponent : Component, IExamine { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + public override string Name => "ConstructionGhost"; [ViewVariables] public ConstructionPrototype Prototype { get; set; } @@ -18,8 +21,13 @@ namespace Content.Client.GameObjects.Components.Construction void IExamine.Examine(FormattedMessage message, bool inDetailsRange) { - message.AddText(Loc.GetString("Building: {0}\n", Prototype.Name)); - EntitySystem.Get().DoExamine(message, Prototype, 0, inDetailsRange); + message.AddMarkup(Loc.GetString("Building: [color=cyan]{0}[/color]\n", Prototype.Name)); + + if (!_prototypeManager.TryIndex(Prototype.Graph, out ConstructionGraphPrototype graph)) return; + var startNode = graph.Nodes[Prototype.StartNode]; + var path = graph.Path(Prototype.StartNode, Prototype.TargetNode); + var edge = startNode.GetEdge(path[0].Name); + edge.Steps[0].DoExamine(message, inDetailsRange); } } } diff --git a/Content.Client/GameObjects/Components/ReinforcedWallComponent.cs b/Content.Client/GameObjects/Components/ReinforcedWallComponent.cs index 8a7d8c90da..cd7db57d3a 100644 --- a/Content.Client/GameObjects/Components/ReinforcedWallComponent.cs +++ b/Content.Client/GameObjects/Components/ReinforcedWallComponent.cs @@ -1,4 +1,5 @@ using Content.Client.GameObjects.Components.IconSmoothing; +using Content.Shared.GameObjects.Components; using Robust.Shared.GameObjects; using Robust.Shared.Serialization; using Robust.Shared.ViewVariables; @@ -35,6 +36,7 @@ namespace Content.Client.GameObjects.Components Sprite.LayerSetDirOffset(ReinforcedCornerLayers.NW, DirectionOffset.Flip); Sprite.LayerMapSet(ReinforcedCornerLayers.SW, Sprite.AddLayerState(state0)); Sprite.LayerSetDirOffset(ReinforcedCornerLayers.SW, DirectionOffset.Clockwise); + Sprite.LayerMapSet(ReinforcedWallVisualLayers.Deconstruction, Sprite.AddBlankLayer()); } internal override void CalculateNewSprite() diff --git a/Content.Client/GameObjects/Components/ReinforcedWallVisualizer.cs b/Content.Client/GameObjects/Components/ReinforcedWallVisualizer.cs new file mode 100644 index 0000000000..69ed7754f5 --- /dev/null +++ b/Content.Client/GameObjects/Components/ReinforcedWallVisualizer.cs @@ -0,0 +1,42 @@ +using Content.Shared.GameObjects.Components; +using JetBrains.Annotations; +using Robust.Client.GameObjects; +using Robust.Client.Interfaces.GameObjects.Components; + +namespace Content.Client.GameObjects.Components +{ + [UsedImplicitly] + public class ReinforcedWallVisualizer : AppearanceVisualizer + { + public override void OnChangeData(AppearanceComponent component) + { + base.OnChangeData(component); + + if (component.TryGetData(ReinforcedWallVisuals.DeconstructionStage, out int stage)) + { + SetDeconstructionStage(component, stage); + } + } + + public void SetDeconstructionStage(AppearanceComponent component, int stage) + { + var entity = component.Owner; + + if (!entity.TryGetComponent(out ISpriteComponent sprite)) return; + + if (stage < 0) + { + sprite.LayerSetVisible(ReinforcedWallVisualLayers.Deconstruction, false); + return; + } + + sprite.LayerSetVisible(ReinforcedWallVisualLayers.Deconstruction, true); + sprite.LayerSetState(ReinforcedWallVisualLayers.Deconstruction, $"reinf_construct-{stage}"); + } + } + + public enum ReinforcedWallVisualLayers + { + Deconstruction, + } +} diff --git a/Content.Client/GameObjects/Components/StackComponent.cs b/Content.Client/GameObjects/Components/StackComponent.cs index af5dfe3e8d..5fe8997604 100644 --- a/Content.Client/GameObjects/Components/StackComponent.cs +++ b/Content.Client/GameObjects/Components/StackComponent.cs @@ -11,6 +11,7 @@ using Robust.Shared.ViewVariables; namespace Content.Client.GameObjects.Components { [RegisterComponent] + [ComponentReference(typeof(SharedStackComponent))] public class StackComponent : SharedStackComponent, IItemStatus { [ViewVariables(VVAccess.ReadWrite)] private bool _uiUpdateNeeded; diff --git a/Content.Client/GameObjects/Components/WindowComponent.cs b/Content.Client/GameObjects/Components/WindowComponent.cs index b06ae08028..8587c2bcac 100644 --- a/Content.Client/GameObjects/Components/WindowComponent.cs +++ b/Content.Client/GameObjects/Components/WindowComponent.cs @@ -1,4 +1,5 @@ using Content.Client.GameObjects.EntitySystems; +using Content.Shared.GameObjects.Components; using Robust.Client.GameObjects; using Robust.Client.Interfaces.GameObjects.Components; using Robust.Shared.GameObjects; @@ -9,10 +10,9 @@ using static Content.Client.GameObjects.Components.IconSmoothing.IconSmoothCompo namespace Content.Client.GameObjects.Components { [RegisterComponent] - public sealed class WindowComponent : Component + [ComponentReference(typeof(SharedWindowComponent))] + public sealed class WindowComponent : SharedWindowComponent { - public override string Name => "Window"; - private string _stateBase; private ISpriteComponent _sprite; private SnapGridComponent _snapGrid; diff --git a/Content.Client/GameObjects/EntitySystems/ConstructionSystem.cs b/Content.Client/GameObjects/EntitySystems/ConstructionSystem.cs index 9003bf3ffe..022044cdc5 100644 --- a/Content.Client/GameObjects/EntitySystems/ConstructionSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/ConstructionSystem.cs @@ -5,6 +5,7 @@ using Content.Client.UserInterface; using Content.Shared.Construction; using Content.Shared.GameObjects.EntitySystems; using Content.Shared.Input; +using Content.Shared.Utility; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.GameObjects.EntitySystems; @@ -152,11 +153,20 @@ namespace Content.Client.GameObjects.EntitySystems /// public void SpawnGhost(ConstructionPrototype prototype, EntityCoordinates loc, Direction dir) { - if (GhostPresent(loc)) + var user = _playerManager.LocalPlayer?.ControlledEntity; + + // This InRangeUnobstructed should probably be replaced with "is there something blocking us in that tile?" + if (user == null || GhostPresent(loc) || !user.InRangeUnobstructed(loc, 20f, ignoreInsideBlocker:prototype.CanBuildInImpassable)) { return; } + foreach (var condition in prototype.Conditions) + { + if (!condition.Condition(user, loc, dir)) + return; + } + var ghost = _entityManager.SpawnEntity("constructionghost", loc); var comp = ghost.GetComponent(); comp.Prototype = prototype; @@ -204,7 +214,7 @@ namespace Content.Client.GameObjects.EntitySystems } /// - /// Removes a construction ghost entity with the given ID. + /// Removes a construction ghost entity with the given ID. /// public void ClearGhost(int ghostId) { @@ -214,5 +224,18 @@ namespace Content.Client.GameObjects.EntitySystems _ghosts.Remove(ghostId); } } + + /// + /// Removes all construction ghosts. + /// + public void ClearAllGhosts() + { + foreach (var (_, ghost) in _ghosts) + { + ghost.Owner.Delete(); + } + + _ghosts.Clear(); + } } } diff --git a/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs b/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs index 65327d4811..1f048e327f 100644 --- a/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs @@ -131,7 +131,12 @@ namespace Content.Client.GameObjects.EntitySystems.DoAfter if (doAfter.BreakOnTargetMove) { - var targetEntity = _entityManager.GetEntity(doAfter.TargetUid); + if (!_entityManager.TryGetEntity(doAfter.TargetUid, out var targetEntity)) + { + // Cancel if the target entity doesn't exist. + doAfterComponent.Cancel(id, currentTime); + continue; + } if (targetEntity.Transform.Coordinates != doAfter.TargetGrid) { diff --git a/Content.Client/IgnoredComponents.cs b/Content.Client/IgnoredComponents.cs index d2eaced93c..06119019a7 100644 --- a/Content.Client/IgnoredComponents.cs +++ b/Content.Client/IgnoredComponents.cs @@ -179,6 +179,8 @@ "Butcherable", "Rehydratable", "Headset", + "ComputerBoard", + "BreakableConstruction", }; } } diff --git a/Content.Server/Atmos/TileAtmosphere.cs b/Content.Server/Atmos/TileAtmosphere.cs index 33f0c790ad..0ed83e90be 100644 --- a/Content.Server/Atmos/TileAtmosphere.cs +++ b/Content.Server/Atmos/TileAtmosphere.cs @@ -819,9 +819,7 @@ namespace Content.Server.Atmos var tileRef = GridIndices.GetTileRef(GridIndex); - if (tileRef == null) return; - - foreach (var entity in tileRef?.GetEntitiesInTileFast(_gridTileLookupSystem)) + foreach (var entity in tileRef.GetEntitiesInTileFast(_gridTileLookupSystem)) { foreach (var fireAct in entity.GetAllComponents()) { diff --git a/Content.Server/Construction/Completions/BuildComputer.cs b/Content.Server/Construction/Completions/BuildComputer.cs new file mode 100644 index 0000000000..a377e48993 --- /dev/null +++ b/Content.Server/Construction/Completions/BuildComputer.cs @@ -0,0 +1,68 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Server.GameObjects.Components.Construction; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects.Components.Container; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Log; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class BuildComputer : IGraphAction + { + public string Container { get; private set; } = string.Empty; + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Container, "container", string.Empty); + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (!entity.TryGetComponent(out ContainerManagerComponent? containerManager)) + { + Logger.Warning($"Computer entity {entity} did not have a container manager! Aborting build computer action."); + return; + } + + if (!containerManager.TryGetContainer(Container, out var container)) + { + Logger.Warning($"Computer entity {entity} did not have the specified '{Container}' container! Aborting build computer action."); + return; + } + + if (container.ContainedEntities.Count != 1) + { + Logger.Warning($"Computer entity {entity} did not have exactly one item in the specified '{Container}' container! Aborting build computer action."); + } + + var board = container.ContainedEntities[0]; + + if (!board.TryGetComponent(out ComputerBoardComponent? boardComponent)) + { + Logger.Warning($"Computer entity {entity} had an invalid entity in container \"{Container}\"! Aborting build computer action."); + return; + } + + var entityManager = entity.EntityManager; + container.Remove(board); + + var computer = entityManager.SpawnEntity(boardComponent.Prototype, entity.Transform.Coordinates); + computer.Transform.LocalRotation = entity.Transform.LocalRotation; + + var computerContainer = ContainerManagerComponent.Ensure(Container, computer); + computerContainer.Insert(board); + + if (computer.TryGetComponent(out ConstructionComponent? construction)) + { + // We only add this container. If some construction needs to take other containers into account, fix this. + construction.AddContainer(Container); + } + + entity.Delete(); + } + } +} diff --git a/Content.Server/Construction/Completions/DeleteEntity.cs b/Content.Server/Construction/Completions/DeleteEntity.cs new file mode 100644 index 0000000000..02f5ac6c0e --- /dev/null +++ b/Content.Server/Construction/Completions/DeleteEntity.cs @@ -0,0 +1,24 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class DeleteEntity : IGraphAction + { + public void ExposeData(ObjectSerializer serializer) + { + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (entity.Deleted) return; + + entity.Delete(); + } + } +} diff --git a/Content.Server/Construction/Completions/EmptyContainer.cs b/Content.Server/Construction/Completions/EmptyContainer.cs new file mode 100644 index 0000000000..0ac5c16c91 --- /dev/null +++ b/Content.Server/Construction/Completions/EmptyContainer.cs @@ -0,0 +1,37 @@ +#nullable enable +using System.Linq; +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects.Components.Container; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class EmptyContainer : IGraphAction + { + public string Container { get; private set; } = string.Empty; + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Container, "container", string.Empty); + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (entity.Deleted) return; + + if (!entity.TryGetComponent(out ContainerManagerComponent? containerManager) || + !containerManager.TryGetContainer(Container, out var container)) return; + + foreach (var ent in container.ContainedEntities.ToArray()) + { + if (ent == null || ent.Deleted) continue; + container.ForceRemove(ent); + ent.Transform.Coordinates = entity.Transform.Coordinates; + } + } + } +} diff --git a/Content.Server/Construction/Completions/PlaySound.cs b/Content.Server/Construction/Completions/PlaySound.cs new file mode 100644 index 0000000000..f55e5eae1c --- /dev/null +++ b/Content.Server/Construction/Completions/PlaySound.cs @@ -0,0 +1,39 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Audio; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects.EntitySystems; +using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class PlaySound : IGraphAction + { + public string SoundCollection { get; private set; } = string.Empty; + public string Sound { get; private set; } = string.Empty; + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Sound, "sound", string.Empty); + serializer.DataField(this, x => x.SoundCollection, "soundCollection", string.Empty); + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + var sound = GetSound(); + + if (string.IsNullOrEmpty(sound)) return; + + EntitySystem.Get().PlayFromEntity(sound, entity, AudioHelpers.WithVariation(0.125f)); + } + + private string GetSound() + { + return !string.IsNullOrEmpty(SoundCollection) ? AudioHelpers.GetRandomFileFromSoundCollection(SoundCollection) : Sound; + } + } +} diff --git a/Content.Server/Construction/Completions/PopupUser.cs b/Content.Server/Construction/Completions/PopupUser.cs new file mode 100644 index 0000000000..433058ca20 --- /dev/null +++ b/Content.Server/Construction/Completions/PopupUser.cs @@ -0,0 +1,33 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using Content.Shared.Interfaces; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class PopupUser : IGraphAction + { + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Text, "text", string.Empty); + serializer.DataField(this, x => x.Cursor, "cursor", false); + } + + public bool Cursor { get; private set; } = false; + public string Text { get; private set; } = string.Empty; + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (user == null) return; + + if(Cursor) + user.PopupMessageCursor(Text); + else + entity.PopupMessage(user, Text); + } + } +} diff --git a/Content.Server/Construction/Completions/SetAnchor.cs b/Content.Server/Construction/Completions/SetAnchor.cs new file mode 100644 index 0000000000..b9bc397837 --- /dev/null +++ b/Content.Server/Construction/Completions/SetAnchor.cs @@ -0,0 +1,28 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class SetAnchor : IGraphAction + { + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Value, "value", true); + } + + public bool Value { get; private set; } = true; + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (!entity.TryGetComponent(out CollidableComponent? collidable)) return; + + collidable.Anchored = Value; + } + } +} diff --git a/Content.Server/Construction/Completions/SnapToGrid.cs b/Content.Server/Construction/Completions/SnapToGrid.cs new file mode 100644 index 0000000000..d44e7a1392 --- /dev/null +++ b/Content.Server/Construction/Completions/SnapToGrid.cs @@ -0,0 +1,29 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Server.Utility; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class SnapToGrid : IGraphAction + { + public SnapGridOffset Offset { get; private set; } = SnapGridOffset.Center; + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Offset, "offset", SnapGridOffset.Center); + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (entity.Deleted) return; + + entity.SnapToGrid(Offset); + } + } +} diff --git a/Content.Server/Construction/Completions/SpawnPrototype.cs b/Content.Server/Construction/Completions/SpawnPrototype.cs new file mode 100644 index 0000000000..0752b83c26 --- /dev/null +++ b/Content.Server/Construction/Completions/SpawnPrototype.cs @@ -0,0 +1,36 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class SpawnPrototype : IGraphAction + { + public string Prototype { get; private set; } = string.Empty; + public int Amount { get; private set; } = 1; + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Prototype, "prototype", string.Empty); + serializer.DataField(this, x => x.Amount, "amount", 1); + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (entity.Deleted || string.IsNullOrEmpty(Prototype)) return; + + var entityManager = IoCManager.Resolve(); + var coordinates = entity.Transform.Coordinates; + + for (var i = 0; i < Amount; i++) + { + entityManager.SpawnEntity(Prototype, coordinates); + } + } + } +} diff --git a/Content.Server/Construction/Completions/SpriteChange.cs b/Content.Server/Construction/Completions/SpriteChange.cs new file mode 100644 index 0000000000..490eec0a73 --- /dev/null +++ b/Content.Server/Construction/Completions/SpriteChange.cs @@ -0,0 +1,33 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class SpriteChange : IGraphAction + { + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.SpriteSpecifier, "specifier", SpriteSpecifier.Invalid); + serializer.DataField(this, x => x.Layer, "layer", 0); + } + + public int Layer { get; private set; } = 0; + public SpriteSpecifier? SpriteSpecifier { get; private set; } = SpriteSpecifier.Invalid; + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (entity.Deleted || SpriteSpecifier == null || SpriteSpecifier == SpriteSpecifier.Invalid) return; + + if (!entity.TryGetComponent(out SpriteComponent? sprite)) return; + + sprite.LayerSetSprite(Layer, SpriteSpecifier); + } + } +} diff --git a/Content.Server/Construction/Completions/SpriteStateChange.cs b/Content.Server/Construction/Completions/SpriteStateChange.cs new file mode 100644 index 0000000000..060dd76e2e --- /dev/null +++ b/Content.Server/Construction/Completions/SpriteStateChange.cs @@ -0,0 +1,39 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class SpriteStateChange : IGraphAction + { + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.State, "state", string.Empty); + serializer.DataField(this, x => x.Layer, "layer", 0); + } + + public int Layer { get; private set; } = 0; + public string? State { get; private set; } = string.Empty; + + public async Task StepCompleted(IEntity entity, IEntity user) + { + await PerformAction(entity, user); + } + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (entity.Deleted || string.IsNullOrEmpty(State)) return; + + if (!entity.TryGetComponent(out SpriteComponent? sprite)) return; + + sprite.LayerSetState(Layer, State); + } + } +} diff --git a/Content.Server/Construction/Completions/VisualizerDataInt.cs b/Content.Server/Construction/Completions/VisualizerDataInt.cs new file mode 100644 index 0000000000..6dd6138f33 --- /dev/null +++ b/Content.Server/Construction/Completions/VisualizerDataInt.cs @@ -0,0 +1,49 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Reflection; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Completions +{ + [UsedImplicitly] + public class VisualizerDataInt : IGraphAction + { + [Dependency] private readonly IReflectionManager _reflectionManager = default!; + + public VisualizerDataInt() + { + IoCManager.InjectDependencies(this); + } + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Key, "key", string.Empty); + serializer.DataField(this, x => x.Data, "data", 0); + } + + public string? Key { get; private set; } = string.Empty; + public int Data { get; private set; } = 0; + + public async Task PerformAction(IEntity entity, IEntity? user) + { + if (string.IsNullOrEmpty(Key)) return; + + if (entity.TryGetComponent(out AppearanceComponent? appearance)) + { + if(_reflectionManager.TryParseEnumReference(Key, out var @enum)) + { + appearance.SetData(@enum, Data); + } + else + { + appearance.SetData(Key, Data); + } + } + } + } +} diff --git a/Content.Server/Construction/Conditions/ComponentInTile.cs b/Content.Server/Construction/Conditions/ComponentInTile.cs new file mode 100644 index 0000000000..2f2c717f04 --- /dev/null +++ b/Content.Server/Construction/Conditions/ComponentInTile.cs @@ -0,0 +1,61 @@ +using System.Threading.Tasks; +using Content.Shared.Construction; +using Content.Shared.Maps; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Map; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; + +namespace Content.Server.Construction.Conditions +{ + /// + /// Makes the condition fail if any entities on a tile have (or not) a component. + /// + [UsedImplicitly] + public class ComponentInTile : IEdgeCondition + { + [Dependency] private readonly IComponentFactory _componentFactory = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + + public ComponentInTile() + { + IoCManager.InjectDependencies(this); + } + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Component, "component", string.Empty); + serializer.DataField(this, x => x.HasEntity, "hasEntity", true); + } + + /// + /// If true, any entity on the tile must have the component. + /// If false, no entity on the tile must have the component. + /// + public bool HasEntity { get; private set; } + + /// + /// The component name in question. + /// + public string Component { get; private set; } + + public async Task Condition(IEntity entity) + { + if (string.IsNullOrEmpty(Component)) return false; + + var type = _componentFactory.GetRegistration(Component).Type; + + var indices = entity.Transform.Coordinates.ToMapIndices(entity.EntityManager, _mapManager); + var entities = indices.GetEntitiesInTile(entity.Transform.GridID, true, entity.EntityManager); + + foreach (var ent in entities) + { + if (ent.HasComponent(type)) + return HasEntity; + } + + return !HasEntity; + } + } +} diff --git a/Content.Server/Construction/Conditions/ContainerEmpty.cs b/Content.Server/Construction/Conditions/ContainerEmpty.cs new file mode 100644 index 0000000000..5f13c89e3f --- /dev/null +++ b/Content.Server/Construction/Conditions/ContainerEmpty.cs @@ -0,0 +1,41 @@ +#nullable enable +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Server.GameObjects.Components.Container; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Construction.Conditions +{ + [UsedImplicitly] + public class ContainerEmpty : IEdgeCondition + { + public string Container { get; private set; } = string.Empty; + public string Text { get; private set; } = string.Empty; + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Container, "container", string.Empty); + serializer.DataField(this, x => x.Text, "text", string.Empty); + } + + public async Task Condition(IEntity entity) + { + if (!entity.TryGetComponent(out ContainerManagerComponent? containerManager) || + !containerManager.TryGetContainer(Container, out var container)) return true; + + return container.ContainedEntities.Count == 0; + } + + public void DoExamine(IEntity entity, FormattedMessage message, bool inDetailsRange) + { + if (!entity.TryGetComponent(out ContainerManagerComponent? containerManager) || + !containerManager.TryGetContainer(Container, out var container)) return; + + if (container.ContainedEntities.Count != 0) + message.AddMarkup(Text); + } + } +} diff --git a/Content.Server/Construction/Conditions/EntityAnchored.cs b/Content.Server/Construction/Conditions/EntityAnchored.cs new file mode 100644 index 0000000000..67ed5643cd --- /dev/null +++ b/Content.Server/Construction/Conditions/EntityAnchored.cs @@ -0,0 +1,39 @@ +using System.Threading.Tasks; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Shared.GameObjects.Components; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Construction.Conditions +{ + [UsedImplicitly] + public class EntityAnchored : IEdgeCondition + { + public bool Anchored { get; private set; } + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Anchored, "anchored", true); + } + + public async Task Condition(IEntity entity) + { + if (!entity.TryGetComponent(out ICollidableComponent collidable)) return false; + + return collidable.Anchored == Anchored; + } + + public void DoExamine(IEntity entity, FormattedMessage message, bool inDetailsRange) + { + if (!entity.TryGetComponent(out ICollidableComponent collidable)) return; + + if(Anchored && !collidable.Anchored) + message.AddMarkup("First, anchor it.\n"); + + if(!Anchored && collidable.Anchored) + message.AddMarkup("First, unanchor it.\n"); + } + } +} diff --git a/Content.Server/Construction/Conditions/WirePanel.cs b/Content.Server/Construction/Conditions/WirePanel.cs new file mode 100644 index 0000000000..6a4b1d5bbb --- /dev/null +++ b/Content.Server/Construction/Conditions/WirePanel.cs @@ -0,0 +1,40 @@ +using System.Threading.Tasks; +using Content.Server.GameObjects.Components; +using Content.Shared.Construction; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Server.Construction.Conditions +{ + [UsedImplicitly] + public class WirePanel : IEdgeCondition + { + public bool Open { get; private set; } + + public void ExposeData(ObjectSerializer serializer) + { + serializer.DataField(this, x => x.Open, "open", true); + } + + public async Task Condition(IEntity entity) + { + if (!entity.TryGetComponent(out WiresComponent wires)) return false; + + return wires.IsPanelOpen == Open; + } + + public void DoExamine(IEntity entity, FormattedMessage message, bool inDetailsRange) + { + if (!entity.TryGetComponent(out WiresComponent wires)) return; + + if(Open && !wires.IsPanelOpen) + message.AddMarkup(Loc.GetString("First, open the maintenance panel.\n")); + + if(!Open && wires.IsPanelOpen) + message.AddMarkup(Loc.GetString("First, close the maintenance panel.\n")); + } + } +} diff --git a/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs b/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs index 20b59f61e2..ac27c209b4 100644 --- a/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs +++ b/Content.Server/GameObjects/Components/Access/IdCardConsoleComponent.cs @@ -26,7 +26,7 @@ namespace Content.Server.GameObjects.Components.Access { [RegisterComponent] [ComponentReference(typeof(IActivate))] - public class IdCardConsoleComponent : SharedIdCardConsoleComponent, IActivate, IInteractUsing + public class IdCardConsoleComponent : SharedIdCardConsoleComponent, IActivate, IInteractUsing, IBreakAct { [Dependency] private readonly IPrototypeManager _prototypeManager = default!; @@ -307,6 +307,15 @@ namespace Content.Server.GameObjects.Components.Access } } + public void OnBreak(BreakageEventArgs eventArgs) + { + var privileged = _privilegedIdContainer.ContainedEntity; + if (privileged != null) + _privilegedIdContainer.Remove(privileged); + var target = _targetIdContainer.ContainedEntity; + if (target != null) + _targetIdContainer.Remove(target); + } } } diff --git a/Content.Server/GameObjects/Components/AnchorableComponent.cs b/Content.Server/GameObjects/Components/AnchorableComponent.cs index 446b9f5abc..e5efe4e656 100644 --- a/Content.Server/GameObjects/Components/AnchorableComponent.cs +++ b/Content.Server/GameObjects/Components/AnchorableComponent.cs @@ -7,6 +7,7 @@ using Content.Shared.Interfaces.GameObjects.Components; using Robust.Shared.GameObjects; using Robust.Shared.GameObjects.Components; using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; using Robust.Shared.ViewVariables; namespace Content.Server.GameObjects.Components @@ -16,6 +17,15 @@ namespace Content.Server.GameObjects.Components { public override string Name => "Anchorable"; + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + serializer.DataField(this, x => x.Tool, "tool", ToolQuality.Anchoring); + } + + [ViewVariables] + public ToolQuality Tool { get; private set; } = ToolQuality.Anchoring; + [ViewVariables] int IInteractUsing.Priority => 1; @@ -37,7 +47,7 @@ namespace Content.Server.GameObjects.Components { if (utilizing == null || !utilizing.TryGetComponent(out ToolComponent? tool) || - !(await tool.UseTool(user, Owner, 0.5f, ToolQuality.Anchoring))) + !(await tool.UseTool(user, Owner, 0.5f, Tool))) { return false; } diff --git a/Content.Server/GameObjects/Components/Atmos/FirelockComponent.cs b/Content.Server/GameObjects/Components/Atmos/FirelockComponent.cs index 6ef8768e37..648e28551b 100644 --- a/Content.Server/GameObjects/Components/Atmos/FirelockComponent.cs +++ b/Content.Server/GameObjects/Components/Atmos/FirelockComponent.cs @@ -73,7 +73,7 @@ namespace Content.Server.GameObjects.Components.Atmos public override bool CanClose(IEntity user) => true; public override bool CanOpen(IEntity user) => CanOpen(); - public async Task InteractUsing(InteractUsingEventArgs eventArgs) + public override async Task InteractUsing(InteractUsingEventArgs eventArgs) { if (!eventArgs.Using.TryGetComponent(out var tool)) return false; diff --git a/Content.Server/GameObjects/Components/Construction/ComputerBoardComponent.cs b/Content.Server/GameObjects/Components/Construction/ComputerBoardComponent.cs new file mode 100644 index 0000000000..5289e11f45 --- /dev/null +++ b/Content.Server/GameObjects/Components/Construction/ComputerBoardComponent.cs @@ -0,0 +1,22 @@ +using Robust.Shared.GameObjects; +using Robust.Shared.Serialization; +using Robust.Shared.ViewVariables; + +namespace Content.Server.GameObjects.Components.Construction +{ + [RegisterComponent] + public class ComputerBoardComponent : Component + { + public override string Name => "ComputerBoard"; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Prototype, "prototype", string.Empty); + } + + [ViewVariables] + public string Prototype { get; private set; } + } +} diff --git a/Content.Server/GameObjects/Components/Construction/ConstructionComponent.cs b/Content.Server/GameObjects/Components/Construction/ConstructionComponent.cs index d29c7d93c9..ee8bde1a77 100644 --- a/Content.Server/GameObjects/Components/Construction/ConstructionComponent.cs +++ b/Content.Server/GameObjects/Components/Construction/ConstructionComponent.cs @@ -1,49 +1,545 @@ -using Content.Shared.Construction; +#nullable enable +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Threading.Tasks; +using Content.Server.GameObjects.Components.Interactable; +using Content.Server.GameObjects.Components.Stack; +using Content.Server.GameObjects.EntitySystems.DoAfter; +using Content.Shared.Construction; +using Content.Shared.GameObjects.Components.Interactable; using Content.Shared.GameObjects.EntitySystems; +using Content.Shared.Interfaces.GameObjects.Components; +using Robust.Server.GameObjects.Components.Container; +using Robust.Server.GameObjects.EntitySystems; using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components; using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; +using Robust.Shared.Localization; +using Robust.Shared.Log; +using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Utility; using Robust.Shared.ViewVariables; namespace Content.Server.GameObjects.Components.Construction { - /// - /// Holds data about an entity that is in the process of being constructed or destructed. - /// [RegisterComponent] - public class ConstructionComponent : Component, IExamine + public class ConstructionComponent : Component, IExamine, IInteractUsing { - /// + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IComponentFactory _componentFactory = default!; + public override string Name => "Construction"; - /// - /// The current construction recipe being used to build this entity. - /// - [ViewVariables] - public ConstructionPrototype Prototype { get; set; } + private bool _handling = false; + + private TaskCompletionSource? _handlingTask = null; + private string _graphIdentifier = string.Empty; + private string _startingNodeIdentifier = string.Empty; - /// - /// The current stage of construction. - /// [ViewVariables] - public int Stage { get; set; } + private HashSet _containers = new HashSet(); + [ViewVariables] + private List>? _edgeNestedStepProgress = null; + + private ConstructionGraphNode? _target = null; + + [ViewVariables] + public ConstructionGraphPrototype GraphPrototype { get; private set; } = null!; + + [ViewVariables] + public ConstructionGraphNode Node { get; private set; } = null!; + + [ViewVariables] + public ConstructionGraphEdge? Edge { get; private set; } = null; + + public IReadOnlyCollection Containers => _containers; + + [ViewVariables] + public ConstructionGraphNode? Target + { + get => _target; + set + { + ClearTarget(); + _target = value; + UpdateTarget(); + } + } + + [ViewVariables] + public ConstructionGraphEdge? TargetNextEdge { get; private set; } = null; + + [ViewVariables] + public Queue? TargetPathfinding { get; private set; } = null; + + [ViewVariables] + public int EdgeStep { get; private set; } = 0; /// public override void ExposeData(ObjectSerializer serializer) { base.ExposeData(serializer); - serializer.DataReadWriteFunction("prototype", null, - value => Prototype = value, () => Prototype); + serializer.DataField(ref _graphIdentifier, "graph", string.Empty); + serializer.DataField(ref _startingNodeIdentifier, "node", string.Empty); + } - serializer.DataReadWriteFunction("stage", 0, - value => Stage = value, () => Stage); + public void ClearTarget() + { + _target = null; + TargetNextEdge = null; + TargetPathfinding = null; + } + + public void UpdateTarget() + { + // Can't pathfind without a target. + if (Target == null) return; + + // If we're at our target, stop pathfinding. + if (Target == Node) + { + ClearTarget(); + return; + } + + // If we don't have the path, set it! + if (TargetPathfinding == null) + { + var path = GraphPrototype.Path(Node.Name, Target.Name); + + if (path == null) + { + ClearTarget(); + return; + } + + TargetPathfinding = new Queue(path); + } + + // Dequeue the pathfinding queue if the next is the node we're at. + if (TargetPathfinding.Peek() == Node) + TargetPathfinding.Dequeue(); + + // If we went the wrong way, we stop pathfinding. + if (Edge != null && TargetNextEdge != Edge) + { + ClearTarget(); + return; + } + + // Let's set the next target edge. + if (Edge == null && TargetNextEdge == null) + TargetNextEdge = Node.GetEdge(TargetPathfinding.Peek().Name); + } + + public async Task InteractUsing(InteractUsingEventArgs eventArgs) + { + if (_handling) + return true; + + _handlingTask = new TaskCompletionSource(); + _handling = true; + bool result; + + if (Edge == null) + result = await HandleNode(eventArgs); + else + result = await HandleEdge(eventArgs); + + _handling = false; + _handlingTask.SetResult(null!); + + return result; + } + + private async Task HandleNode(InteractUsingEventArgs eventArgs) + { + EdgeStep = 0; + + foreach (var edge in Node.Edges) + { + if(edge.Steps.Count == 0) + throw new InvalidDataException($"Edge to \"{edge.Target}\" in node \"{Node.Name}\" of graph \"{GraphPrototype.ID}\" doesn't have any steps!"); + + var firstStep = edge.Steps[0]; + switch (firstStep) + { + case MaterialConstructionGraphStep _: + case ToolConstructionGraphStep _: + case PrototypeConstructionGraphStep _: + case ComponentConstructionGraphStep _: + if (await HandleStep(eventArgs, edge, firstStep)) + { + if(edge.Steps.Count > 1) + Edge = edge; + return true; + } + break; + + case NestedConstructionGraphStep nestedStep: + throw new IndexOutOfRangeException($"Nested construction step not supported as the first step in an edge! Graph: {GraphPrototype.ID} Node: {Node.Name} Edge: {edge.Target}"); + } + } + + return false; + } + + private async Task HandleStep(InteractUsingEventArgs eventArgs, ConstructionGraphEdge? edge = null, ConstructionGraphStep? step = null, bool nested = false) + { + edge ??= Edge; + step ??= edge?.Steps[EdgeStep]; + + if (edge == null || step == null) + return false; + + foreach (var condition in edge.Conditions) + { + if (!await condition.Condition(Owner)) return false; + } + + var handled = false; + + var doAfterSystem = EntitySystem.Get(); + + var doAfterArgs = new DoAfterEventArgs(eventArgs.User, step.DoAfter, default, eventArgs.Target) + { + BreakOnDamage = false, + BreakOnStun = true, + BreakOnTargetMove = true, + BreakOnUserMove = true, + NeedHand = true, + }; + + switch (step) + { + case ToolConstructionGraphStep toolStep: + // Gotta take welder fuel into consideration. + if (toolStep.Tool == ToolQuality.Welding) + { + if (eventArgs.Using.TryGetComponent(out WelderComponent? welder) && + await welder.UseTool(eventArgs.User, Owner, step.DoAfter, toolStep.Tool, toolStep.Fuel)) + { + handled = true; + } + break; + } + + if (eventArgs.Using.TryGetComponent(out ToolComponent? tool) && + await tool.UseTool(eventArgs.User, Owner, step.DoAfter, toolStep.Tool)) + { + handled = true; + } + break; + + // To prevent too much code duplication. + case EntityInsertConstructionGraphStep insertStep: + var valid = false; + var entityUsing = eventArgs.Using; + + switch (insertStep) + { + case PrototypeConstructionGraphStep prototypeStep: + if (prototypeStep.EntityValid(eventArgs.Using) + && await doAfterSystem.DoAfter(doAfterArgs) == DoAfterStatus.Finished) + { + valid = true; + } + + break; + + case ComponentConstructionGraphStep componentStep: + if (componentStep.EntityValid(eventArgs.Using) + && await doAfterSystem.DoAfter(doAfterArgs) == DoAfterStatus.Finished) + { + valid = true; + } + + break; + + case MaterialConstructionGraphStep materialStep: + if (materialStep.EntityValid(eventArgs.Using, out var sharedStack) + && await doAfterSystem.DoAfter(doAfterArgs) == DoAfterStatus.Finished) + { + var stack = (StackComponent) sharedStack; + valid = stack.Split(materialStep.Amount, eventArgs.User.Transform.Coordinates, out entityUsing); + } + + break; + } + + if (!valid || entityUsing == null) break; + + if(string.IsNullOrEmpty(insertStep.Store)) + { + entityUsing.Delete(); + } + else + { + _containers.Add(insertStep.Store); + var container = ContainerManagerComponent.Ensure(insertStep.Store, Owner); + container.Insert(entityUsing); + } + + handled = true; + + break; + + case NestedConstructionGraphStep nestedStep: + if(_edgeNestedStepProgress == null) + _edgeNestedStepProgress = new List>(nestedStep.Steps); + + foreach (var list in _edgeNestedStepProgress.ToArray()) + { + if (list.Count == 0) + { + _edgeNestedStepProgress.Remove(list); + continue; + } + + if (!await HandleStep(eventArgs, edge, list[0], true)) continue; + + list.RemoveAt(0); + + // We check again... + if (list.Count == 0) + _edgeNestedStepProgress.Remove(list); + } + + if (_edgeNestedStepProgress.Count == 0) + handled = true; + + break; + } + + if (handled) + { + foreach (var completed in step.Completed) + { + await completed.PerformAction(Owner, eventArgs.User); + + if (Owner.Deleted) + return false; + } + } + + if (nested && handled) return true; + if (!handled) return false; + + EdgeStep++; + + if (edge.Steps.Count == EdgeStep) + { + await HandleCompletion(edge, eventArgs.User); + } + + UpdateTarget(); + + return true; + } + + private async Task HandleCompletion(ConstructionGraphEdge edge, IEntity user) + { + if (edge.Steps.Count != EdgeStep) + { + return false; + } + + Edge = edge; + + UpdateTarget(); + + TargetNextEdge = null; + Edge = null; + Node = GraphPrototype.Nodes[edge.Target]; + + // Perform node actions! + foreach (var action in Node.Actions) + { + await action.PerformAction(Owner, user); + + if (Owner.Deleted) + return false; + } + + if (Target == Node) + ClearTarget(); + + foreach (var completed in edge.Completed) + { + await completed.PerformAction(Owner, user); + if (Owner.Deleted) return true; + } + + await HandleEntityChange(Node, user); + + return true; + } + + private async Task HandleEdge(InteractUsingEventArgs eventArgs) + { + if (Edge == null || EdgeStep >= Edge.Steps.Count) return false; + + return await HandleStep(eventArgs, Edge, Edge.Steps[EdgeStep]); + } + + private async Task HandleEntityChange(ConstructionGraphNode node, IEntity? user = null) + { + if (node.Entity == Owner.Prototype?.ID || string.IsNullOrEmpty(node.Entity)) return false; + + var entity = _entityManager.SpawnEntity(node.Entity, Owner.Transform.Coordinates); + + entity.Transform.LocalRotation = Owner.Transform.LocalRotation; + + if (entity.TryGetComponent(out ConstructionComponent? construction)) + { + if(construction.GraphPrototype != GraphPrototype) + throw new Exception($"New entity {node.Entity}'s graph {construction.GraphPrototype.ID} isn't the same as our graph {GraphPrototype.ID} on node {node.Name}!"); + + construction.Node = node; + construction.Target = Target; + construction._containers = new HashSet(_containers); + } + + if (Owner.TryGetComponent(out ContainerManagerComponent? containerComp)) + { + foreach (var container in _containers) + { + var otherContainer = ContainerManagerComponent.Ensure(container, entity); + var ourContainer = containerComp.GetContainer(container); + + foreach (var ent in ourContainer.ContainedEntities.ToArray()) + { + ourContainer.ForceRemove(ent); + otherContainer.Insert(ent); + } + } + } + + if (Owner.TryGetComponent(out CollidableComponent? collidable) && + entity.TryGetComponent(out CollidableComponent? otherCollidable)) + { + otherCollidable.Anchored = collidable.Anchored; + } + + Owner.Delete(); + + foreach (var action in node.Actions) + { + await action.PerformAction(entity, user); + + if (entity.Deleted) + return false; + } + + return true; + } + + public bool AddContainer(string id) + { + return _containers.Add(id); + } + + public override void Initialize() + { + base.Initialize(); + + if (string.IsNullOrEmpty(_graphIdentifier)) + { + Logger.Error($"Prototype {Owner.Prototype?.ID}'s construction component didn't have a graph identifier!"); + return; + } + + if (_prototypeManager.TryIndex(_graphIdentifier, out ConstructionGraphPrototype graph)) + { + GraphPrototype = graph; + + if (GraphPrototype.Nodes.TryGetValue(_startingNodeIdentifier, out var node)) + { + Node = node; + + foreach (var action in Node.Actions) + { + action.PerformAction(Owner, null); + + if (Owner.Deleted) + return; + } + } + else + { + Logger.Error($"Couldn't find node {_startingNodeIdentifier} in graph {_graphIdentifier} in construction component!"); + } + } + else + { + Logger.Error($"Couldn't find prototype {_graphIdentifier} in construction component!"); + } + } + + public async Task ChangeNode(string node) + { + var graphNode = GraphPrototype.Nodes[node]; + + if (_handling && _handlingTask?.Task != null) + await _handlingTask.Task; + + Edge = null; + Node = graphNode; + + foreach (var action in Node.Actions) + { + await action.PerformAction(Owner, null); + if (Owner.Deleted) + return; + } + + await HandleEntityChange(graphNode); } void IExamine.Examine(FormattedMessage message, bool inDetailsRange) { - EntitySystem.Get().DoExamine(message, Prototype, Stage, inDetailsRange); + if(Target != null) + message.AddMarkup(Loc.GetString("To create {0}...\n", Target.Name)); + + if (Edge == null && TargetNextEdge != null) + { + foreach (var condition in TargetNextEdge.Conditions) + { + condition.DoExamine(Owner, message, inDetailsRange); + } + + TargetNextEdge.Steps[0].DoExamine(message, inDetailsRange); + return; + } + + if (Edge != null) + { + foreach (var condition in Edge.Conditions) + { + condition.DoExamine(Owner, message, inDetailsRange); + } + } + + if (_edgeNestedStepProgress == null) + { + if(EdgeStep < Edge?.Steps.Count) + Edge.Steps[EdgeStep].DoExamine(message, inDetailsRange); + return; + } + + foreach (var list in _edgeNestedStepProgress) + { + if(list.Count == 0) continue; + + list[0].DoExamine(message, inDetailsRange); + } } } } diff --git a/Content.Server/GameObjects/Components/Damage/BreakableConstructionComponent.cs b/Content.Server/GameObjects/Components/Damage/BreakableConstructionComponent.cs new file mode 100644 index 0000000000..e6c415325b --- /dev/null +++ b/Content.Server/GameObjects/Components/Damage/BreakableConstructionComponent.cs @@ -0,0 +1,45 @@ +#nullable enable +using System; +using Content.Server.GameObjects.Components.Construction; +using Content.Shared.GameObjects.Components.Damage; +using Content.Shared.GameObjects.EntitySystems; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Systems; +using Robust.Shared.Serialization; + +namespace Content.Server.GameObjects.Components.Damage +{ + [RegisterComponent] + [ComponentReference(typeof(IDamageableComponent))] + public class BreakableConstructionComponent : RuinableComponent + { + private ActSystem _actSystem = default!; + + public override string Name => "BreakableConstruction"; + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Node, "node", string.Empty); + } + + public override void Initialize() + { + base.Initialize(); + + _actSystem = EntitySystem.Get(); + } + + public string Node { get; private set; } = string.Empty; + + protected override async void DestructionBehavior() + { + if (Owner.Deleted || !Owner.TryGetComponent(out ConstructionComponent? construction) || string.IsNullOrEmpty(Node)) return; + + _actSystem.HandleBreakage(Owner); + + await construction.ChangeNode(Node); + } + } +} diff --git a/Content.Server/GameObjects/Components/Damage/DestructibleComponent.cs b/Content.Server/GameObjects/Components/Damage/DestructibleComponent.cs index 194464ee61..c62cf921cf 100644 --- a/Content.Server/GameObjects/Components/Damage/DestructibleComponent.cs +++ b/Content.Server/GameObjects/Components/Damage/DestructibleComponent.cs @@ -26,7 +26,7 @@ namespace Content.Server.GameObjects.Components.Damage /// /// Entity spawned upon destruction. /// - public string SpawnOnDestroy { get; set; } + public string SpawnOnDestroy { get; private set; } void IDestroyAct.OnDestroy(DestructionEventArgs eventArgs) { @@ -39,7 +39,7 @@ namespace Content.Server.GameObjects.Components.Damage public override void ExposeData(ObjectSerializer serializer) { base.ExposeData(serializer); - serializer.DataField(this, d => d.SpawnOnDestroy, "spawnondestroy", string.Empty); + serializer.DataField(this, d => d.SpawnOnDestroy, "spawnOnDestroy", string.Empty); } public override void Initialize() diff --git a/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs b/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs index 84adb1fc23..8c8edaa9cc 100644 --- a/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs +++ b/Content.Server/GameObjects/Components/GUI/InventoryComponent.cs @@ -126,6 +126,17 @@ namespace Content.Server.GameObjects.Components.GUI base.OnRemove(); } + public IEnumerable GetAllHeldItems() + { + foreach (var (_, container) in _slotContainers) + { + foreach (var entity in container.ContainedEntities) + { + yield return entity; + } + } + } + /// /// Helper to get container name for specified slot on this component /// diff --git a/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/PoweredLightComponent.cs b/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/PoweredLightComponent.cs index 5e5c4a60a0..679d1096d2 100644 --- a/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/PoweredLightComponent.cs +++ b/Content.Server/GameObjects/Components/Power/ApcNetComponents/PowerReceiverUsers/PoweredLightComponent.cs @@ -4,7 +4,6 @@ using Content.Server.GameObjects.Components.GUI; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.MachineLinking; using Content.Server.GameObjects.Components.Mobs; -using Content.Server.GameObjects.EntitySystems; using Content.Shared.Damage; using Content.Shared.GameObjects.Components.Damage; using Content.Shared.Interfaces; @@ -56,21 +55,7 @@ namespace Content.Server.GameObjects.Components.Power.ApcNetComponents.PowerRece } } - public override void HandleMessage(ComponentMessage message, IComponent component) - { - base.HandleMessage(message, component); - - switch (message) - { - case BeginDeconstructCompMsg msg: - if (!msg.BlockDeconstruct && !(_lightBulbContainer.ContainedEntity is null)) - { - Owner.PopupMessage(msg.User, Loc.GetString("Remove the bulb.")); - msg.BlockDeconstruct = true; - } - break; - } - } + // TODO CONSTRUCTION make this use a construction graph public async Task InteractUsing(InteractUsingEventArgs eventArgs) { diff --git a/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs b/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs index b3ed01c606..2854c59ab7 100644 --- a/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs +++ b/Content.Server/GameObjects/Components/Recycling/RecyclerComponent.cs @@ -29,7 +29,7 @@ namespace Content.Server.GameObjects.Components.Recycling [Dependency] private readonly IEntityManager _entityManager = default!; public override string Name => "Recycler"; - + private List _intersecting = new List(); /// @@ -73,14 +73,7 @@ namespace Content.Server.GameObjects.Components.Recycling { prototype = null; - var constructionSystem = EntitySystem.Get(); - var entityId = entity.MetaData.EntityPrototype?.ID; - - if (entityId == null || - !constructionSystem.CraftRecipes.TryGetValue(entityId, out prototype)) - { - return false; - } + // TODO CONSTRUCTION fix this return Powered; } @@ -91,7 +84,7 @@ namespace Content.Server.GameObjects.Components.Recycling { _intersecting.Add(entity); } - + // TODO: Prevent collision with recycled items if (CanGib(entity)) { @@ -105,17 +98,7 @@ namespace Content.Server.GameObjects.Components.Recycling return; } - var constructionSystem = EntitySystem.Get(); - var recyclerPosition = Owner.Transform.MapPosition; - foreach (var stage in prototype.Stages) - { - if (!(stage.Forward is ConstructionStepMaterial step)) - { - continue; - } - - constructionSystem.SpawnIngredient(recyclerPosition, step); - } + // TODO CONSTRUCTION fix this entity.Delete(); } diff --git a/Content.Server/GameObjects/Components/Stack/StackComponent.cs b/Content.Server/GameObjects/Components/Stack/StackComponent.cs index 79c17b0489..dfb13c8ab8 100644 --- a/Content.Server/GameObjects/Components/Stack/StackComponent.cs +++ b/Content.Server/GameObjects/Components/Stack/StackComponent.cs @@ -1,10 +1,14 @@ -using System; +#nullable enable +using System; +using System.Diagnostics.CodeAnalysis; using System.Threading.Tasks; using Content.Shared.GameObjects.Components; using Content.Shared.GameObjects.EntitySystems; using Content.Shared.Interfaces; using Content.Shared.Interfaces.GameObjects.Components; using Robust.Shared.GameObjects; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.IoC; using Robust.Shared.Localization; using Robust.Shared.Map; using Robust.Shared.Timers; @@ -16,8 +20,11 @@ namespace Content.Server.GameObjects.Components.Stack // TODO: Naming and presentation and such could use some improvement. [RegisterComponent] + [ComponentReference(typeof(SharedStackComponent))] public class StackComponent : SharedStackComponent, IInteractUsing, IExamine { + [Dependency] private IEntityManager _entityManager = default!; + private bool _throwIndividually = false; public override int Count @@ -57,6 +64,33 @@ namespace Content.Server.GameObjects.Components.Stack return false; } + /// + /// Attempts to split this stack in two. + /// + /// amount the new stack will have + /// the position the new stack will spawn at + /// the new stack + /// + public bool Split(int amount, EntityCoordinates spawnPosition, [NotNullWhen(true)] out IEntity? stack) + { + if (Count >= amount) + { + Count -= amount; + + stack = _entityManager.SpawnEntity(Owner.Prototype?.ID, spawnPosition); + + if (stack.TryGetComponent(out StackComponent? stackComp)) + { + stackComp.Count = amount; + } + + return true; + } + + stack = null; + return false; + } + public async Task InteractUsing(InteractUsingEventArgs eventArgs) { if (eventArgs.Using.TryGetComponent(out var stack)) diff --git a/Content.Server/GameObjects/Components/WindowComponent.cs b/Content.Server/GameObjects/Components/WindowComponent.cs new file mode 100644 index 0000000000..1d4b78b7e5 --- /dev/null +++ b/Content.Server/GameObjects/Components/WindowComponent.cs @@ -0,0 +1,11 @@ +using Content.Shared.GameObjects.Components; +using Robust.Shared.GameObjects; + +namespace Content.Server.GameObjects.Components +{ + [RegisterComponent] + [ComponentReference(typeof(SharedWindowComponent))] + public class WindowComponent : SharedWindowComponent + { + } +} diff --git a/Content.Server/GameObjects/EntitySystems/Atmos/GasTileOverlaySystem.cs b/Content.Server/GameObjects/EntitySystems/Atmos/GasTileOverlaySystem.cs index f3392ea51c..5318126016 100644 --- a/Content.Server/GameObjects/EntitySystems/Atmos/GasTileOverlaySystem.cs +++ b/Content.Server/GameObjects/EntitySystems/Atmos/GasTileOverlaySystem.cs @@ -1,6 +1,7 @@ #nullable enable using System; using System.Collections.Generic; +using System.Linq; using System.Runtime.CompilerServices; using Content.Server.GameObjects.Components.Atmos; using Content.Shared.Atmos; @@ -286,7 +287,7 @@ namespace Content.Server.GameObjects.EntitySystems.Atmos gridAtmosComponents[gridId] = gam; } - foreach (var invalid in indices) + foreach (var invalid in indices.ToArray()) { var chunk = GetOrCreateChunk(gridId, invalid); diff --git a/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs b/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs index feb1508aae..60e9722ffb 100644 --- a/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/ConstructionSystem.cs @@ -1,29 +1,30 @@ -using System; +#nullable enable using System.Collections.Generic; +using System.IO; +using System.Linq; using System.Threading.Tasks; using Content.Server.GameObjects.Components.Construction; using Content.Server.GameObjects.Components.GUI; -using Content.Server.GameObjects.Components.Interactable; using Content.Server.GameObjects.Components.Items.Storage; using Content.Server.GameObjects.Components.Stack; +using Content.Server.GameObjects.EntitySystems.DoAfter; using Content.Shared.Construction; using Content.Shared.GameObjects.Components; -using Content.Shared.GameObjects.Components.Interactable; using Content.Shared.GameObjects.EntitySystems; -using Content.Shared.Interfaces.GameObjects.Components; +using Content.Shared.Interfaces; using Content.Shared.Utility; using JetBrains.Annotations; -using Robust.Server.GameObjects; -using Robust.Server.GameObjects.EntitySystems; -using Robust.Server.Interfaces.Player; +using Robust.Server.GameObjects.Components.Container; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; -using Robust.Shared.Interfaces.GameObjects.Components; +using Robust.Shared.Interfaces.Random; using Robust.Shared.IoC; -using Robust.Shared.Map; +using Robust.Shared.Localization; using Robust.Shared.Maths; +using Robust.Shared.Players; using Robust.Shared.Prototypes; -using Robust.Shared.Serialization; +using Robust.Shared.Timers; + namespace Content.Server.GameObjects.EntitySystems { @@ -33,548 +34,425 @@ namespace Content.Server.GameObjects.EntitySystems [UsedImplicitly] internal class ConstructionSystem : SharedConstructionSystem { + [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _robustRandom = default!; - private readonly Dictionary _craftRecipes = new Dictionary(); + private readonly Dictionary> _beingBuilt = new Dictionary>(); - public IReadOnlyDictionary CraftRecipes => _craftRecipes; - - /// public override void Initialize() { base.Initialize(); - foreach (var prototype in _prototypeManager.EnumeratePrototypes()) - { - _craftRecipes.Add(prototype.Result, prototype); - } - SubscribeNetworkEvent(HandleStartStructureConstruction); SubscribeNetworkEvent(HandleStartItemConstruction); - - SubscribeLocalEvent(HandleToolInteraction); } - private void HandleStartStructureConstruction(TryStartStructureConstructionMessage msg, EntitySessionEventArgs args) + private IEnumerable EnumerateNearby(IEntity user) { - var placingEnt = args.SenderSession.AttachedEntity; - var result = TryStartStructureConstruction(placingEnt, msg.Location, msg.PrototypeName, msg.Angle); - if (!result) return; - var responseMsg = new AckStructureConstructionMessage(msg.Ack); - var channel = ((IPlayerSession) args.SenderSession).ConnectedClient; - RaiseNetworkEvent(responseMsg, channel); - } - - private void HandleStartItemConstruction(TryStartItemConstructionMessage msg, EntitySessionEventArgs args) - { - var placingEnt = args.SenderSession.AttachedEntity; - TryStartItemConstruction(placingEnt, msg.PrototypeName); - } - - private async void HandleToolInteraction(AfterInteractMessage msg) - { - if(msg.Handled) - return; - - // You can only construct/deconstruct things within reach - if(!msg.CanReach) - return; - - var targetEnt = msg.Attacked; - var handEnt = msg.ItemInHand; - - // A tool has to interact with an entity. - if(targetEnt is null || handEnt is null) - return; - - if (!handEnt.InRangeUnobstructed(targetEnt, ignoreInsideBlocker: true)) - return; - - // Cannot deconstruct an entity with no prototype. - var targetPrototype = targetEnt.MetaData.EntityPrototype; - if (targetPrototype is null) - return; - - // the target entity is in the process of being constructed/deconstructed - if (msg.Attacked.TryGetComponent(out var constructComp)) + if (user.TryGetComponent(out HandsComponent? hands)) { - var result = await TryConstructEntity(constructComp, handEnt, msg.User); - - // TryConstructEntity may delete the existing entity - - msg.Handled = result; - } - else // try to start the deconstruction process - { - // A tool was not used on the entity. - if (!handEnt.TryGetComponent(out var toolComp)) - return; - - // no known recipe for entity - if (!_craftRecipes.TryGetValue(targetPrototype.ID, out var prototype)) - return; - - // there is a recipe, but it can't be deconstructed. - var lastStep = prototype.Stages[^1].Backward; - if (!(lastStep is ConstructionStepTool)) - return; - - // wrong tool - var caps = ((ConstructionStepTool) lastStep).ToolQuality; - if ((toolComp.Qualities & caps) == 0) - return; - - // ask around and see if the deconstruction prerequisites are satisfied - // (remove bulbs, approved access, open panels, etc) - var deconCompMsg = new BeginDeconstructCompMsg(msg.User); - targetEnt.SendMessage(null, deconCompMsg); - if(deconCompMsg.BlockDeconstruct) - return; - - var deconEntMsg = new BeginDeconstructEntityMsg(msg.User, handEnt, targetEnt); - RaiseLocalEvent(deconEntMsg); - if(deconEntMsg.BlockDeconstruct) - return; - - // --- GOOD TO GO --- - msg.Handled = true; - - // pop off the material and switch to frame - var targetEntPos = targetEnt.Transform.MapPosition; - if (prototype.Stages.Count <= 2) // there are no intermediate stages + foreach (var itemComponent in hands?.GetAllHeldItems()!) { - targetEnt.Delete(); - - SpawnIngredient(targetEntPos, prototype.Stages[(prototype.Stages.Count - 2)].Forward as ConstructionStepMaterial); - } - else // replace ent with intermediate - { - // Spawn frame - var frame = SpawnCopyTransform("structureconstructionframe", targetEnt.Transform); - var construction = frame.GetComponent(); - SetupComponent(construction, prototype); - construction.Stage = prototype.Stages.Count - 2; - SetupDeconIntermediateSprite(construction, prototype); - frame.Transform.LocalRotation = targetEnt.Transform.LocalRotation; - - if (targetEnt.Prototype.Components.TryGetValue("Item", out var itemProtoComp)) + if (itemComponent.Owner.TryGetComponent(out ServerStorageComponent? storage)) { - if(frame.HasComponent()) - frame.RemoveComponent(); - - var itemComp = frame.AddComponent(); - - var serializer = YamlObjectSerializer.NewReader(itemProtoComp); - itemComp.ExposeData(serializer); + foreach (var storedEntity in storage.StoredEntities!) + { + yield return storedEntity; + } } - ReplaceInContainerOrGround(targetEnt, frame); - - // remove target - targetEnt.Delete(); - - // spawn material - SpawnIngredient(targetEntPos, prototype.Stages[(prototype.Stages.Count-2)].Forward as ConstructionStepMaterial); + yield return itemComponent.Owner; } } + + if (user!.TryGetComponent(out InventoryComponent? inventory)) + { + foreach (var held in inventory.GetAllHeldItems()) + { + if (held.TryGetComponent(out ServerStorageComponent? storage)) + { + foreach (var storedEntity in storage.StoredEntities!) + { + yield return storedEntity; + } + } + + yield return held; + } + } + + foreach (var near in _entityManager.GetEntitiesInRange(user!, 2f, true)) + { + yield return near; + } } - private IEntity SpawnCopyTransform(string prototypeId, ITransformComponent toReplace) + private async Task Construct(IEntity user, string materialContainer, ConstructionGraphPrototype graph, ConstructionGraphEdge edge, ConstructionGraphNode targetNode) { - var frame = EntityManager.SpawnEntity(prototypeId, toReplace.MapPosition); - frame.Transform.WorldRotation = toReplace.WorldRotation; - frame.Transform.ParentUid = toReplace.ParentUid; - return frame; + // We need a place to hold our construction items! + var container = ContainerManagerComponent.Ensure(materialContainer, user, out var existed); + + if (existed) + { + user.PopupMessageCursor(Loc.GetString("You can't start another construction now!")); + return null; + } + + var containers = new Dictionary(); + + var doAfterTime = 0f; + + // HOLY SHIT THIS IS SOME HACKY CODE. + // But I'd rather do this shit than risk having collisions with other containers. + Container GetContainer(string name) + { + if (containers!.ContainsKey(name)) + return containers[name]; + + while (true) + { + var random = _robustRandom.Next(); + var c = ContainerManagerComponent.Ensure(random.ToString(), user!, out var existed); + + if (existed) continue; + + containers[name] = c; + return c; + } + } + + void FailCleanup() + { + foreach (var entity in container!.ContainedEntities.ToArray()) + { + container.Remove(entity); + } + + foreach (var cont in containers!.Values) + { + foreach (var entity in cont.ContainedEntities.ToArray()) + { + cont.Remove(entity); + } + } + + // If we don't do this, items are invisible for some fucking reason. Nice. + Timer.Spawn(1, ShutdownContainers); + } + + void ShutdownContainers() + { + container!.Shutdown(); + foreach (var c in containers!.Values.ToArray()) + { + c.Shutdown(); + } + } + + var failed = false; + + var steps = new List(); + + foreach (var step in edge.Steps) + { + doAfterTime += step.DoAfter; + + var handled = false; + + switch (step) + { + case MaterialConstructionGraphStep materialStep: + foreach (var entity in EnumerateNearby(user)) + { + if (!materialStep.EntityValid(entity, out var sharedStack)) + continue; + + var stack = (StackComponent) sharedStack; + + if (!stack.Split(materialStep.Amount, user.ToCoordinates(), out var newStack)) + continue; + + if (string.IsNullOrEmpty(materialStep.Store)) + { + if (!container.Insert(newStack)) + continue; + } + else if (!GetContainer(materialStep.Store).Insert(newStack)) + continue; + + handled = true; + break; + } + + break; + + case ComponentConstructionGraphStep componentStep: + foreach (var entity in EnumerateNearby(user)) + { + if (!componentStep.EntityValid(entity)) + continue; + + if (string.IsNullOrEmpty(componentStep.Store)) + { + if (!container.Insert(entity)) + continue; + } + else if (!GetContainer(componentStep.Store).Insert(entity)) + continue; + + handled = true; + break; + } + + break; + + case PrototypeConstructionGraphStep prototypeStep: + foreach (var entity in EnumerateNearby(user)) + { + if (!prototypeStep.EntityValid(entity)) + continue; + + if (string.IsNullOrEmpty(prototypeStep.Store)) + { + if (!container.Insert(entity)) + continue; + } + else if (!GetContainer(prototypeStep.Store).Insert(entity)) + { + continue; + } + + handled = true; + break; + } + + break; + } + + if (handled == false) + { + failed = true; + break; + } + + steps.Add(step); + } + + if (failed) + { + user.PopupMessageCursor(Loc.GetString("You don't have the materials to build that!")); + FailCleanup(); + return null; + } + + var doAfterSystem = Get(); + + var doAfterArgs = new DoAfterEventArgs(user, doAfterTime) + { + BreakOnDamage = true, + BreakOnStun = true, + BreakOnTargetMove = false, + BreakOnUserMove = true, + NeedHand = true, + }; + + if (await doAfterSystem.DoAfter(doAfterArgs) == DoAfterStatus.Cancelled) + { + FailCleanup(); + return null; + } + + var newEntity = _entityManager.SpawnEntity(graph.Nodes[edge.Target].Entity, user.Transform.Coordinates); + + // Yes, this should throw if it's missing the component. + var construction = newEntity.GetComponent(); + + // We attempt to set the pathfinding target. + construction.Target = targetNode; + + // We preserve the containers... + foreach (var (name, cont) in containers) + { + var newCont = ContainerManagerComponent.Ensure(name, newEntity); + + foreach (var entity in cont.ContainedEntities.ToArray()) + { + cont.ForceRemove(entity); + newCont.Insert(entity); + } + } + + // We now get rid of all them. + ShutdownContainers(); + + // We have step completed steps! + foreach (var step in steps) + { + foreach (var completed in step.Completed) + { + await completed.PerformAction(newEntity, user); + } + } + + // And we also have edge completed effects! + foreach (var completed in edge.Completed) + { + await completed.PerformAction(newEntity, user); + } + + return newEntity; } - private static void SetupDeconIntermediateSprite(ConstructionComponent constructionComponent, ConstructionPrototype prototype) + private async void HandleStartItemConstruction(TryStartItemConstructionMessage ev, EntitySessionEventArgs args) { - if(!constructionComponent.Owner.TryGetComponent(out var spriteComp)) - return; + var constructionPrototype = _prototypeManager.Index(ev.PrototypeName); + var constructionGraph = _prototypeManager.Index(constructionPrototype.Graph); + var startNode = constructionGraph.Nodes[constructionPrototype.StartNode]; + var targetNode = constructionGraph.Nodes[constructionPrototype.TargetNode]; + var pathFind = constructionGraph.Path(startNode.Name, targetNode.Name); - for (var i = prototype.Stages.Count - 1; i >= 0; i--) + var user = args.SenderSession.AttachedEntity; + + if (user == null || !ActionBlockerSystem.CanInteract(user)) return; + + if (!user.TryGetComponent(out HandsComponent? hands)) return; + + foreach (var condition in constructionPrototype.Conditions) { - if (prototype.Stages[i].Icon != null) + if (!condition.Condition(user, user.ToCoordinates(), Direction.South)) + return; + } + + if(pathFind == null) + throw new InvalidDataException($"Can't find path from starting node to target node in construction! Recipe: {ev.PrototypeName}"); + + var edge = startNode.GetEdge(pathFind[0].Name); + + if(edge == null) + throw new InvalidDataException($"Can't find edge from starting node to the next node in pathfinding! Recipe: {ev.PrototypeName}"); + + // No support for conditions here! + + foreach (var step in edge.Steps) + { + switch (step) { - spriteComp.AddLayerWithSprite(prototype.Stages[1].Icon); + case ToolConstructionGraphStep _: + case NestedConstructionGraphStep _: + throw new InvalidDataException("Invalid first step for construction recipe!"); + } + } + + var item = await Construct(user, "item_construction", constructionGraph, edge, targetNode); + + if(item != null && item.TryGetComponent(out ItemComponent? itemComp)) + hands.PutInHandOrDrop(itemComp); + } + + private async void HandleStartStructureConstruction(TryStartStructureConstructionMessage ev, EntitySessionEventArgs args) + { + var constructionPrototype = _prototypeManager.Index(ev.PrototypeName); + var constructionGraph = _prototypeManager.Index(constructionPrototype.Graph); + var startNode = constructionGraph.Nodes[constructionPrototype.StartNode]; + var targetNode = constructionGraph.Nodes[constructionPrototype.TargetNode]; + var pathFind = constructionGraph.Path(startNode.Name, targetNode.Name); + + var user = args.SenderSession.AttachedEntity; + + if (_beingBuilt.TryGetValue(args.SenderSession, out var set)) + { + if (!set.Add(ev.Ack)) + { + user.PopupMessageCursor(Loc.GetString("You are already building that!")); + return; + } + } + else + { + var newSet = new HashSet {ev.Ack}; + _beingBuilt[args.SenderSession] = newSet; + } + + foreach (var condition in constructionPrototype.Conditions) + { + if (!condition.Condition(user, ev.Location, ev.Angle.GetCardinalDir())) + { + Cleanup(); return; } } - spriteComp.AddLayerWithSprite(prototype.Icon); - } - - public void SpawnIngredient(MapCoordinates position, ConstructionStepMaterial lastStep) - { - if(lastStep is null) - return; - - var material = lastStep.Material; - var quantity = lastStep.Amount; - - var matEnt = EntityManager.SpawnEntity(MaterialPrototypes[material], position); - if (matEnt.TryGetComponent(out var stackComp)) + void Cleanup() { - stackComp.Count = quantity; - } - else - { - quantity--; // already spawned one above - while (quantity > 0) - { - EntityManager.SpawnEntity(MaterialPrototypes[material], position); - quantity--; - } - } - } - - private static readonly Dictionary MaterialPrototypes = - new Dictionary - { - { ConstructionStepMaterial.MaterialType.Cable, "CableStack1" }, - { ConstructionStepMaterial.MaterialType.Gold, "GoldStack1" }, - { ConstructionStepMaterial.MaterialType.Metal, "SteelSheet1" }, - { ConstructionStepMaterial.MaterialType.Glass, "GlassSheet1" } - }; - - private bool TryStartStructureConstruction(IEntity placingEnt, EntityCoordinates loc, string prototypeName, Angle angle) - { - var prototype = _prototypeManager.Index(prototypeName); - - if (!placingEnt.InRangeUnobstructed(loc, ignoreInsideBlocker: prototype.CanBuildInImpassable, popup: true)) - { - return false; + _beingBuilt[args.SenderSession].Remove(ev.Ack); } - if (prototype.Stages.Count < 2) - { - throw new InvalidOperationException($"Prototype '{prototypeName}' does not have enough stages."); - } - - var stage0 = prototype.Stages[0]; - if (!(stage0.Forward is ConstructionStepMaterial matStep)) - { - throw new NotImplementedException(); - } - - // Try to find the stack with the material in the user's hand. - if(!placingEnt.TryGetComponent(out var hands)) - { - return false; - }; - var activeHand = hands.GetActiveHand?.Owner; - if (activeHand == null) - { - return false; - } - - if (!activeHand.TryGetComponent(out StackComponent stack) || !MaterialStackValidFor(matStep, stack)) - { - return false; - } - - if (!stack.Use(matStep.Amount)) - { - return false; - } - - // OK WE'RE GOOD CONSTRUCTION STARTED. - Get().PlayAtCoords("/Audio/Items/deconstruct.ogg", loc); - if (prototype.Stages.Count == 2) - { - // Exactly 2 stages, so don't make an intermediate frame. - var ent = EntityManager.SpawnEntity(prototype.Result, loc); - ent.Transform.LocalRotation = angle; - } - else - { - var frame = EntityManager.SpawnEntity("structureconstructionframe", loc); - var construction = frame.GetComponent(); - SetupComponent(construction, prototype); - frame.Transform.LocalRotation = angle; - } - - return true; - } - - private void TryStartItemConstruction(IEntity placingEnt, string prototypeName) - { - if (!ActionBlockerSystem.CanInteract(placingEnt)) return; - - var prototype = _prototypeManager.Index(prototypeName); - - if (prototype.Stages.Count < 2) - { - throw new InvalidOperationException($"Prototype '{prototypeName}' does not have enough stages."); - } - - var stage0 = prototype.Stages[0]; - if (!(stage0.Forward is ConstructionStepMaterial matStep)) - { - throw new NotImplementedException(); - } - - // Try to find the stack with the material in the user's hand. - if (!placingEnt.TryGetComponent(out HandsComponent hands)) return; - - var activeHand = hands.GetActiveHand?.Owner; - if (activeHand == null) + if (user == null + || !ActionBlockerSystem.CanInteract(user) + || !user.TryGetComponent(out HandsComponent? hands) || hands.GetActiveHand == null + || !user.InRangeUnobstructed(ev.Location, ignoreInsideBlocker:constructionPrototype.CanBuildInImpassable)) { + Cleanup(); return; } - if (!activeHand.TryGetComponent(out StackComponent stack) || !MaterialStackValidFor(matStep, stack)) + if(pathFind == null) + throw new InvalidDataException($"Can't find path from starting node to target node in construction! Recipe: {ev.PrototypeName}"); + + var edge = startNode.GetEdge(pathFind[0].Name); + + if(edge == null) + throw new InvalidDataException($"Can't find edge from starting node to the next node in pathfinding! Recipe: {ev.PrototypeName}"); + + var valid = false; + var holding = hands.GetActiveHand?.Owner; + + if (holding == null) { + Cleanup(); return; } - if (!stack.Use(matStep.Amount)) + // No support for conditions here! + + foreach (var step in edge.Steps) { + switch (step) + { + case EntityInsertConstructionGraphStep entityInsert: + if (entityInsert.EntityValid(holding)) + valid = true; + break; + case ToolConstructionGraphStep _: + case NestedConstructionGraphStep _: + throw new InvalidDataException("Invalid first step for item recipe!"); + } + + if (valid) + break; + } + + if (!valid) + { + Cleanup(); return; } - // OK WE'RE GOOD CONSTRUCTION STARTED. - Get().PlayFromEntity("/Audio/Items/deconstruct.ogg", placingEnt); - if (prototype.Stages.Count == 2) + var structure = await Construct(user, (ev.Ack + constructionPrototype.GetHashCode()).ToString(), constructionGraph, edge, targetNode); + + if (structure == null) { - // Exactly 2 stages, so don't make an intermediate frame. - var ent = SpawnCopyTransform(prototype.Result, placingEnt.Transform); - hands.PutInHandOrDrop(ent.GetComponent()); - } - else - { - var frame = SpawnCopyTransform("structureconstructionframe", placingEnt.Transform); - var construction = frame.GetComponent(); - SetupComponent(construction, prototype); - - var finalPrototype = _prototypeManager.Index(prototype.Result); - if (finalPrototype.Components.TryGetValue("Item", out var itemProtoComp)) - { - if(frame.HasComponent()) - frame.RemoveComponent(); - - var itemComp = frame.AddComponent(); - - var serializer = YamlObjectSerializer.NewReader(itemProtoComp); - itemComp.ExposeData(serializer); - - hands.PutInHandOrDrop(itemComp); - } - } - } - - private async Task TryConstructEntity(ConstructionComponent constructionComponent, IEntity handTool, IEntity user) - { - var constructEntity = constructionComponent.Owner; - var spriteComponent = constructEntity.GetComponent(); - var transformComponent = constructEntity.GetComponent(); - - // default interaction check for AttackBy allows inside blockers, so we will check if its blocked if - // we're not allowed to build on impassable stuff - var constructPrototype = constructionComponent.Prototype; - if (constructPrototype.CanBuildInImpassable == false) - { - if (!user.InRangeUnobstructed(constructEntity, popup: true)) - return false; + Cleanup(); + return; } - var stage = constructPrototype.Stages[constructionComponent.Stage]; + structure.Transform.Coordinates = ev.Location; + structure.Transform.LocalRotation = ev.Angle; - if (await TryProcessStep(constructEntity, stage.Forward, handTool, user, transformComponent.Coordinates)) - { - constructionComponent.Stage++; - if (constructionComponent.Stage == constructPrototype.Stages.Count - 1) - { - // Oh boy we get to finish construction! - var ent = SpawnCopyTransform(constructPrototype.Result, transformComponent); - ent.Transform.LocalRotation = transformComponent.LocalRotation; + RaiseNetworkEvent(new AckStructureConstructionMessage(ev.Ack)); - ReplaceInContainerOrGround(constructEntity, ent); - - constructEntity.Delete(); - return true; - } - - stage = constructPrototype.Stages[constructionComponent.Stage]; - if (stage.Icon != null) - { - spriteComponent.LayerSetSprite(0, stage.Icon); - } - } - - else if (await TryProcessStep(constructEntity, stage.Backward, handTool, user, transformComponent.Coordinates)) - { - constructionComponent.Stage--; - stage = constructPrototype.Stages[constructionComponent.Stage]; - - // If forward needed a material, drop it - SpawnIngredient(constructEntity.Transform.MapPosition, stage.Forward as ConstructionStepMaterial); - - if (constructionComponent.Stage == 0) - { - // Deconstruction complete. - constructEntity.Delete(); - return true; - } - - if (stage.Icon != null) - { - spriteComponent.LayerSetSprite(0, stage.Icon); - } - } - - return true; - } - - private static void ReplaceInContainerOrGround(IEntity oldEntity, IEntity newEntity) - { - var parentEntity = oldEntity.Transform.Parent?.Owner; - if (!(parentEntity is null) && parentEntity.TryGetComponent(out var containerMan)) - { - if (containerMan.TryGetContainer(oldEntity, out var container)) - { - container.ForceRemove(oldEntity); - container.Insert(newEntity); - } - } - } - - private async Task TryProcessStep(IEntity constructEntity, ConstructionStep step, IEntity slapped, IEntity user, EntityCoordinates gridCoords) - { - if (step == null) - { - return false; - } - - var sound = EntitySystemManager.GetEntitySystem(); - - switch (step) - { - case ConstructionStepMaterial matStep: - if (!slapped.TryGetComponent(out StackComponent stack) - || !MaterialStackValidFor(matStep, stack) - || !stack.Use(matStep.Amount)) - { - return false; - } - if (matStep.Material == ConstructionStepMaterial.MaterialType.Cable) - sound.PlayAtCoords("/Audio/Items/zip.ogg", gridCoords); - else - sound.PlayAtCoords("/Audio/Items/deconstruct.ogg", gridCoords); - return true; - case ConstructionStepTool toolStep: - if (!slapped.TryGetComponent(out var tool)) - return false; - - // Handle welder manually since tool steps specify fuel amount needed, for some reason. - if (toolStep.ToolQuality.HasFlag(ToolQuality.Welding)) - return slapped.TryGetComponent(out var welder) - && await welder.UseTool(user, constructEntity, toolStep.DoAfterDelay, toolStep.ToolQuality, toolStep.Amount); - - return await tool.UseTool(user, constructEntity, toolStep.DoAfterDelay, toolStep.ToolQuality); - - default: - throw new NotImplementedException(); - } - } - - // Really this should check the actual materials at play.. - private static readonly Dictionary StackTypeMap - = new Dictionary - { - { StackType.Cable, ConstructionStepMaterial.MaterialType.Cable }, - { StackType.Gold, ConstructionStepMaterial.MaterialType.Gold }, - { StackType.Glass, ConstructionStepMaterial.MaterialType.Glass }, - { StackType.Metal, ConstructionStepMaterial.MaterialType.Metal } - }; - - private static bool MaterialStackValidFor(ConstructionStepMaterial step, StackComponent stack) - { - return StackTypeMap.TryGetValue((StackType)stack.StackType, out var should) && should == step.Material; - } - - private void SetupComponent(ConstructionComponent constructionComponent, ConstructionPrototype prototype) - { - constructionComponent.Prototype = prototype; - constructionComponent.Stage = 1; - var spriteComp = constructionComponent.Owner.GetComponent(); - if(prototype.Stages[1].Icon != null) - { - spriteComp.AddLayerWithSprite(prototype.Stages[1].Icon); - } - else - { - spriteComp.AddLayerWithSprite(prototype.Icon); - } - - var frame = constructionComponent.Owner; - var finalPrototype = _prototypeManager.Index(prototype.Result); - - frame.Name = $"Unfinished {finalPrototype.Name}"; - } - } - - /// - /// A system message that is raised when an entity is trying to be deconstructed. - /// - public class BeginDeconstructEntityMsg : EntitySystemMessage - { - /// - /// Entity that initiated the deconstruction. - /// - public IEntity User { get; } - - /// - /// Tool in the active hand of the user. - /// - public IEntity Hand { get; } - - /// - /// Target entity that is trying to be deconstructed. - /// - public IEntity Target { get; } - - /// - /// Set this to true if you would like to block the deconstruction from happening. - /// - public bool BlockDeconstruct { get; set; } - - /// - /// Constructs a new instance of . - /// - /// Entity that initiated the deconstruction. - /// Tool in the active hand of the user. - /// Target entity that is trying to be deconstructed. - public BeginDeconstructEntityMsg(IEntity user, IEntity hand, IEntity target) - { - User = user; - Hand = hand; - Target = target; - } - } - - /// - /// A component message that is raised when an entity is trying to be deconstructed. - /// - public class BeginDeconstructCompMsg : ComponentMessage - { - /// - /// Entity that initiated the deconstruction. - /// - public IEntity User { get; } - - /// - /// Set this to true if you would like to block the deconstruction from happening. - /// - public bool BlockDeconstruct { get; set; } - - /// - /// Constructs a new instance of . - /// - /// Entity that initiated the deconstruction. - public BeginDeconstructCompMsg(IEntity user) - { - User = user; + Cleanup(); } } } diff --git a/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs b/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs index 1383dfa8e8..9b758396a7 100644 --- a/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/DoAfter/DoAfterSystem.cs @@ -1,6 +1,7 @@ #nullable enable using System; using System.Collections.Generic; +using System.Linq; using System.Threading.Tasks; using Content.Server.GameObjects.Components; using Content.Shared.GameObjects.Components.Damage; @@ -27,7 +28,7 @@ namespace Content.Server.GameObjects.EntitySystems.DoAfter var cancelled = new List(0); var finished = new List(0); - foreach (var doAfter in comp.DoAfters) + foreach (var doAfter in comp.DoAfters.ToArray()) { doAfter.Run(frameTime); diff --git a/Content.Server/IgnoredComponents.cs b/Content.Server/IgnoredComponents.cs index 07d19f4887..59b7053ca7 100644 --- a/Content.Server/IgnoredComponents.cs +++ b/Content.Server/IgnoredComponents.cs @@ -10,7 +10,6 @@ "SubFloorHide", "LowWall", "ReinforcedWall", - "Window", "CharacterInfo", "InteractionOutline", "MeleeWeaponArcAnimation", diff --git a/Content.Server/Utility/SnapgridHelper.cs b/Content.Server/Utility/SnapgridHelper.cs new file mode 100644 index 0000000000..41bd5dfe9d --- /dev/null +++ b/Content.Server/Utility/SnapgridHelper.cs @@ -0,0 +1,43 @@ +using System; +using Robust.Shared.GameObjects; +using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Map; +using Robust.Shared.IoC; +using Robust.Shared.Map; +using Robust.Shared.Maths; + +namespace Content.Server.Utility +{ + public static class SnapgridHelper + { + public static void SnapToGrid(this IEntity entity, SnapGridOffset offset = SnapGridOffset.Center, IEntityManager entityManager = null, IMapManager mapManager = null) + { + entity.Transform.Coordinates = entity.Transform.Coordinates.SnapToGrid(offset, entityManager, mapManager); + } + + public static EntityCoordinates SnapToGrid(this EntityCoordinates coordinates, + SnapGridOffset offset = SnapGridOffset.Center, IEntityManager entityManager = null, IMapManager mapManager = null) + { + entityManager ??= IoCManager.Resolve(); + mapManager ??= IoCManager.Resolve(); + + var gridId = coordinates.GetGridId(entityManager); + + var tileSize = 1f; + + if (gridId.IsValid()) + { + var grid = mapManager.GetGrid(gridId); + tileSize = grid.TileSize; + } + + var localPos = coordinates.Position; + + var x = (int)Math.Floor(localPos.X / tileSize) + tileSize / (offset == SnapGridOffset.Center ? 2f : 0f); + var y = (int)Math.Floor(localPos.Y / tileSize) + tileSize / (offset == SnapGridOffset.Center ? 2f : 0f); + + return new EntityCoordinates(coordinates.EntityId, x, y); + } + } +} diff --git a/Content.Shared/Construction/ArbitraryInsertConstructionGraphStep.cs b/Content.Shared/Construction/ArbitraryInsertConstructionGraphStep.cs new file mode 100644 index 0000000000..2a0fbbe389 --- /dev/null +++ b/Content.Shared/Construction/ArbitraryInsertConstructionGraphStep.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + public abstract class ArbitraryInsertConstructionGraphStep : EntityInsertConstructionGraphStep + { + public string Name { get; private set; } + public SpriteSpecifier Icon { get; private set; } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Icon, "icon", SpriteSpecifier.Invalid); + serializer.DataField(this, x => x.Name, "name", string.Empty); + } + } +} diff --git a/Content.Shared/Construction/ComponentConstructionGraphStep.cs b/Content.Shared/Construction/ComponentConstructionGraphStep.cs new file mode 100644 index 0000000000..46ef6ac3f5 --- /dev/null +++ b/Content.Shared/Construction/ComponentConstructionGraphStep.cs @@ -0,0 +1,38 @@ +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + public class ComponentConstructionGraphStep : ArbitraryInsertConstructionGraphStep + { + public string Component { get; private set; } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Component, "component", string.Empty); + + } + + public override bool EntityValid(IEntity entity) + { + foreach (var component in entity.GetAllComponents()) + { + if (component.Name == Component) + return true; + } + + return false; + } + + public override void DoExamine(FormattedMessage message, bool inDetailsRange) + { + message.AddMarkup(string.IsNullOrEmpty(Name) + ? Loc.GetString("Next, insert an entity with a {0} component.", Component) // Terrible. + : Loc.GetString("Next, insert {0}", Name)); + } + } +} diff --git a/Content.Shared/Construction/ConstructionConditions/LowWallInTile.cs b/Content.Shared/Construction/ConstructionConditions/LowWallInTile.cs new file mode 100644 index 0000000000..4737cff0e6 --- /dev/null +++ b/Content.Shared/Construction/ConstructionConditions/LowWallInTile.cs @@ -0,0 +1,34 @@ +using System; +using Content.Shared.GameObjects.Components; +using Content.Shared.Maps; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Maths; +using Robust.Shared.Serialization; + +namespace Content.Shared.Construction.ConstructionConditions +{ + [UsedImplicitly] + public class LowWallInTile : IConstructionCondition + { + public void ExposeData(ObjectSerializer serializer) { } + + public bool Condition(IEntity user, EntityCoordinates location, Direction direction) + { + var lowWall = false; + + foreach (var entity in location.GetEntitiesInTile(true)) + { + if (entity.HasComponent()) + lowWall = true; + + // Already has a window. + if (entity.HasComponent()) + return false; + } + + return lowWall; + } + } +} diff --git a/Content.Shared/Construction/ConstructionConditions/NoWindowsInTile.cs b/Content.Shared/Construction/ConstructionConditions/NoWindowsInTile.cs new file mode 100644 index 0000000000..74e5eb34df --- /dev/null +++ b/Content.Shared/Construction/ConstructionConditions/NoWindowsInTile.cs @@ -0,0 +1,28 @@ +using System; +using Content.Shared.GameObjects.Components; +using Content.Shared.Maps; +using JetBrains.Annotations; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Map; +using Robust.Shared.Maths; +using Robust.Shared.Serialization; + +namespace Content.Shared.Construction.ConstructionConditions +{ + [UsedImplicitly] + public class NoWindowsInTile : IConstructionCondition + { + public void ExposeData(ObjectSerializer serializer) { } + + public bool Condition(IEntity user, EntityCoordinates location, Direction direction) + { + foreach (var entity in location.GetEntitiesInTile(true)) + { + if (entity.HasComponent()) + return false; + } + + return true; + } + } +} diff --git a/Content.Shared/Construction/ConstructionGraphEdge.cs b/Content.Shared/Construction/ConstructionGraphEdge.cs new file mode 100644 index 0000000000..376504a65d --- /dev/null +++ b/Content.Shared/Construction/ConstructionGraphEdge.cs @@ -0,0 +1,101 @@ +using System; +using System.Collections.Generic; +using System.IO; +using Content.Shared.GameObjects.Components.Power; +using Content.Shared.Interfaces; +using Robust.Shared.Interfaces.Serialization; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; +using Robust.Shared.ViewVariables; +using YamlDotNet.RepresentationModel; + +namespace Content.Shared.Construction +{ + [Serializable] + public class ConstructionGraphEdge : IExposeData + { + private List _steps = new List(); + private List _conditions; + private List _completed; + + [ViewVariables] + public string Target { get; private set; } + + [ViewVariables] + public IReadOnlyList Conditions => _conditions; + + [ViewVariables] + public IReadOnlyList Completed => _completed; + + [ViewVariables] + public IReadOnlyList Steps => _steps; + + public void ExposeData(ObjectSerializer serializer) + { + var moduleManager = IoCManager.Resolve(); + + serializer.DataField(this, x => x.Target, "to", string.Empty); + if (!moduleManager.IsServerModule) return; + serializer.DataField(ref _conditions, "conditions", new List()); + serializer.DataField(ref _completed, "completed", new List()); + } + + public void LoadFrom(YamlMappingNode mapping) + { + var serializer = YamlObjectSerializer.NewReader(mapping); + ExposeData(serializer); + + if (!mapping.TryGetNode("steps", out YamlSequenceNode stepsMapping)) return; + + foreach (var yamlNode in stepsMapping) + { + var stepMapping = (YamlMappingNode) yamlNode; + _steps.Add(LoadStep(stepMapping)); + } + } + + public static ConstructionGraphStep LoadStep(YamlMappingNode mapping) + { + var stepSerializer = YamlObjectSerializer.NewReader(mapping); + + if (mapping.TryGetNode("material", out _)) + { + var material = new MaterialConstructionGraphStep(); + material.ExposeData(stepSerializer); + return material; + } + + if (mapping.TryGetNode("tool", out _)) + { + var tool = new ToolConstructionGraphStep(); + tool.ExposeData(stepSerializer); + return tool; + } + + if (mapping.TryGetNode("prototype", out _)) + { + var prototype = new PrototypeConstructionGraphStep(); + prototype.ExposeData(stepSerializer); + return prototype; + } + + if (mapping.TryGetNode("component", out _)) + { + var component = new ComponentConstructionGraphStep(); + component.ExposeData(stepSerializer); + return component; + } + + if(mapping.TryGetNode("steps", out _)) + { + var nested = new NestedConstructionGraphStep(); + nested.ExposeData(stepSerializer); + nested.LoadFrom(mapping); + return nested; + } + + throw new ArgumentException("Tried to convert invalid YAML node mapping to ConstructionGraphStep!"); + } + } +} diff --git a/Content.Shared/Construction/ConstructionGraphNode.cs b/Content.Shared/Construction/ConstructionGraphNode.cs new file mode 100644 index 0000000000..199695299b --- /dev/null +++ b/Content.Shared/Construction/ConstructionGraphNode.cs @@ -0,0 +1,68 @@ +using System; +using System.Collections.Generic; +using Content.Shared.Interfaces; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; +using Robust.Shared.ViewVariables; +using YamlDotNet.RepresentationModel; +using ObjectSerializer = Robust.Shared.Serialization.ObjectSerializer; + +namespace Content.Shared.Construction +{ + [Serializable] + public class ConstructionGraphNode + { + private List _actions = new List(); + private List _edges = new List(); + + [ViewVariables] + public string Name { get; private set; } + + [ViewVariables] + public IReadOnlyList Edges => _edges; + + [ViewVariables] + public IReadOnlyList Actions => _actions; + + [ViewVariables] + public string Entity { get; private set; } + + public void ExposeData(ObjectSerializer serializer) + { + var moduleManager = IoCManager.Resolve(); + + serializer.DataField(this, x => x.Name, "node", string.Empty); + serializer.DataField(this, x => x.Entity, "entity",string.Empty); + if (!moduleManager.IsServerModule) return; + serializer.DataField(ref _actions, "actions", new List()); + } + + public void LoadFrom(YamlMappingNode mapping) + { + var serializer = YamlObjectSerializer.NewReader(mapping); + ExposeData(serializer); + + if (!mapping.TryGetNode("edges", out YamlSequenceNode edgesMapping)) return; + + foreach (var yamlNode in edgesMapping) + { + var edgeMapping = (YamlMappingNode) yamlNode; + var edge = new ConstructionGraphEdge(); + edge.LoadFrom(edgeMapping); + _edges.Add(edge); + } + } + + public ConstructionGraphEdge GetEdge(string target) + { + foreach (var edge in _edges) + { + if (edge.Target == target) + return edge; + } + + return null; + } + } +} diff --git a/Content.Shared/Construction/ConstructionGraphPrototype.cs b/Content.Shared/Construction/ConstructionGraphPrototype.cs new file mode 100644 index 0000000000..d9146745fc --- /dev/null +++ b/Content.Shared/Construction/ConstructionGraphPrototype.cs @@ -0,0 +1,118 @@ +using System; +using System.Collections.Generic; +using System.IO; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; +using Robust.Shared.ViewVariables; +using YamlDotNet.RepresentationModel; + +namespace Content.Shared.Construction +{ + [Prototype("constructionGraph")] + public class ConstructionGraphPrototype : IPrototype, IIndexedPrototype + { + private readonly Dictionary _nodes = new Dictionary(); + private Dictionary, ConstructionGraphNode[]> _paths = new Dictionary, ConstructionGraphNode[]>(); + private Dictionary _pathfinding = new Dictionary(); + + [ViewVariables] + public string ID { get; private set; } + + [ViewVariables] + public string Start { get; private set; } + + [ViewVariables] + public IReadOnlyDictionary Nodes => _nodes; + + public void LoadFrom(YamlMappingNode mapping) + { + var serializer = YamlObjectSerializer.NewReader(mapping); + + serializer.DataField(this, x => x.ID, "id", string.Empty); + serializer.DataField(this, x => x.Start, "start", string.Empty); + + if (!mapping.TryGetNode("graph", out YamlSequenceNode graphMapping)) return; + + foreach (var yamlNode in graphMapping) + { + var childMapping = (YamlMappingNode) yamlNode; + var node = new ConstructionGraphNode(); + node.LoadFrom(childMapping); + _nodes[node.Name] = node; + } + + if(string.IsNullOrEmpty(Start) || !_nodes.ContainsKey(Start)) + throw new InvalidDataException($"Starting node for construction graph {ID} is null, empty or invalid!"); + + _pathfinding = Pathfind(Start); + } + + public ConstructionGraphEdge Edge(string startNode, string nextNode) + { + var start = _nodes[startNode]; + return start.GetEdge(nextNode); + } + + public ConstructionGraphNode[] Path(string startNode, string finishNode) + { + var tuple = new ValueTuple(startNode, finishNode); + + if (_paths.ContainsKey(tuple)) + return _paths[tuple]; + + var start = _nodes[startNode]; + var finish = _nodes[finishNode]; + + var current = finish; + var path = new List(); + while (current != start) + { + path.Add(current); + + // No path. + if (current == null || !_pathfinding.ContainsKey(current)) + { + // We remember this for next time. + _paths[tuple] = null; + return null; + } + + current = _pathfinding[current]; + } + + path.Reverse(); + return _paths[tuple] = path.ToArray(); + } + + /// + /// Uses breadth first search for pathfinding. + /// + /// + private Dictionary Pathfind(string start) + { + // TODO: Make this use A* or something, although it's not that important. + var startNode = _nodes[start]; + + var frontier = new Queue(); + var cameFrom = new Dictionary(); + + frontier.Enqueue(startNode); + cameFrom[startNode] = null; + + while (frontier.Count != 0) + { + var current = frontier.Dequeue(); + foreach (var edge in current.Edges) + { + var edgeNode = _nodes[edge.Target]; + if(cameFrom.ContainsKey(edgeNode)) continue; + frontier.Enqueue(edgeNode); + cameFrom[edgeNode] = current; + } + } + + return cameFrom; + } + } +} diff --git a/Content.Shared/Construction/ConstructionGraphStep.cs b/Content.Shared/Construction/ConstructionGraphStep.cs new file mode 100644 index 0000000000..273615df5f --- /dev/null +++ b/Content.Shared/Construction/ConstructionGraphStep.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using Content.Shared.Interfaces; +using Robust.Shared.Interfaces.Serialization; +using Robust.Shared.IoC; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + [Serializable] + public abstract class ConstructionGraphStep : IExposeData + { + private List _completed; + public float DoAfter { get; private set; } + public IReadOnlyList Completed => _completed; + + public virtual void ExposeData(ObjectSerializer serializer) + { + var moduleManager = IoCManager.Resolve(); + + serializer.DataField(this, x => x.DoAfter, "doAfter", 0f); + if (!moduleManager.IsServerModule) return; + serializer.DataField(ref _completed, "completed", new List()); + } + + public abstract void DoExamine(FormattedMessage message, bool inDetailsRange); + } +} diff --git a/Content.Shared/Construction/ConstructionPrototype.cs b/Content.Shared/Construction/ConstructionPrototype.cs index c32960bf63..5ab7119169 100644 --- a/Content.Shared/Construction/ConstructionPrototype.cs +++ b/Content.Shared/Construction/ConstructionPrototype.cs @@ -1,7 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using Content.Shared.GameObjects.Components.Interactable; +using System.Collections.Generic; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Utility; @@ -12,164 +9,69 @@ namespace Content.Shared.Construction [Prototype("construction")] public class ConstructionPrototype : IPrototype, IIndexedPrototype { - private string _name; - private string _description; - private SpriteSpecifier _icon; - private List _keywords; - private List _categorySegments; - private List _stages = new List(); - private ConstructionType _type; - private string _id; - private string _result; - private string _placementMode; - private bool _canBuildInImpassable; + private List _conditions; /// /// Friendly name displayed in the construction GUI. /// - public string Name => _name; + public string Name { get; private set; } /// /// "Useful" description displayed in the construction GUI. /// - public string Description => _description; + public string Description { get; private set; } + + /// + /// The this construction will be using. + /// + public string Graph { get; private set; } + + /// + /// The target this construction will guide the user to. + /// + public string TargetNode { get; private set; } + + /// + /// The starting this construction will start at. + /// + public string StartNode { get; private set; } /// /// Texture path inside the construction GUI. /// - public SpriteSpecifier Icon => _icon; + public SpriteSpecifier Icon { get; private set; } /// /// If you can start building or complete steps on impassable terrain. /// - public bool CanBuildInImpassable => _canBuildInImpassable; + public bool CanBuildInImpassable { get; private set; } - /// - /// A list of keywords that are used for searching. - /// - public IReadOnlyList Keywords => _keywords; + public string Category { get; private set; } - /// - /// The split up segments of the category. - /// - public IReadOnlyList CategorySegments => _categorySegments; + public ConstructionType Type { get; private set; } - /// - /// The list of stages of construction. - /// Construction is separated into "stages" which is basically a state in a linear FSM. - /// The stage has forward and optionally backwards "steps" which are the criteria to move around in the FSM. - /// NOTE that the stages are mapped differently than they appear in the prototype. - /// In the prototype, the forward step is displayed as "to move into this stage" and reverse "to move out of" - /// Stage 0 is considered "construction not started" and last stage is considered "construction is finished". - /// As such, neither last or 0 stage have actual stage DATA, only backward/forward steps respectively. - /// This would be akward for a YAML prototype because it's always jagged. - /// - public IReadOnlyList Stages => _stages; + public string ID { get; private set; } - public ConstructionType Type => _type; + public string PlacementMode { get; private set; } - public string ID => _id; - - /// - /// The prototype name of the entity prototype when construction is done. - /// - public string Result => _result; - - public string PlacementMode => _placementMode; + public IReadOnlyList Conditions => _conditions; public void LoadFrom(YamlMappingNode mapping) { var ser = YamlObjectSerializer.NewReader(mapping); - _name = ser.ReadDataField("name"); + Name = ser.ReadDataField("name"); - ser.DataField(ref _id, "id", string.Empty); - ser.DataField(ref _description, "description", string.Empty); - ser.DataField(ref _icon, "icon", SpriteSpecifier.Invalid); - ser.DataField(ref _type, "objectType", ConstructionType.Structure); - ser.DataField(ref _result, "result", null); - ser.DataField(ref _placementMode, "placementMode", "PlaceFree"); - ser.DataField(ref _canBuildInImpassable, "canBuildInImpassable", false); - - _keywords = ser.ReadDataField>("keywords", new List()); - { - var cat = ser.ReadDataField("category"); - var split = cat.Split(new char[] { '/' }, StringSplitOptions.RemoveEmptyEntries); - _categorySegments = split.ToList(); - } - - { - SpriteSpecifier nextIcon = null; - ConstructionStep nextBackward = null; - - foreach (var stepMap in mapping.GetNode("steps").Cast()) - { - var step = ReadStepPrototype(stepMap); - _stages.Add(new ConstructionStage(step, nextIcon, nextBackward)); - if (stepMap.TryGetNode("icon", out var node)) - { - nextIcon = SpriteSpecifier.FromYaml(node); - } - - if (stepMap.TryGetNode("reverse", out YamlMappingNode revMap)) - { - nextBackward = ReadStepPrototype(revMap); - } - } - - _stages.Add(new ConstructionStage(null, nextIcon, nextBackward)); - } - } - - ConstructionStep ReadStepPrototype(YamlMappingNode step) - { - int amount = 1; - - if (step.TryGetNode("amount", out var node)) - { - amount = node.AsInt(); - } - if (step.TryGetNode("material", out node)) - { - return new ConstructionStepMaterial( - node.AsEnum(), - amount - ); - } - - if (step.TryGetNode("tool", out node)) - { - return new ConstructionStepTool( - node.AsEnum(), - amount - ); - } - - throw new InvalidOperationException("Not enough data specified to determine step."); - } - } - - public sealed class ConstructionStage - { - /// - /// The icon of the construction frame at this stage. - /// - public readonly SpriteSpecifier Icon; - - /// - /// The step that should be completed to move away from this stage to the next one. - /// - public readonly ConstructionStep Forward; - - /// - /// The optional step that can be completed to move away from this stage to the previous one. - /// - public readonly ConstructionStep Backward; - - public ConstructionStage(ConstructionStep forward, SpriteSpecifier icon = null, ConstructionStep backward = null) - { - Icon = icon; - Forward = forward; - Backward = backward; + ser.DataField(this, x => x.ID, "id", string.Empty); + ser.DataField(this, x => x.Graph, "graph", string.Empty); + ser.DataField(this, x => x.TargetNode, "targetNode", string.Empty); + ser.DataField(this, x => x.StartNode, "startNode", string.Empty); + ser.DataField(this, x => x.Description, "description", string.Empty); + ser.DataField(this, x => x.Icon, "icon", SpriteSpecifier.Invalid); + ser.DataField(this, x => x.Type, "objectType", ConstructionType.Structure); + ser.DataField(this, x => x.PlacementMode, "placementMode", "PlaceFree"); + ser.DataField(this, x => x.CanBuildInImpassable, "canBuildInImpassable", false); + ser.DataField(this, x => x.Category, "category", string.Empty); + ser.DataField(ref _conditions, "conditions", new List()); } } @@ -178,47 +80,5 @@ namespace Content.Shared.Construction Structure, Item, } - - public abstract class ConstructionStep - { - public readonly int Amount; - public readonly float DoAfterDelay; - - protected ConstructionStep(int amount, float doAfterDelay = 0f) - { - Amount = amount; - DoAfterDelay = doAfterDelay; - } - } - - public class ConstructionStepTool : ConstructionStep - { - public readonly ToolQuality ToolQuality; - - public ConstructionStepTool(ToolQuality toolQuality, int amount) : base(amount) - { - ToolQuality = toolQuality; - } - } - - public class ConstructionStepMaterial : ConstructionStep - { - public readonly MaterialType Material; - - public ConstructionStepMaterial(MaterialType material, int amount) : base(amount) - { - Material = material; - } - - - public enum MaterialType - { - Metal, - Glass, - Cable, - Gold, - Phoron, - } - } } diff --git a/Content.Shared/Construction/EntityInsertConstructionGraphStep.cs b/Content.Shared/Construction/EntityInsertConstructionGraphStep.cs new file mode 100644 index 0000000000..19c5e3f74e --- /dev/null +++ b/Content.Shared/Construction/EntityInsertConstructionGraphStep.cs @@ -0,0 +1,19 @@ +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Serialization; + +namespace Content.Shared.Construction +{ + public abstract class EntityInsertConstructionGraphStep : ConstructionGraphStep + { + public string Store { get; private set; } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Store, "store", string.Empty); + } + + public abstract bool EntityValid(IEntity entity); + } +} diff --git a/Content.Shared/Construction/IConstructionCondition.cs b/Content.Shared/Construction/IConstructionCondition.cs new file mode 100644 index 0000000000..d80c566444 --- /dev/null +++ b/Content.Shared/Construction/IConstructionCondition.cs @@ -0,0 +1,12 @@ +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Serialization; +using Robust.Shared.Map; +using Robust.Shared.Maths; + +namespace Content.Shared.Construction +{ + public interface IConstructionCondition : IExposeData + { + bool Condition(IEntity user, EntityCoordinates location, Direction direction); + } +} diff --git a/Content.Shared/Construction/IEdgeCondition.cs b/Content.Shared/Construction/IEdgeCondition.cs new file mode 100644 index 0000000000..6c2410a752 --- /dev/null +++ b/Content.Shared/Construction/IEdgeCondition.cs @@ -0,0 +1,13 @@ +using System.Threading.Tasks; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + public interface IEdgeCondition : IExposeData + { + Task Condition(IEntity entity); + void DoExamine(IEntity entity, FormattedMessage message, bool inExamineRange) { } + } +} diff --git a/Content.Shared/Construction/IGraphAction.cs b/Content.Shared/Construction/IGraphAction.cs new file mode 100644 index 0000000000..e6a7200739 --- /dev/null +++ b/Content.Shared/Construction/IGraphAction.cs @@ -0,0 +1,13 @@ +#nullable enable +using System; +using System.Threading.Tasks; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Interfaces.Serialization; + +namespace Content.Shared.Construction +{ + public interface IGraphAction : IExposeData + { + Task PerformAction(IEntity entity, IEntity? user); + } +} diff --git a/Content.Shared/Construction/MaterialConstructionGraphStep.cs b/Content.Shared/Construction/MaterialConstructionGraphStep.cs new file mode 100644 index 0000000000..a41dcfecbc --- /dev/null +++ b/Content.Shared/Construction/MaterialConstructionGraphStep.cs @@ -0,0 +1,48 @@ +#nullable enable +using System.Diagnostics.CodeAnalysis; +using Content.Shared.GameObjects.Components; +using Content.Shared.GameObjects.Components.Materials; +using Content.Shared.Materials; +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + public class MaterialConstructionGraphStep : EntityInsertConstructionGraphStep + { + // TODO: Make this use the material system. + // TODO TODO: Make the material system not shit. + public StackType Material { get; private set; } + public int Amount { get; private set; } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Material, "material", StackType.Metal); + serializer.DataField(this, x => x.Amount, "amount", 1); + } + + public override void DoExamine(FormattedMessage message, bool inDetailsRange) + { + message.AddMarkup(Loc.GetString("Next, add [color=yellow]{0}x[/color] [color=cyan]{1}[/color].", Amount, Material)); + } + + public override bool EntityValid(IEntity entity) + { + return entity.TryGetComponent(out SharedStackComponent? stack) && stack.StackType.Equals(Material); + } + + public bool EntityValid(IEntity entity, [NotNullWhen(true)] out SharedStackComponent? stack) + { + if(entity.TryGetComponent(out SharedStackComponent? otherStack) && otherStack.StackType.Equals(Material)) + stack = otherStack; + else + stack = null; + + return stack != null; + } + } +} diff --git a/Content.Shared/Construction/NestedConstructionGraphStep.cs b/Content.Shared/Construction/NestedConstructionGraphStep.cs new file mode 100644 index 0000000000..b8f671bc60 --- /dev/null +++ b/Content.Shared/Construction/NestedConstructionGraphStep.cs @@ -0,0 +1,41 @@ +using System.Collections.Generic; +using System.IO; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; +using YamlDotNet.RepresentationModel; + +namespace Content.Shared.Construction +{ + public class NestedConstructionGraphStep : ConstructionGraphStep + { + public List> Steps { get; private set; } = new List>(); + + public void LoadFrom(YamlMappingNode mapping) + { + if (!mapping.TryGetNode("steps", out YamlSequenceNode steps)) return; + + foreach (var node in steps) + { + var sequence = (YamlSequenceNode) node; + var list = new List(); + + foreach (var innerNode in sequence) + { + var stepNode = (YamlMappingNode) innerNode; + var step = ConstructionGraphEdge.LoadStep(stepNode); + + if(step is NestedConstructionGraphStep) + throw new InvalidDataException("Can't have nested construction steps inside nested construction steps!"); + + list.Add(step); + } + + Steps.Add(list); + } + } + + public override void DoExamine(FormattedMessage message, bool inDetailsRange) + { + } + } +} diff --git a/Content.Shared/Construction/PrototypeConstructionGraphStep.cs b/Content.Shared/Construction/PrototypeConstructionGraphStep.cs new file mode 100644 index 0000000000..635549514b --- /dev/null +++ b/Content.Shared/Construction/PrototypeConstructionGraphStep.cs @@ -0,0 +1,31 @@ +using Robust.Shared.Interfaces.GameObjects; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + public class PrototypeConstructionGraphStep : ArbitraryInsertConstructionGraphStep + { + public string Prototype { get; private set; } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Prototype, "prototype", string.Empty); + } + + public override bool EntityValid(IEntity entity) + { + return entity.Prototype?.ID == Prototype; + } + + public override void DoExamine(FormattedMessage message, bool inDetailsRange) + { + message.AddMarkup(string.IsNullOrEmpty(Name) + ? Loc.GetString("Next, insert {0}", Prototype) // Terrible. + : Loc.GetString("Next, insert {0}", Name)); + } + } +} diff --git a/Content.Shared/Construction/ToolConstructionGraphStep.cs b/Content.Shared/Construction/ToolConstructionGraphStep.cs new file mode 100644 index 0000000000..2f9d590897 --- /dev/null +++ b/Content.Shared/Construction/ToolConstructionGraphStep.cs @@ -0,0 +1,35 @@ +using System; +using Content.Shared.GameObjects.Components.Interactable; +using Robust.Shared.Localization; +using Robust.Shared.Serialization; +using Robust.Shared.Utility; + +namespace Content.Shared.Construction +{ + public class ToolConstructionGraphStep : ConstructionGraphStep + { + public ToolQuality Tool { get; private set; } + public float Fuel { get; private set; } + public string ExamineOverride { get; private set; } + + public override void ExposeData(ObjectSerializer serializer) + { + base.ExposeData(serializer); + + serializer.DataField(this, x => x.Tool, "tool", ToolQuality.None); + serializer.DataField(this, x => x.Fuel, "fuel", 10f); // Default fuel cost. + serializer.DataField(this, x => x.ExamineOverride, "examine", string.Empty); + } + + public override void DoExamine(FormattedMessage message, bool inDetailsRange) + { + if (!string.IsNullOrEmpty(ExamineOverride)) + { + message.AddMarkup(Loc.GetString(ExamineOverride)); + return; + } + + message.AddMarkup(Loc.GetString($"Next, use a [color=cyan]{Tool.GetToolName()}[/color].")); + } + } +} diff --git a/Content.Shared/GameObjects/Components/Damage/DamageableComponent.cs b/Content.Shared/GameObjects/Components/Damage/DamageableComponent.cs index a0903c90d6..049dfaae03 100644 --- a/Content.Shared/GameObjects/Components/Damage/DamageableComponent.cs +++ b/Content.Shared/GameObjects/Components/Damage/DamageableComponent.cs @@ -5,6 +5,7 @@ using Content.Shared.Damage; using Content.Shared.Damage.DamageContainer; using Content.Shared.Damage.ResistanceSet; using Content.Shared.Interfaces.GameObjects.Components; +using Mono.Collections.Generic; using Robust.Shared.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.IoC; @@ -157,6 +158,9 @@ namespace Content.Shared.GameObjects.Components.Damage { var writeFlags = new List(); + if (Flags == DamageFlag.None) + return writeFlags; + foreach (var flag in (DamageFlag[]) Enum.GetValues(typeof(DamageFlag))) { if ((Flags & flag) == flag) diff --git a/Content.Shared/GameObjects/Components/Interactable/SharedToolComponent.cs b/Content.Shared/GameObjects/Components/Interactable/SharedToolComponent.cs index a99f4e029f..0da07e3f50 100644 --- a/Content.Shared/GameObjects/Components/Interactable/SharedToolComponent.cs +++ b/Content.Shared/GameObjects/Components/Interactable/SharedToolComponent.cs @@ -16,6 +16,23 @@ namespace Content.Shared.GameObjects.Components.Interactable Multitool = 1 << 5, } + public static class ToolQualityHelpers + { + public static string GetToolName(this ToolQuality quality) + { + return quality switch + { + ToolQuality.Anchoring => "Wrench", + ToolQuality.Prying => "Crowbar", + ToolQuality.Screwing => "Screwdriver", + ToolQuality.Cutting => "Wirecutters", + ToolQuality.Welding => "Welding tool", + ToolQuality.Multitool => "Multitool", + _ => throw new ArgumentOutOfRangeException() + }; + } + } + public class SharedToolComponent : Component { public override string Name => "Tool"; diff --git a/Content.Shared/GameObjects/Components/ReinforcedWallVisuals.cs b/Content.Shared/GameObjects/Components/ReinforcedWallVisuals.cs new file mode 100644 index 0000000000..5265f76d7c --- /dev/null +++ b/Content.Shared/GameObjects/Components/ReinforcedWallVisuals.cs @@ -0,0 +1,11 @@ +using System; +using Robust.Shared.Serialization; + +namespace Content.Shared.GameObjects.Components +{ + [Serializable, NetSerializable] + public enum ReinforcedWallVisuals + { + DeconstructionStage, + } +} diff --git a/Content.Shared/GameObjects/Components/SharedCanBuildWindowOnTopComponent.cs b/Content.Shared/GameObjects/Components/SharedCanBuildWindowOnTopComponent.cs new file mode 100644 index 0000000000..6cc59062e5 --- /dev/null +++ b/Content.Shared/GameObjects/Components/SharedCanBuildWindowOnTopComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.GameObjects; + +namespace Content.Shared.GameObjects.Components +{ + [RegisterComponent] + public class SharedCanBuildWindowOnTopComponent : Component + { + public override string Name => "CanBuildWindowOnTop"; + } +} diff --git a/Content.Shared/GameObjects/Components/SharedStackComponent.cs b/Content.Shared/GameObjects/Components/SharedStackComponent.cs index 2bdb73cbcd..e41e907733 100644 --- a/Content.Shared/GameObjects/Components/SharedStackComponent.cs +++ b/Content.Shared/GameObjects/Components/SharedStackComponent.cs @@ -125,6 +125,7 @@ namespace Content.Shared.GameObjects.Components { Metal, Glass, + Plasteel, Cable, Gold, Phoron, diff --git a/Content.Shared/GameObjects/Components/SharedWindowComponent.cs b/Content.Shared/GameObjects/Components/SharedWindowComponent.cs new file mode 100644 index 0000000000..862b9069bf --- /dev/null +++ b/Content.Shared/GameObjects/Components/SharedWindowComponent.cs @@ -0,0 +1,9 @@ +using Robust.Shared.GameObjects; + +namespace Content.Shared.GameObjects.Components +{ + public class SharedWindowComponent : Component + { + public override string Name => "Window"; + } +} diff --git a/Content.Shared/GameObjects/EntitySystems/SharedConstructionSystem.cs b/Content.Shared/GameObjects/EntitySystems/SharedConstructionSystem.cs index dd9305a673..86ad4c764a 100644 --- a/Content.Shared/GameObjects/EntitySystems/SharedConstructionSystem.cs +++ b/Content.Shared/GameObjects/EntitySystems/SharedConstructionSystem.cs @@ -76,28 +76,5 @@ namespace Content.Shared.GameObjects.EntitySystems GhostId = ghostId; } } - - public void DoExamine(FormattedMessage message, ConstructionPrototype prototype, int stage, bool inDetailRange) - { - var stages = prototype.Stages; - if (stage >= 0 && stage < stages.Count) - { - var curStage = stages[stage]; - if (curStage.Backward != null && curStage.Backward is ConstructionStepTool) - { - var backward = (ConstructionStepTool) curStage.Backward; - message.AddText(Loc.GetString("To deconstruct: {0}x {1} Tool", backward.Amount, backward.ToolQuality)); - } - if (curStage.Forward != null && curStage.Forward is ConstructionStepMaterial) - { - if (curStage.Backward != null) - { - message.AddText("\n"); - } - var forward = (ConstructionStepMaterial) curStage.Forward; - message.AddText(Loc.GetString("To construct: {0}x {1}", forward.Amount, forward.Material)); - } - } - } } } diff --git a/Content.Shared/Maps/TurfHelpers.cs b/Content.Shared/Maps/TurfHelpers.cs index 9d612bb691..b246b24c7e 100644 --- a/Content.Shared/Maps/TurfHelpers.cs +++ b/Content.Shared/Maps/TurfHelpers.cs @@ -5,7 +5,6 @@ using System.Runtime.CompilerServices; using System.Diagnostics.CodeAnalysis; using Content.Shared.Physics; using Content.Shared.Utility; -using Robust.Shared.GameObjects.Systems; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.Interfaces.Map; using Robust.Shared.Interfaces.Physics; @@ -29,18 +28,18 @@ namespace Content.Shared.Maps /// /// Attempts to get the turf at map indices with grid id or null if no such turf is found. /// - public static TileRef? GetTileRef(this MapIndices mapIndices, GridId gridId, IMapManager? mapManager = null) + public static TileRef GetTileRef(this MapIndices mapIndices, GridId gridId, IMapManager? mapManager = null) { if (!gridId.IsValid()) - return null; + return default; mapManager ??= IoCManager.Resolve(); if (!mapManager.TryGetGrid(gridId, out var grid)) - return null; + return default; if (!grid.TryGetTileRef(mapIndices, out var tile)) - return null; + return default; return tile; } @@ -149,12 +148,7 @@ namespace Content.Shared.Maps /// public static IEnumerable GetEntitiesInTile(this MapIndices indices, GridId gridId, bool approximate = false, IEntityManager? entityManager = null) { - var turf = indices.GetTileRef(gridId); - - if (turf == null) - return Enumerable.Empty(); - - return GetEntitiesInTile(turf.Value, approximate, entityManager); + return GetEntitiesInTile(indices.GetTileRef(gridId), approximate, entityManager); } /// @@ -194,7 +188,9 @@ namespace Content.Shared.Maps { var map = IoCManager.Resolve(); var tileGrid = map.GetGrid(turf.GridIndex); - var tileBox = Box2.UnitCentered.Scale(tileGrid.TileSize); + + // This is scaled to 90 % so it doesn't encompass walls on other tiles. + var tileBox = Box2.UnitCentered.Scale(tileGrid.TileSize).Scale(0.9f); return tileBox.Translated(tileGrid.GridTileToWorldPos(turf.GridIndices)); } diff --git a/Content.Shared/Materials/Material.cs b/Content.Shared/Materials/Material.cs index fbee6a549f..7fa7bb4bb4 100644 --- a/Content.Shared/Materials/Material.cs +++ b/Content.Shared/Materials/Material.cs @@ -101,13 +101,13 @@ namespace Content.Shared.Materials // All default material params are initialized to 1 because // I'm too lazy to figure out for which that's necessary to prevent divisions by zero in case left out. serializer.DataField(ref _density, "density", 1, alwaysWrite: true); - serializer.DataField(ref _electricResistivity, "electricresistivity", 1, alwaysWrite: true); - serializer.DataField(ref _thermalConductivity, "thermalconductivity", 1, alwaysWrite: true); - serializer.DataField(ref _specificHeat, "specificheat", 1, alwaysWrite: true); + serializer.DataField(ref _electricResistivity, "electricResistivity", 1, alwaysWrite: true); + serializer.DataField(ref _thermalConductivity, "thermalConductivity", 1, alwaysWrite: true); + serializer.DataField(ref _specificHeat, "specificHeat", 1, alwaysWrite: true); serializer.DataField(ref _durability, "durability", 1, alwaysWrite: true); serializer.DataField(ref _hardness, "hardness", 1, alwaysWrite: true); - serializer.DataField(ref _sharpDamage, "sharpdamage", 1, alwaysWrite: true); - serializer.DataField(ref _bluntDamage, "bluntdamage", 1, alwaysWrite: true); + serializer.DataField(ref _sharpDamage, "sharpDamage", 1, alwaysWrite: true); + serializer.DataField(ref _bluntDamage, "bluntDamage", 1, alwaysWrite: true); serializer.DataField(ref _icon, "icon", SpriteSpecifier.Invalid, alwaysWrite: true); } } diff --git a/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml b/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml index 84685e41e3..3731c4f884 100644 --- a/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml +++ b/Resources/Maps/Test/Breathing/3by3-20oxy-80nit.yml @@ -122,9 +122,6 @@ entities: pos: -0.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2 type: reinforced_wall components: @@ -132,9 +129,6 @@ entities: pos: -0.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3 type: reinforced_wall components: @@ -142,9 +136,6 @@ entities: pos: -0.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 4 type: reinforced_wall components: @@ -152,9 +143,6 @@ entities: pos: 0.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 5 type: reinforced_wall components: @@ -162,9 +150,6 @@ entities: pos: 1.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 6 type: reinforced_wall components: @@ -172,9 +157,6 @@ entities: pos: 1.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 7 type: reinforced_wall components: @@ -182,9 +164,6 @@ entities: pos: 1.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 8 type: reinforced_wall components: @@ -192,7 +171,4 @@ entities: pos: 0.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible ... diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index 3917ea53b1..5c5bb41159 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -11,26 +11,25 @@ tilemap: 4: floor_asteroid_coarse_sand_dug 5: floor_asteroid_sand 6: floor_asteroid_tile - 7: floor_carpet - 8: floor_dark - 9: floor_elevator_shaft - 10: floor_freezer - 11: floor_gold - 12: floor_green_circuit - 13: floor_hydro - 14: floor_lino - 15: floor_mono - 16: floor_reinforced - 17: floor_rock_vault - 18: floor_showroom - 19: floor_snow - 20: floor_steel - 21: floor_steel_dirty - 22: floor_techmaint - 23: floor_white - 24: floor_wood - 25: plating - 26: underplating + 7: floor_dark + 8: floor_elevator_shaft + 9: floor_freezer + 10: floor_gold + 11: floor_green_circuit + 12: floor_hydro + 13: floor_lino + 14: floor_mono + 15: floor_reinforced + 16: floor_rock_vault + 17: floor_showroom + 18: floor_snow + 19: floor_steel + 20: floor_steel_dirty + 21: floor_techmaint + 22: floor_white + 23: floor_wood + 24: plating + 25: underplating grids: - settings: chunksize: 16 @@ -38,55 +37,55 @@ grids: snapsize: 1 chunks: - ind: "-1,-1" - tiles: FgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABoAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAZAAAAFgAAABYAAAAaAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAGQAAABYAAAAWAAAAGgAAABcAAAAXAAAAFwAAABoAAAAaAAAAGgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGgAAABkAAAAWAAAAFgAAABoAAAAaAAAAFwAAABoAAAAaAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABoAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABkAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAGgAAABYAAAAWAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABoAAAAOAAAADgAAAA4AAAAOAAAADgAAABoAAAAWAAAAFgAAABkAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA4AAAAOAAAADgAAAA4AAAAaAAAAGgAAABoAAAAZAAAAFAAAABQAAAAUAAAAFAAAABoAAAAYAAAAGAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAABgAAAAYAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGAAAABgAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAYAAAAGAAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAAA== + tiles: FQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAVAAAAFQAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAAYAAAAFQAAABUAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGAAAABUAAAAVAAAAGQAAABYAAAAWAAAAFgAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAABgAAAAVAAAAFQAAABkAAAAZAAAAFgAAABkAAAAZAAAAGAAAABgAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAGAAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAYAAAAFQAAAA0AAAANAAAADQAAAA0AAAANAAAAGQAAABUAAAAVAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABkAAAANAAAADQAAAA0AAAANAAAADQAAABkAAAAVAAAAFQAAABgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAAA0AAAAZAAAAGQAAABkAAAAYAAAAEwAAABMAAAATAAAAEwAAABkAAAAXAAAAFwAAAA0AAAANAAAADQAAAA0AAAANAAAADQAAABcAAAAXAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAFwAAABcAAAANAAAADQAAAA0AAAANAAAADQAAAA0AAAAXAAAAFwAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAA== - ind: "-1,0" - tiles: FAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAAAaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAGgAAABQAAAAZAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABoAAAAUAAAAGQAAABoAAAAUAAAAFAAAABQAAAAaAAAAFAAAABoAAAAaAAAAFAAAABQAAAAaAAAAGgAAABQAAAAaAAAAGgAAABkAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAZAAAAFgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAAA== + tiles: EwAAABMAAAATAAAAEwAAABMAAAATAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAAAZAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAGQAAABMAAAAYAAAAGQAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABkAAAATAAAAGAAAABkAAAATAAAAEwAAABMAAAAZAAAAEwAAABkAAAAZAAAAEwAAABMAAAAZAAAAGQAAABMAAAAZAAAAGQAAABgAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAYAAAAFQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA== - ind: "0,-1" - tiles: FwAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAXAAAAFwAAABcAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABcAAAAXAAAAFwAAABcAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFwAAABcAAAAXAAAAFwAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAXAAAAGgAAABoAAAAaAAAAFwAAABcAAAAXAAAAGgAAABkAAAAaAAAAFAAAABQAAAAUAAAAGgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAZAAAAGgAAABQAAAAUAAAAFAAAABoAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAGQAAABoAAAAUAAAAFAAAABQAAAAaAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABkAAAAaAAAAFAAAABQAAAAUAAAAGgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAZAAAAFgAAABQAAAAUAAAAFAAAABoAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABcAAAAaAAAAGgAAABcAAAAXAAAAGgAAABoAAAAXAAAAFwAAABoAAAAaAAAAFAAAABQAAAAUAAAAGgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAYAAAAGgAAABQAAAAUAAAAFAAAABoAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAGgAAABcAAAAXAAAAGAAAABoAAAAUAAAAFAAAABQAAAAaAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABoAAAAaAAAAFwAAABgAAAAUAAAAFAAAABQAAAAUAAAAFAAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAYAAAAFAAAABQAAAAUAAAAFAAAABQAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAGgAAABcAAAAXAAAAGAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABoAAAAXAAAAFwAAAA== + tiles: FgAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAWAAAAGQAAABkAAAAZAAAAFgAAABYAAAAWAAAAGQAAABgAAAAZAAAAEwAAABMAAAATAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAYAAAAGQAAABMAAAATAAAAEwAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGAAAABkAAAATAAAAEwAAABMAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABgAAAAZAAAAEwAAABMAAAATAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAYAAAAFQAAABMAAAATAAAAEwAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABYAAAAZAAAAGQAAABYAAAAWAAAAGQAAABkAAAAWAAAAFgAAABkAAAAZAAAAEwAAABMAAAATAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAXAAAAGQAAABMAAAATAAAAEwAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFwAAABkAAAATAAAAEwAAABMAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAFgAAABcAAAATAAAAEwAAABMAAAATAAAAEwAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAXAAAAEwAAABMAAAATAAAAEwAAABMAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFwAAABMAAAATAAAAEwAAABMAAAATAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAAA== - ind: "0,0" - tiles: GAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABgAAAAaAAAAFAAAABQAAAAUAAAAGgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABQAAAAaAAAAFAAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAFAAAABoAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABQAAAAUAAAAFAAAABYAAAAZAAAAFgAAABYAAAAWAAAAGQAAABkAAAAZAAAAFgAAABYAAAAWAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAABYAAAAaAAAAFgAAAA== + tiles: FwAAABMAAAATAAAAEwAAABMAAAATAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABcAAAAZAAAAEwAAABMAAAATAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAZAAAAGQAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABMAAAAZAAAAEwAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAEwAAABkAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABgAAAAYAAAAGAAAABgAAAAYAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABMAAAATAAAAEwAAABUAAAAYAAAAFQAAABUAAAAVAAAAGAAAABgAAAAYAAAAFQAAABUAAAAVAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAABUAAAAZAAAAFQAAAA== - ind: "1,0" - tiles: FwAAABcAAAAXAAAAGgAAABkAAAAWAAAAFgAAABYAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABcAAAAXAAAAFwAAABoAAAAZAAAAGQAAABYAAAAWAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAABkAAAAZAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFgAAABkAAAAWAAAAGQAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAWAAAAFgAAABYAAAAWAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFgAAABYAAAAWAAAAGgAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABYAAAAWAAAAFgAAABoAAAAUAAAAFAAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAZAAAAGQAAABkAAAAaAAAAFAAAABQAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFgAAABoAAAAAAAAAGgAAABYAAAAaAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAA== + tiles: FgAAABYAAAAWAAAAGQAAABgAAAAVAAAAFQAAABUAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABYAAAAWAAAAFgAAABkAAAAYAAAAGAAAABUAAAAVAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAABgAAAAYAAAAGQAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAFQAAABgAAAAVAAAAGAAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAFQAAABUAAAAVAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAFQAAABUAAAAVAAAAGQAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAVAAAAFQAAABkAAAATAAAAEwAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAYAAAAGAAAABgAAAAZAAAAEwAAABMAAAAVAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAFQAAABkAAAAAAAAAGQAAABUAAAAZAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAA== - ind: "0,1" - tiles: GgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAABYAAAAaAAAAFgAAABYAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAZAAAAFgAAABoAAAAAAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAABYAAAAaAAAAAAAAABYAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFgAAABkAAAAWAAAAGgAAAAAAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAWAAAAFgAAABoAAAAAAAAAGgAAABoAAAAUAAAAGgAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAAAAAAA4AAAAaAAAAFAAAABQAAAAUAAAAGgAAABgAAAAYAAAAGAAAABgAAAAaAAAAFgAAABYAAAAWAAAAGgAAAAAAAAAOAAAADgAAABQAAAAUAAAAFAAAABoAAAAYAAAAGAAAABgAAAAYAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAADgAAAA4AAAAUAAAAFAAAABQAAAAUAAAAGAAAABgAAAAYAAAAGAAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAA4AAAAaAAAAFAAAABQAAAAUAAAAGgAAABgAAAAYAAAAGAAAABgAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAABUAAAAZAAAAFQAAABUAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAAYAAAAFQAAABkAAAAAAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAABUAAAAZAAAAAAAAABUAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAFQAAABgAAAAVAAAAGQAAAAAAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAFQAAABkAAAAAAAAAGQAAABkAAAATAAAAGQAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAAAAAAA0AAAAZAAAAEwAAABMAAAATAAAAGQAAABcAAAAXAAAAFwAAABcAAAAZAAAAFQAAABUAAAAVAAAAGQAAAAAAAAANAAAADQAAABMAAAATAAAAEwAAABkAAAAXAAAAFwAAABcAAAAXAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAADQAAAA0AAAATAAAAEwAAABMAAAATAAAAFwAAABcAAAAXAAAAFwAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAA0AAAAZAAAAEwAAABMAAAATAAAAGQAAABcAAAAXAAAAFwAAABcAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-2,0" - tiles: GgAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABkAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAUAAAAFAAAABoAAAAaAAAAFAAAABQAAAAaAAAAGQAAABkAAAAWAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABkAAAAWAAAAFgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAZAAAAFgAAABYAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAaAAAAGQAAABYAAAAWAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAaAAAAGgAAABYAAAAaAAAAGgAAABkAAAAZAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAZAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABkAAAAZAAAAGQAAABYAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAaAAAAGgAAABkAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAAAZAAAAFgAAAA== + tiles: GQAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABgAAAAZAAAAEwAAABMAAAATAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAEwAAABMAAAAZAAAAGAAAABgAAAAVAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABgAAAAVAAAAFQAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAYAAAAFQAAABUAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAAZAAAAGAAAABUAAAAVAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAAZAAAAGQAAABUAAAAZAAAAGQAAABgAAAAYAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAYAAAAFQAAABUAAAAYAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGAAAABgAAAAYAAAAGAAAABUAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAZAAAAGQAAABgAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAAAYAAAAFQAAAA== - ind: "1,-1" - tiles: FwAAABcAAAAXAAAAFwAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAXAAAAFwAAABoAAAAZAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAaAAAAGQAAABYAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAXAAAAFwAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAaAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAABoAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAWAAAAGgAAAAAAAAAAAAAAAAAAABcAAAAXAAAAFwAAABcAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAFgAAABoAAAAaAAAAGgAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABcAAAAXAAAAFwAAABcAAAAaAAAAGQAAABYAAAAaAAAAGQAAABkAAAAZAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAGgAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAXAAAAFwAAABoAAAAZAAAAFgAAABoAAAAaAAAAGgAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABcAAAAXAAAAFwAAABcAAAAaAAAAGQAAABYAAAAaAAAAFAAAABQAAAAUAAAAGgAAABcAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAAAWAAAAGgAAABQAAAAUAAAAFAAAABcAAAAXAAAAFwAAABoAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFgAAABoAAAAUAAAAFAAAABQAAAAXAAAAFwAAABcAAAAaAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAaAAAAFAAAABQAAAAUAAAAFwAAABcAAAAXAAAAGgAAABkAAAAWAAAAFgAAABkAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAAA== + tiles: FgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABkAAAAYAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAGAAAABUAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAWAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFQAAABgAAAAVAAAAFQAAABUAAAAVAAAAGAAAABUAAAAZAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABkAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAVAAAAGQAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAFQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAZAAAAGAAAABUAAAAZAAAAGAAAABgAAAAYAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABgAAAAYAAAAGAAAABgAAAAVAAAAFQAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABkAAAAYAAAAFQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAZAAAAGAAAABUAAAAZAAAAEwAAABMAAAATAAAAGQAAABYAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAAAVAAAAGQAAABMAAAATAAAAEwAAABYAAAAWAAAAFgAAABkAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAFQAAABkAAAATAAAAEwAAABMAAAAWAAAAFgAAABYAAAAZAAAAGAAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAZAAAAEwAAABMAAAATAAAAFgAAABYAAAAWAAAAGQAAABgAAAAVAAAAFQAAABgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAAA== - ind: "0,-2" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAGQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAABYAAAAZAAAAFgAAABQAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAWAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAFgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAABYAAAAXAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFwAAABQAAAAUAAAAFAAAABQAAAAUAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAWAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAFgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAXAAAAFwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAGAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAABUAAAAYAAAAFQAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAVAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAFQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAABUAAAAWAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAVAAAAFgAAABMAAAATAAAAEwAAABMAAAATAAAAFQAAABgAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAYAAAAFQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAFQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAAA== - ind: "1,-2" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAZAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABcAAAAXAAAAFwAAABoAAAAWAAAAGQAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXAAAAFwAAABcAAAAaAAAAFgAAABkAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFwAAABcAAAAXAAAAGgAAABYAAAAZAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABcAAAAXAAAAFwAAABoAAAAWAAAAGQAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABcAAAAaAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAXAAAAFwAAABcAAAAXAAAAGgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABYAAAAaAAAAAAAAAAAAAAAAAAAAFwAAABcAAAAXAAAAFwAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABgAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAYAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAFgAAABkAAAAVAAAAGAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWAAAAFgAAABYAAAAZAAAAFQAAABgAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAFgAAABYAAAAWAAAAGQAAABUAAAAYAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABYAAAAWAAAAFgAAABkAAAAVAAAAGAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABYAAAAZAAAAFQAAABgAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAGQAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABUAAAAZAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAA== - ind: "-1,1" - tiles: GgAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFgAAABYAAAAWAAAAFgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABYAAAAWAAAAFgAAABYAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAWAAAAFgAAABYAAAAWAAAAGgAAABAAAAAQAAAAEAAAABAAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAQAAAAEAAAABAAAAAQAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFgAAABYAAAAWAAAAFgAAABkAAAAaAAAAEAAAABAAAAAQAAAAEAAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAGgAAABoAAAAOAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABoAAAAOAAAADgAAAA4AAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAGQAAABkAAAAaAAAADgAAAA4AAAAOAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGgAAABoAAAAaAAAAGgAAAA4AAAAOAAAADgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAABoAAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAUAAAAFAAAAA== + tiles: GQAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAVAAAAFQAAABUAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAPAAAADwAAAA8AAAAPAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAFQAAABUAAAAVAAAAFQAAABgAAAAZAAAADwAAAA8AAAAPAAAADwAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABgAAAAYAAAAGAAAABgAAAAYAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAGQAAABkAAAANAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGAAAABkAAAANAAAADQAAAA0AAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABgAAAAYAAAAGAAAABgAAAAZAAAADQAAAA0AAAANAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGQAAABkAAAAZAAAAGQAAAA0AAAANAAAADQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAABkAAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAAEwAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABMAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAATAAAAEwAAAA== - ind: "-2,1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAVAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAABUAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-1,2" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "1,1" - tiles: GgAAABoAAAAAAAAAGgAAABYAAAAaAAAAFgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAABEAAAARAAAAEQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: GQAAABkAAAAAAAAAGQAAABUAAAAZAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "0,2" - tiles: FAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: EwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "2,0" - tiles: FAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABQAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAAAAAAAAAAABoAAAAUAAAAGgAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAAAAAAAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAEAAAABAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAQAAAAEAAAABAAAAAQAAAAEAAAABAAAAAaAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAGgAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABAAAAAQAAAAEAAAABAAAAAQAAAAEAAAABoAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAUAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: EwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABMAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAABkAAAATAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAADwAAAA8AAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAZAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAGQAAAAAAAAAAAAAAAAAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABkAAAAAAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "3,0" - tiles: FAAAABQAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: EwAAABMAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAABoAAAAWAAAAGgAAABoAAAAaAAAAFgAAABkAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAGgAAABkAAAAUAAAAFAAAABQAAAAUAAAAGgAAABYAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAaAAAAAAAAABoAAAAZAAAAFAAAABQAAAAUAAAAFAAAABoAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGgAAAAAAAAAaAAAAGQAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAFgAAABoAAAAAAAAAGgAAABkAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAABYAAAAaAAAAAAAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABkAAAAWAAAAGgAAAAAAAAAAAAAAGgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFQAAABgAAAAVAAAAFQAAABUAAAAVAAAAGAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAABkAAAAVAAAAGQAAABkAAAAZAAAAFQAAABgAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAGQAAABgAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAZAAAAAAAAABkAAAAYAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAAAAAAAAZAAAAGAAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAFQAAABkAAAAAAAAAGQAAABgAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAABUAAAAZAAAAAAAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABgAAAAVAAAAGQAAAAAAAAAAAAAAGQAAAA== - ind: "-1,-2" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAWAAAAFgAAABYAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAQAAAAEAAAABAAAAAaAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEAAAABAAAAAQAAAAGgAAABkAAAAaAAAAFgAAABYAAAAWAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAABAAAAAQAAAAEAAAABoAAAAZAAAAGgAAABoAAAAaAAAAGgAAABoAAAAXAAAAFwAAABcAAAAXAAAAGgAAABkAAAAXAAAAFwAAABoAAAAaAAAAGQAAABoAAAAWAAAAFgAAABYAAAAaAAAAFwAAABcAAAAXAAAAFwAAABoAAAAZAAAAFwAAABcAAAAXAAAAGgAAABkAAAAaAAAAFgAAABYAAAAWAAAAGgAAABcAAAAXAAAAFwAAABcAAAAaAAAAGQAAABcAAAAXAAAAFwAAABoAAAAWAAAAGgAAABoAAAAXAAAAGgAAABoAAAAaAAAAGgAAABcAAAAaAAAAGgAAABoAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAABoAAAAXAAAAFwAAABcAAAAXAAAAFwAAABoAAAAaAAAAGgAAABcAAAAaAAAAGgAAABoAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAXAAAAFwAAABcAAAAaAAAAFwAAABcAAAAXAAAAFwAAABcAAAAXAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABcAAAAXAAAAFwAAABcAAAAXAAAAFwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAPAAAADwAAAA8AAAAZAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAADwAAAA8AAAAPAAAAGQAAABgAAAAZAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAAA8AAAAPAAAADwAAABkAAAAYAAAAGQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAGQAAABgAAAAWAAAAFgAAABkAAAAZAAAAGAAAABkAAAAVAAAAFQAAABUAAAAZAAAAFgAAABYAAAAWAAAAFgAAABkAAAAYAAAAFgAAABYAAAAWAAAAGQAAABgAAAAZAAAAFQAAABUAAAAVAAAAGQAAABYAAAAWAAAAFgAAABYAAAAZAAAAGAAAABYAAAAWAAAAFgAAABkAAAAVAAAAGQAAABkAAAAWAAAAGQAAABkAAAAZAAAAGQAAABYAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAGQAAABYAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAA== - ind: "-2,-2" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAXAAAAFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFwAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABcAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAFgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAFQAAAA== - ind: "-2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABkAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAABYAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABkAAAAWAAAAGgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABoAAAAaAAAAGgAAABoAAAAaAAAAFgAAABoAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAWAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAWAAAAFgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAGgAAABkAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAZAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABoAAAAaAAAAGgAAABoAAAAaAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABgAAAAVAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAYAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAABUAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABgAAAAVAAAAGQAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGAAAABkAAAAZAAAAGQAAABkAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABgAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAVAAAAFQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAGQAAABgAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAYAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAAA== - ind: "-3,0" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABoAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAaAAAAGgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABoAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAUAAAAFAAAABQAAAAUAAAAFAAAABYAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAaAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAGgAAABoAAAAaAAAAGgAAABoAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABkAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAAZAAAAGQAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAVAAAAFQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAATAAAAEwAAABMAAAATAAAAEwAAABUAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAAA== - ind: "-4,0" tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-3,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABkAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAZAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABoAAAAaAAAAGQAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABQAAAAUAAAAGgAAABkAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABYAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAUAAAAFAAAABQAAAAaAAAAGQAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABoAAAAaAAAAGgAAABQAAAAUAAAAGgAAABkAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAUAAAAFAAAABoAAAAZAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABoAAAAaAAAAFAAAABQAAAAaAAAAGQAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFAAAABQAAAAUAAAAGgAAABkAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAABQAAAAUAAAAFAAAABoAAAAZAAAAFgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABgAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAYAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABMAAAATAAAAGQAAABgAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABUAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAAEwAAABMAAAAZAAAAGAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABMAAAATAAAAGQAAABgAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAATAAAAEwAAABkAAAAYAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAEwAAABMAAAAZAAAAGAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABMAAAATAAAAGQAAABgAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABkAAAAYAAAAFQAAAA== - ind: "3,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAGgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABkAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAZAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAGQAAABoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAFgAAABoAAAAaAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABQAAAAUAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAVAAAAFQAAABgAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAYAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABUAAAAVAAAAGAAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "2,1" tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-3,1" @@ -452,9 +451,6 @@ entities: pos: -18.5,-7 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -466,9 +462,6 @@ entities: pos: -19.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 51 type: BoneSaw components: @@ -587,8 +580,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 64 type: Drill @@ -615,9 +606,6 @@ entities: pos: 18.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 67 type: Hemostat components: @@ -638,9 +626,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -793,9 +778,6 @@ entities: pos: -3.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 85 type: Table components: @@ -803,9 +785,6 @@ entities: pos: -2.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 86 type: Table components: @@ -813,9 +792,6 @@ entities: pos: -2.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 87 type: Table components: @@ -823,9 +799,6 @@ entities: pos: -3.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 88 type: ReinforcedWindow components: @@ -833,9 +806,6 @@ entities: pos: 28.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 89 type: ReinforcedWindow components: @@ -843,9 +813,6 @@ entities: pos: 27.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 90 type: ReinforcedWindow components: @@ -853,9 +820,6 @@ entities: pos: 26.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 91 type: LowWall components: @@ -863,9 +827,6 @@ entities: pos: 28.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 92 type: LowWall components: @@ -873,9 +834,6 @@ entities: pos: 27.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 93 type: LowWall components: @@ -883,9 +841,6 @@ entities: pos: 26.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 94 type: solid_wall components: @@ -893,9 +848,6 @@ entities: pos: -22.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 95 type: solid_wall components: @@ -903,9 +855,6 @@ entities: pos: -23.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 96 type: solid_wall components: @@ -913,9 +862,6 @@ entities: pos: -24.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 97 type: solid_wall components: @@ -923,9 +869,6 @@ entities: pos: -25.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 98 type: solid_wall components: @@ -933,9 +876,6 @@ entities: pos: -25.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 99 type: solid_wall components: @@ -943,9 +883,6 @@ entities: pos: -25.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 100 type: solid_wall components: @@ -953,9 +890,6 @@ entities: pos: -25.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 101 type: solid_wall components: @@ -963,9 +897,6 @@ entities: pos: -25.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 102 type: Brutepack components: @@ -1008,9 +939,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 107 type: WaterTankFull components: @@ -1019,9 +947,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 108 type: Basketball components: @@ -1038,8 +963,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 110 type: SignSomethingOld @@ -1049,8 +972,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 111 type: SignAtmos @@ -1060,8 +981,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 112 type: Paper @@ -1150,9 +1069,6 @@ entities: pos: 10.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 122 type: Chair components: @@ -1160,9 +1076,6 @@ entities: pos: 9.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 123 type: Chair components: @@ -1170,9 +1083,6 @@ entities: pos: 8.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 124 type: Stunbaton components: @@ -1254,9 +1164,6 @@ entities: pos: -14.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 131 type: Table components: @@ -1264,9 +1171,6 @@ entities: pos: -13.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 132 type: Table components: @@ -1274,9 +1178,6 @@ entities: pos: -14.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 133 type: SignEngineering components: @@ -1285,8 +1186,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 134 type: Poweredlight @@ -1295,9 +1194,6 @@ entities: pos: 41.000477,14 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -1308,9 +1204,6 @@ entities: - parent: 857 pos: -10,13.5 type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -1322,9 +1215,6 @@ entities: pos: 49.53657,5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -1340,8 +1230,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 138 type: SignDirectionalEng @@ -1350,8 +1238,6 @@ entities: pos: 5.987236,6.2578936 type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 139 type: SignBridge @@ -1360,8 +1246,6 @@ entities: pos: 5.6507263,22.5 type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 140 type: Poweredlight @@ -1369,9 +1253,6 @@ entities: - parent: 857 pos: -25.939785,7 type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -1383,9 +1264,6 @@ entities: pos: -15.231159,-17 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -1398,8 +1276,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 143 type: SignMedical @@ -1409,8 +1285,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 144 type: SignGravity @@ -1420,8 +1294,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 145 type: SignToolStorage @@ -1431,8 +1303,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 146 type: Poweredlight @@ -1441,9 +1311,6 @@ entities: pos: 28.73304,7 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -1456,8 +1323,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 148 type: SignChem @@ -1467,8 +1332,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 149 type: SignCargoDock @@ -1478,8 +1341,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 150 type: solid_wall @@ -1488,9 +1349,6 @@ entities: pos: 24.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 151 type: solid_wall components: @@ -1498,9 +1356,6 @@ entities: pos: 18.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 152 type: LowWall components: @@ -1508,9 +1363,6 @@ entities: pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 153 type: LowWall components: @@ -1518,9 +1370,6 @@ entities: pos: 21.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 154 type: SignDirectionalEvac components: @@ -1529,8 +1378,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 155 type: SignDirectionalSupply @@ -1540,8 +1387,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 156 type: AirlockMaintCargo @@ -1549,9 +1394,6 @@ entities: - parent: 857 pos: -24.5,-12.5 type: Transform - - flags: - - None - type: Destructible - uid: 157 type: ConveyorBelt components: @@ -1583,8 +1425,6 @@ entities: pos: 17.5,-0.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -1598,8 +1438,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -1612,8 +1450,6 @@ entities: pos: 16.5,-1.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1637,8 +1473,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1652,8 +1486,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1667,8 +1499,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1682,8 +1512,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1697,8 +1525,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1712,8 +1538,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1727,8 +1551,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1742,8 +1564,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1757,8 +1577,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1771,8 +1589,6 @@ entities: pos: -27.5,-10.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1786,8 +1602,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1801,8 +1615,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1816,8 +1628,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1831,8 +1641,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1846,8 +1654,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1861,8 +1667,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalJunction: @@ -1876,8 +1680,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1891,8 +1693,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1906,8 +1706,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1921,8 +1719,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1936,8 +1732,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -1953,8 +1747,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -1967,8 +1759,6 @@ entities: pos: -16.5,-15.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1982,8 +1772,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -1997,8 +1785,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2012,8 +1798,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2027,8 +1811,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2042,8 +1824,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2056,9 +1836,6 @@ entities: pos: -28.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 193 type: DisposalUnit components: @@ -2069,8 +1846,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -2084,8 +1859,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -2099,8 +1872,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2113,8 +1884,6 @@ entities: pos: 0.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2127,8 +1896,6 @@ entities: pos: -0.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2141,8 +1908,6 @@ entities: pos: -1.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2155,8 +1920,6 @@ entities: pos: -2.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2169,8 +1932,6 @@ entities: pos: -3.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2183,8 +1944,6 @@ entities: pos: -4.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2197,8 +1956,6 @@ entities: pos: -5.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -2214,8 +1971,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -2229,8 +1984,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2244,8 +1997,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2259,8 +2010,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2274,8 +2023,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -2291,8 +2038,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -2306,8 +2051,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2321,8 +2064,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2336,8 +2077,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2351,8 +2090,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2366,8 +2103,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -2383,8 +2118,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -2397,8 +2130,6 @@ entities: pos: 13.5,-1.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2411,8 +2142,6 @@ entities: pos: 14.5,-1.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2425,8 +2154,6 @@ entities: pos: 15.5,-1.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2440,8 +2167,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2461,8 +2186,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2476,8 +2199,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2491,8 +2212,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2506,8 +2225,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2521,8 +2238,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2536,8 +2251,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2551,8 +2264,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2566,8 +2277,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -2583,8 +2292,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -2598,8 +2305,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2613,8 +2318,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2628,8 +2331,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2643,8 +2344,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2658,8 +2357,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2673,8 +2370,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2688,8 +2383,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2703,8 +2396,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -2718,8 +2409,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2733,8 +2422,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2748,8 +2435,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -2765,8 +2450,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -2780,8 +2463,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -2795,8 +2476,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2810,8 +2489,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2825,8 +2502,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2840,8 +2515,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2855,8 +2528,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2870,8 +2541,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2885,8 +2554,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2900,8 +2567,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2915,8 +2580,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2930,8 +2593,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2945,8 +2606,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2960,8 +2619,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2974,8 +2631,6 @@ entities: pos: 1.5,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -2989,8 +2644,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3004,8 +2657,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3019,8 +2670,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3034,8 +2683,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3049,8 +2696,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3064,8 +2709,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3079,8 +2722,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3094,8 +2735,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3109,8 +2748,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3124,8 +2761,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3138,9 +2773,6 @@ entities: pos: 37.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 266 type: DisposalPipe components: @@ -3149,8 +2781,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3164,8 +2794,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3178,8 +2806,6 @@ entities: pos: 1.5,29.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3192,8 +2818,6 @@ entities: pos: 0.5,29.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3206,8 +2830,6 @@ entities: pos: -0.5,29.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3220,8 +2842,6 @@ entities: pos: -1.5,29.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3234,8 +2854,6 @@ entities: pos: -2.5,29.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -3251,8 +2869,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -3265,8 +2881,6 @@ entities: pos: -18.5,-10.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3280,8 +2894,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3295,8 +2907,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3310,8 +2920,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3325,8 +2933,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3340,8 +2946,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3355,8 +2959,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3370,8 +2972,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3385,8 +2985,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3400,8 +2998,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3415,8 +3011,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3430,8 +3024,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3445,8 +3037,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3460,8 +3050,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3475,8 +3063,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -3490,8 +3076,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3505,8 +3089,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3520,8 +3102,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3535,8 +3115,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3550,8 +3128,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3565,8 +3141,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3580,8 +3154,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3595,8 +3167,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -3612,8 +3182,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -3626,8 +3194,6 @@ entities: pos: -19.5,-10.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3641,8 +3207,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3656,8 +3220,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3671,8 +3233,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3692,8 +3252,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -3709,8 +3267,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -3723,9 +3279,6 @@ entities: pos: 36.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 306 type: Window components: @@ -3733,9 +3286,6 @@ entities: pos: 34.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 307 type: DisposalPipe components: @@ -3744,8 +3294,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3759,8 +3307,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3774,8 +3320,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3789,8 +3333,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3804,8 +3346,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3819,8 +3359,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3834,8 +3372,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3849,8 +3385,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3864,8 +3398,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3879,8 +3411,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3894,8 +3424,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3909,8 +3437,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3924,8 +3450,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3939,8 +3463,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3954,8 +3476,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3969,8 +3489,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3984,8 +3502,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -3999,8 +3515,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4014,8 +3528,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4029,8 +3541,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4044,8 +3554,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4059,8 +3567,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4074,8 +3580,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4089,8 +3593,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4104,8 +3606,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4119,8 +3619,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4134,8 +3632,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4149,8 +3645,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4163,8 +3657,6 @@ entities: pos: -20.5,-10.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4178,8 +3670,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -4195,8 +3685,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -4210,8 +3698,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4225,8 +3711,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -4239,8 +3723,6 @@ entities: pos: -21.5,-10.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4254,8 +3736,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4269,8 +3749,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -4283,8 +3761,6 @@ entities: pos: -22.5,-10.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4298,8 +3774,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4313,8 +3787,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4327,8 +3799,6 @@ entities: pos: -32.5,3.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -4342,8 +3812,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4357,8 +3825,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4372,8 +3838,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -4387,8 +3851,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -4402,8 +3864,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4417,8 +3877,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4432,8 +3890,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4447,8 +3903,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4462,8 +3916,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4477,8 +3929,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4492,8 +3942,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4507,8 +3955,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4522,8 +3968,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4537,8 +3981,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4552,8 +3994,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4567,8 +4007,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4582,8 +4020,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4597,8 +4033,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4614,8 +4048,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -4629,8 +4061,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4644,8 +4074,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4659,8 +4087,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4674,8 +4100,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4689,8 +4113,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4704,8 +4126,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4719,8 +4139,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4734,8 +4152,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4749,8 +4165,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4766,8 +4180,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -4781,8 +4193,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4796,8 +4206,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4811,8 +4219,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4826,8 +4232,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4841,8 +4245,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4856,8 +4258,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4871,8 +4271,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4886,8 +4284,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4901,8 +4297,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4916,8 +4310,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4931,8 +4323,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4946,8 +4336,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4961,8 +4349,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4976,8 +4362,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -4991,8 +4375,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5006,8 +4388,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5021,8 +4401,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5036,8 +4414,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5051,8 +4427,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5066,8 +4440,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5081,8 +4453,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5096,8 +4466,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5111,8 +4479,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -5126,8 +4492,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5141,8 +4505,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5156,8 +4518,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5171,8 +4531,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5188,8 +4546,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -5203,8 +4559,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5218,8 +4572,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5233,8 +4585,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -5250,8 +4600,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -5264,9 +4612,6 @@ entities: pos: -24.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 409 type: Window components: @@ -5274,9 +4619,6 @@ entities: pos: 32.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 410 type: ReinforcedWindow components: @@ -5284,9 +4626,6 @@ entities: pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 411 type: solid_wall components: @@ -5294,9 +4633,6 @@ entities: pos: -23.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 412 type: solid_wall components: @@ -5304,9 +4640,6 @@ entities: pos: -22.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 413 type: solid_wall components: @@ -5314,9 +4647,6 @@ entities: pos: -21.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 414 type: solid_wall components: @@ -5324,9 +4654,6 @@ entities: pos: -20.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 415 type: solid_wall components: @@ -5334,9 +4661,6 @@ entities: pos: -19.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 416 type: solid_wall components: @@ -5344,9 +4668,6 @@ entities: pos: -19.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 417 type: solid_wall components: @@ -5354,9 +4675,6 @@ entities: pos: -19.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 418 type: solid_wall components: @@ -5364,9 +4682,6 @@ entities: pos: -19.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 419 type: TrashSpawner components: @@ -5619,9 +4934,6 @@ entities: pos: 0.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 455 type: TrashSpawner components: @@ -5727,9 +5039,6 @@ entities: pos: -35.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 470 type: TrashSpawner components: @@ -5975,9 +5284,6 @@ entities: pos: -38.60578,1.9956734 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6066,9 +5372,6 @@ entities: pos: -16,-1.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6080,9 +5383,6 @@ entities: pos: -20.5,-3 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6094,9 +5394,6 @@ entities: pos: -20.5,2 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6145,9 +5442,6 @@ entities: pos: -16.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 525 type: AirlockMaintCommonLocked components: @@ -6155,9 +5449,6 @@ entities: pos: -16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 526 type: AirlockMaintCommonLocked components: @@ -6165,9 +5456,6 @@ entities: pos: -14.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 527 type: Table components: @@ -6175,9 +5463,6 @@ entities: pos: -15.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 528 type: solid_wall components: @@ -6185,9 +5470,6 @@ entities: pos: -14.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 529 type: solid_wall components: @@ -6195,9 +5477,6 @@ entities: pos: -21.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 530 type: SuspicionRifleSpawner components: @@ -6389,9 +5668,6 @@ entities: pos: 0.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 557 type: AirlockSecurityGlassLocked components: @@ -6401,9 +5677,6 @@ entities: pos: -2.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 558 type: Catwalk components: @@ -6418,9 +5691,6 @@ entities: pos: 13.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 560 type: Poweredlight components: @@ -6432,9 +5702,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6450,9 +5717,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6467,9 +5731,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -6487,9 +5748,6 @@ entities: - - Security - Command type: AccessReader - - flags: - - None - type: Destructible - uid: 564 type: AirlockExternalLocked components: @@ -6497,9 +5755,6 @@ entities: pos: 14.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 565 type: AirlockExternalLocked components: @@ -6512,9 +5767,6 @@ entities: - access: - - Cargo type: AccessReader - - flags: - - None - type: Destructible - uid: 566 type: AirlockExternalLocked components: @@ -6527,9 +5779,6 @@ entities: - access: - - Cargo type: AccessReader - - flags: - - None - type: Destructible - uid: 567 type: AirlockExternalLocked components: @@ -6542,9 +5791,6 @@ entities: - access: - - Cargo type: AccessReader - - flags: - - None - type: Destructible - uid: 568 type: AirlockExternalLocked components: @@ -6557,9 +5803,6 @@ entities: - access: - - Cargo type: AccessReader - - flags: - - None - type: Destructible - uid: 569 type: AirlockCargoGlassLocked components: @@ -6569,9 +5812,6 @@ entities: pos: 17.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 570 type: AirlockCargoGlassLocked components: @@ -6581,9 +5821,6 @@ entities: pos: 17.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 571 type: AirlockCargoGlassLocked components: @@ -6593,9 +5830,6 @@ entities: pos: 13.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 572 type: AirlockMaintCommandLocked components: @@ -6606,9 +5840,6 @@ entities: - access: - - External type: AccessReader - - flags: - - None - type: Destructible - uid: 573 type: AirlockCommandGlassLocked components: @@ -6621,9 +5852,6 @@ entities: - access: - - External type: AccessReader - - flags: - - None - type: Destructible - uid: 574 type: AirlockCommandGlassLocked components: @@ -6636,9 +5864,6 @@ entities: - access: - - External type: AccessReader - - flags: - - None - type: Destructible - uid: 575 type: AirlockCommandGlassLocked components: @@ -6648,9 +5873,6 @@ entities: pos: 4.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 576 type: AirlockCommandGlassLocked components: @@ -6660,9 +5882,6 @@ entities: pos: 2.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 577 type: AirlockVaultLocked components: @@ -6672,9 +5891,6 @@ entities: pos: -10.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 578 type: AirlockVaultLocked components: @@ -6684,9 +5900,6 @@ entities: pos: -12.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 579 type: ChairOfficeDark components: @@ -6695,9 +5908,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 580 type: ChairOfficeDark components: @@ -6707,9 +5917,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 581 type: Table components: @@ -6717,9 +5924,6 @@ entities: pos: -7.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 582 type: Table components: @@ -6727,9 +5931,6 @@ entities: pos: -7.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 583 type: Table components: @@ -6737,9 +5938,6 @@ entities: pos: -9.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 584 type: Table components: @@ -6747,9 +5945,6 @@ entities: pos: -8.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 585 type: AirlockMaintCommonLocked components: @@ -6757,9 +5952,6 @@ entities: pos: 27.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 586 type: AirlockMaintCommonLocked components: @@ -6767,9 +5959,6 @@ entities: pos: -31.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 587 type: AirlockMaintCommonLocked components: @@ -6780,9 +5969,6 @@ entities: - access: - - Service type: AccessReader - - flags: - - None - type: Destructible - uid: 588 type: Airlock components: @@ -6792,9 +5978,6 @@ entities: pos: -21.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 589 type: Airlock components: @@ -6804,9 +5987,6 @@ entities: pos: -26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 590 type: AirlockServiceLocked components: @@ -6819,9 +5999,6 @@ entities: - access: - - Theatre type: AccessReader - - flags: - - None - type: Destructible - uid: 591 type: AirlockGlass components: @@ -6831,9 +6008,6 @@ entities: pos: -26.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 592 type: AirlockServiceGlassLocked components: @@ -6846,9 +6020,6 @@ entities: - access: - - Maintenance type: AccessReader - - flags: - - None - type: Destructible - uid: 593 type: AirlockServiceGlassLocked components: @@ -6861,9 +6032,6 @@ entities: - access: - - Maintenance type: AccessReader - - flags: - - None - type: Destructible - uid: 594 type: AirlockGlass components: @@ -6873,9 +6041,6 @@ entities: pos: -26.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 595 type: AirlockScienceLocked components: @@ -6885,9 +6050,6 @@ entities: pos: -12.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 596 type: AirlockScienceLocked components: @@ -6897,9 +6059,6 @@ entities: pos: -12.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 597 type: AirlockCommandGlassLocked components: @@ -6913,9 +6072,6 @@ entities: - - Research - Command type: AccessReader - - flags: - - None - type: Destructible - uid: 598 type: AirlockCommandGlassLocked components: @@ -6929,9 +6085,6 @@ entities: - - Research - Command type: AccessReader - - flags: - - None - type: Destructible - uid: 599 type: AirlockCommandGlassLocked components: @@ -6945,9 +6098,6 @@ entities: - - Medical - Command type: AccessReader - - flags: - - None - type: Destructible - uid: 600 type: AirlockMedicalGlassLocked components: @@ -6957,9 +6107,6 @@ entities: pos: 17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 601 type: AirlockMedicalGlassLocked components: @@ -6969,9 +6116,6 @@ entities: pos: 7.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 602 type: AirlockEngineeringGlassLocked components: @@ -6981,9 +6125,6 @@ entities: pos: 30.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 603 type: AirlockEngineeringGlassLocked components: @@ -6993,9 +6134,6 @@ entities: pos: 30.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 604 type: AirlockMaintCommonLocked components: @@ -7006,9 +6144,6 @@ entities: - access: - - Janitor type: AccessReader - - flags: - - None - type: Destructible - uid: 605 type: AirlockMaintCommonLocked components: @@ -7016,9 +6151,6 @@ entities: pos: -32.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 606 type: AirlockMaintIntLocked components: @@ -7026,9 +6158,6 @@ entities: pos: -13.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 607 type: AirlockMaintIntLocked components: @@ -7036,9 +6165,6 @@ entities: pos: -12.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 608 type: AirlockMaintRnDLocked components: @@ -7046,9 +6172,6 @@ entities: pos: -4.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 609 type: AirlockMaintCommonLocked components: @@ -7056,9 +6179,6 @@ entities: pos: 5.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 610 type: AirlockMaintCommonLocked components: @@ -7066,9 +6186,6 @@ entities: pos: -16.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 611 type: AirlockSecurityGlassLocked components: @@ -7078,9 +6195,6 @@ entities: pos: -6.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 612 type: AirlockServiceGlassLocked components: @@ -7090,9 +6204,6 @@ entities: pos: -7.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 613 type: AirlockMaintEngiLocked components: @@ -7100,9 +6211,6 @@ entities: pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 614 type: AirlockServiceGlassLocked components: @@ -7112,9 +6220,6 @@ entities: pos: -10.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 615 type: AirlockMaintCommonLocked components: @@ -7125,9 +6230,6 @@ entities: - access: - - Service type: AccessReader - - flags: - - None - type: Destructible - uid: 616 type: AirlockVaultLocked components: @@ -7137,9 +6239,6 @@ entities: pos: 0.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 617 type: AirlockMaintCommonLocked components: @@ -7147,9 +6246,6 @@ entities: pos: 1.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 618 type: AirlockMaintCommonLocked components: @@ -7157,9 +6253,6 @@ entities: pos: -23.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 619 type: AirlockMaintCommonLocked components: @@ -7167,9 +6260,6 @@ entities: pos: -34.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 620 type: Airlock components: @@ -7179,9 +6269,6 @@ entities: pos: -22.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - access: - - Janitor type: AccessReader @@ -7192,9 +6279,6 @@ entities: pos: 15.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 622 type: AirlockMaintCommandLocked components: @@ -7205,9 +6289,6 @@ entities: - access: - - HeadOfPersonnel type: AccessReader - - flags: - - None - type: Destructible - uid: 623 type: Catwalk components: @@ -7228,9 +6309,6 @@ entities: - - Engineering - Command type: AccessReader - - flags: - - None - type: Destructible - uid: 625 type: AirlockMaintCommonLocked components: @@ -7238,9 +6316,6 @@ entities: pos: -33.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 626 type: AirlockScienceGlassLocked components: @@ -7250,9 +6325,6 @@ entities: pos: -3.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 627 type: AirlockScienceLocked components: @@ -7262,9 +6334,6 @@ entities: pos: 0.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 628 type: AirlockScienceLocked components: @@ -7274,9 +6343,6 @@ entities: pos: 0.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 629 type: AirlockMaintRnDLocked components: @@ -7284,9 +6350,6 @@ entities: pos: -11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 630 type: AirlockMaintMedLocked components: @@ -7294,9 +6357,6 @@ entities: pos: 20.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 631 type: AirlockMaintMedLocked components: @@ -7304,9 +6364,6 @@ entities: pos: 14.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 632 type: AirlockMaintCommonLocked components: @@ -7314,9 +6371,6 @@ entities: pos: 0.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 633 type: AirlockSecurityGlassLocked components: @@ -7326,9 +6380,6 @@ entities: pos: -9.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 634 type: AirlockSecurityGlassLocked components: @@ -7338,9 +6389,6 @@ entities: pos: -10.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 635 type: AirlockMedicalGlassLocked components: @@ -7350,9 +6398,6 @@ entities: pos: 8.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 636 type: AirlockMedicalGlassLocked components: @@ -7362,9 +6407,6 @@ entities: pos: 19.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 637 type: AirlockMedicalGlassLocked components: @@ -7374,9 +6416,6 @@ entities: pos: 20.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 638 type: AirlockMedicalGlassLocked components: @@ -7386,9 +6425,6 @@ entities: pos: 11.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 639 type: AirlockMedicalGlassLocked components: @@ -7398,9 +6434,6 @@ entities: pos: 10.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 640 type: AirlockMaintCommandLocked components: @@ -7408,9 +6441,6 @@ entities: pos: -1.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 641 type: AirlockMaintCommonLocked components: @@ -7418,9 +6448,6 @@ entities: pos: 21.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 642 type: AirlockMaintCommonLocked components: @@ -7428,9 +6455,6 @@ entities: pos: 6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 643 type: AirlockCommandLocked components: @@ -7443,9 +6467,6 @@ entities: - access: - - Captain type: AccessReader - - flags: - - None - type: Destructible - uid: 644 type: AirlockCommandGlassLocked components: @@ -7455,9 +6476,6 @@ entities: pos: 1.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 645 type: AirlockCommandGlassLocked components: @@ -7467,9 +6485,6 @@ entities: pos: 1.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 646 type: AirlockMaintRnDLocked components: @@ -7477,9 +6492,6 @@ entities: pos: -16.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 647 type: AirlockMaintCargoLocked components: @@ -7487,9 +6499,6 @@ entities: pos: 25.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 648 type: AirlockMaintEngiLocked components: @@ -7497,9 +6506,6 @@ entities: pos: 43.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 649 type: AirlockMaintEngiLocked components: @@ -7507,9 +6513,6 @@ entities: pos: 29.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 650 type: AirlockEngineeringLocked components: @@ -7519,9 +6522,6 @@ entities: pos: 40.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 651 type: AirlockEngineeringLocked components: @@ -7531,9 +6531,6 @@ entities: pos: 41.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 652 type: AirlockEngineeringGlassLocked components: @@ -7543,9 +6540,6 @@ entities: pos: 33.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 653 type: AirlockEngineeringGlassLocked components: @@ -7555,9 +6549,6 @@ entities: pos: 33.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 654 type: AirlockEngineeringLocked components: @@ -7567,9 +6558,6 @@ entities: pos: 49.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 655 type: AirlockSecurityGlassLocked components: @@ -7579,9 +6567,6 @@ entities: pos: -6.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 656 type: AirlockSecurityGlassLocked components: @@ -7591,9 +6576,6 @@ entities: pos: -5.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 657 type: AirlockSecurityGlassLocked components: @@ -7603,9 +6585,6 @@ entities: pos: -5.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 658 type: AirlockExternalLocked components: @@ -7615,9 +6594,6 @@ entities: pos: -39.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 659 type: AirlockExternalLocked components: @@ -7627,9 +6603,6 @@ entities: pos: -37.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 660 type: AirlockExternalLocked components: @@ -7639,9 +6612,6 @@ entities: pos: -41.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 661 type: LowWall components: @@ -7649,9 +6619,6 @@ entities: pos: -36.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 662 type: LowWall components: @@ -7659,9 +6626,6 @@ entities: pos: -37.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 663 type: AirlockExternalLocked components: @@ -7671,9 +6635,6 @@ entities: pos: -39.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 664 type: AirlockExternalLocked components: @@ -7683,9 +6644,6 @@ entities: pos: -39.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 665 type: AirlockExternalLocked components: @@ -7695,9 +6653,6 @@ entities: pos: -41.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 666 type: WardrobeWhite components: @@ -7709,9 +6664,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -7723,9 +6675,6 @@ entities: pos: 19.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 668 type: solid_wall components: @@ -7733,9 +6682,6 @@ entities: pos: -40.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 669 type: Poweredlight components: @@ -7743,9 +6689,6 @@ entities: pos: -34.001373,10.342238 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -7757,9 +6700,6 @@ entities: pos: -40.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 671 type: Table components: @@ -7767,9 +6707,6 @@ entities: pos: 19.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 672 type: Window components: @@ -7777,9 +6714,6 @@ entities: pos: 18.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 673 type: Window components: @@ -7787,9 +6721,6 @@ entities: pos: 17.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 674 type: LowWall components: @@ -7797,9 +6728,6 @@ entities: pos: 18.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 675 type: LowWall components: @@ -7807,9 +6735,6 @@ entities: pos: 17.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 676 type: solid_wall components: @@ -7817,9 +6742,6 @@ entities: pos: 16.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 677 type: LowWall components: @@ -7827,9 +6749,6 @@ entities: pos: -41.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 678 type: solid_wall components: @@ -7837,9 +6756,6 @@ entities: pos: 16.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 679 type: solid_wall components: @@ -7847,9 +6763,6 @@ entities: pos: 16.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 680 type: solid_wall components: @@ -7857,9 +6770,6 @@ entities: pos: 16.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 681 type: solid_wall components: @@ -7867,9 +6777,6 @@ entities: pos: 16.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 682 type: LowWall components: @@ -7877,9 +6784,6 @@ entities: pos: -40.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 683 type: solid_wall components: @@ -7887,9 +6791,6 @@ entities: pos: 17.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 684 type: solid_wall components: @@ -7897,9 +6798,6 @@ entities: pos: 20.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 685 type: solid_wall components: @@ -7907,9 +6805,6 @@ entities: pos: 20.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 686 type: solid_wall components: @@ -7917,9 +6812,6 @@ entities: pos: 20.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 687 type: LowWall components: @@ -7927,9 +6819,6 @@ entities: pos: -39.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 688 type: solid_wall components: @@ -7937,9 +6826,6 @@ entities: pos: 20.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 689 type: solid_wall components: @@ -7947,9 +6833,6 @@ entities: pos: 20.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 690 type: solid_wall components: @@ -7957,9 +6840,6 @@ entities: pos: 13.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 691 type: LowWall components: @@ -7967,9 +6847,6 @@ entities: pos: -39.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 692 type: solid_wall components: @@ -7977,9 +6854,6 @@ entities: pos: 13.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 693 type: solid_wall components: @@ -7987,9 +6861,6 @@ entities: pos: 13.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 694 type: solid_wall components: @@ -7997,9 +6868,6 @@ entities: pos: 13.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 695 type: solid_wall components: @@ -8007,9 +6875,6 @@ entities: pos: 13.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 696 type: solid_wall components: @@ -8017,9 +6882,6 @@ entities: pos: 14.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 697 type: LowWall components: @@ -8027,9 +6889,6 @@ entities: pos: -41.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 698 type: LowWall components: @@ -8037,9 +6896,6 @@ entities: pos: -40.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 699 type: solid_wall components: @@ -8047,9 +6903,6 @@ entities: pos: 15.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 700 type: solid_wall components: @@ -8057,9 +6910,6 @@ entities: pos: 16.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 701 type: LowWall components: @@ -8067,9 +6917,6 @@ entities: pos: -40.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 702 type: solid_wall components: @@ -8077,9 +6924,6 @@ entities: pos: 17.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 703 type: solid_wall components: @@ -8087,9 +6931,6 @@ entities: pos: 18.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 704 type: solid_wall components: @@ -8097,9 +6938,6 @@ entities: pos: 19.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 705 type: solid_wall components: @@ -8107,9 +6945,6 @@ entities: pos: 20.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 706 type: LowWall components: @@ -8117,9 +6952,6 @@ entities: pos: -41.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 707 type: solid_wall components: @@ -8127,9 +6959,6 @@ entities: pos: 21.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 708 type: solid_wall components: @@ -8137,9 +6966,6 @@ entities: pos: 22.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 709 type: solid_wall components: @@ -8147,9 +6973,6 @@ entities: pos: 23.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 710 type: LowWall components: @@ -8157,9 +6980,6 @@ entities: pos: -40.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 711 type: solid_wall components: @@ -8167,9 +6987,6 @@ entities: pos: 23.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 712 type: solid_wall components: @@ -8177,9 +6994,6 @@ entities: pos: 23.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 713 type: solid_wall components: @@ -8187,9 +7001,6 @@ entities: pos: 23.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 714 type: solid_wall components: @@ -8197,9 +7008,6 @@ entities: pos: 23.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 715 type: LowWall components: @@ -8207,9 +7015,6 @@ entities: pos: -39.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 716 type: solid_wall components: @@ -8217,9 +7022,6 @@ entities: pos: 45.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 717 type: SpawnPointStationEngineer components: @@ -8234,9 +7036,6 @@ entities: pos: -39.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 719 type: SpawnPointChiefEngineer components: @@ -8265,9 +7064,6 @@ entities: pos: -41.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 723 type: SpawnPointHeadOfSecurity components: @@ -8303,9 +7099,6 @@ entities: pos: -40.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 728 type: SpawnPointScientist components: @@ -8355,9 +7148,6 @@ entities: pos: -40.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 735 type: SpawnPointMedicalDoctor components: @@ -8393,9 +7183,6 @@ entities: pos: -40.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 740 type: SpawnPointMedicalDoctor components: @@ -8438,9 +7225,6 @@ entities: pos: -39.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 746 type: PottedPlantRandomPlastic components: @@ -8459,9 +7243,6 @@ entities: pos: -37.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 748 type: PottedPlantRandom components: @@ -8502,9 +7283,6 @@ entities: pos: -38.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 752 type: LowWall components: @@ -8512,9 +7290,6 @@ entities: pos: -38.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 753 type: LowWall components: @@ -8522,9 +7297,6 @@ entities: pos: -38.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 754 type: LowWall components: @@ -8532,9 +7304,6 @@ entities: pos: -37.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 755 type: LowWall components: @@ -8542,9 +7311,6 @@ entities: pos: -38.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 756 type: LowWall components: @@ -8552,9 +7318,6 @@ entities: pos: -39.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 757 type: LowWall components: @@ -8562,9 +7325,6 @@ entities: pos: -37.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 758 type: PottedPlantRandom components: @@ -8583,9 +7343,6 @@ entities: pos: -39.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 760 type: reinforced_wall components: @@ -8593,9 +7350,6 @@ entities: pos: 11.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 761 type: VendingMachineBooze components: @@ -8603,9 +7357,6 @@ entities: pos: -4.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 762 type: LockerBoozeFilled components: @@ -8617,9 +7368,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8646,9 +7394,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8675,9 +7420,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8693,9 +7435,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8733,9 +7472,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8751,9 +7487,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8769,9 +7502,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8798,9 +7528,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8838,9 +7565,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8856,9 +7580,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8874,9 +7595,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8892,9 +7610,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8910,9 +7625,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8928,9 +7640,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8946,9 +7655,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8964,9 +7670,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -8982,9 +7685,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9000,9 +7700,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9018,9 +7715,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9036,9 +7730,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9054,9 +7745,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9072,9 +7760,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9090,9 +7775,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9108,9 +7790,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9126,9 +7805,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9144,9 +7820,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9162,9 +7835,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9180,9 +7850,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9198,9 +7865,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9216,9 +7880,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9234,9 +7895,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9263,9 +7921,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9281,9 +7936,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9299,9 +7951,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9317,9 +7966,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9335,9 +7981,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9353,9 +7996,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9371,9 +8011,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9389,9 +8026,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9407,9 +8041,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9425,9 +8056,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9443,9 +8071,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9461,9 +8086,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9479,9 +8101,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9497,9 +8116,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9515,9 +8131,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9529,9 +8142,6 @@ entities: pos: -38.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 817 type: WardrobeEngineeringFilled components: @@ -9543,9 +8153,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9561,9 +8168,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9579,9 +8183,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9597,9 +8198,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9615,9 +8213,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9633,9 +8228,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9651,9 +8243,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9669,9 +8258,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9687,9 +8273,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9705,9 +8288,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9723,9 +8303,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9741,9 +8318,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9759,9 +8333,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -9858,8 +8429,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -9873,8 +8442,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -9888,8 +8455,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -9902,8 +8467,6 @@ entities: pos: -8.5,-14.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalBend: @@ -9917,8 +8480,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -9932,8 +8493,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -9947,8 +8506,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -9964,8 +8521,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -9979,8 +8534,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -9993,8 +8546,6 @@ entities: pos: -15.5,-15.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -10007,8 +8558,6 @@ entities: pos: -13.5,-15.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -10021,8 +8570,6 @@ entities: pos: -14.5,-15.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -10035,8 +8582,6 @@ entities: pos: -12.5,-15.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -10049,8 +8594,6 @@ entities: pos: -11.5,-15.5 type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -10064,8 +8607,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalTransit: @@ -21004,9 +19545,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -21019,9 +19557,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -21033,9 +19568,6 @@ entities: pos: -38.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 864 type: reinforced_wall components: @@ -21043,9 +19575,6 @@ entities: pos: 50.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 865 type: reinforced_wall components: @@ -21053,9 +19582,6 @@ entities: pos: 48.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 866 type: solid_wall components: @@ -21063,9 +19589,6 @@ entities: pos: 51.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 867 type: solid_wall components: @@ -21073,9 +19596,6 @@ entities: pos: 50.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 868 type: solid_wall components: @@ -21083,9 +19603,6 @@ entities: pos: 47.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 869 type: solid_wall components: @@ -21093,9 +19610,6 @@ entities: pos: 47.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 870 type: solid_wall components: @@ -21103,9 +19617,6 @@ entities: pos: 46.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 871 type: solid_wall components: @@ -21113,9 +19624,6 @@ entities: pos: 49.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 872 type: solid_wall components: @@ -21123,9 +19631,6 @@ entities: pos: 51.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 873 type: reinforced_wall components: @@ -21133,9 +19638,6 @@ entities: pos: 47.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 874 type: reinforced_wall components: @@ -21143,9 +19645,6 @@ entities: pos: 51.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 875 type: reinforced_wall components: @@ -21153,9 +19652,6 @@ entities: pos: 52.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 876 type: reinforced_wall components: @@ -21163,9 +19659,6 @@ entities: pos: 52.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 877 type: reinforced_wall components: @@ -21173,9 +19666,6 @@ entities: pos: 52.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 878 type: reinforced_wall components: @@ -21183,9 +19673,6 @@ entities: pos: 52.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 879 type: reinforced_wall components: @@ -21193,9 +19680,6 @@ entities: pos: 52.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 880 type: reinforced_wall components: @@ -21203,9 +19687,6 @@ entities: pos: 52.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 881 type: reinforced_wall components: @@ -21213,9 +19694,6 @@ entities: pos: 52.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 882 type: reinforced_wall components: @@ -21223,9 +19701,6 @@ entities: pos: 51.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 883 type: reinforced_wall components: @@ -21233,9 +19708,6 @@ entities: pos: 50.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 884 type: reinforced_wall components: @@ -21243,9 +19715,6 @@ entities: pos: 49.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 885 type: reinforced_wall components: @@ -21253,9 +19722,6 @@ entities: pos: 48.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 886 type: reinforced_wall components: @@ -21263,9 +19729,6 @@ entities: pos: 47.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 887 type: reinforced_wall components: @@ -21273,9 +19736,6 @@ entities: pos: 46.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 888 type: reinforced_wall components: @@ -21283,9 +19743,6 @@ entities: pos: 46.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 889 type: reinforced_wall components: @@ -21293,9 +19750,6 @@ entities: pos: 46.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 890 type: reinforced_wall components: @@ -21303,9 +19757,6 @@ entities: pos: 46.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 891 type: reinforced_wall components: @@ -21313,9 +19764,6 @@ entities: pos: 46.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 892 type: reinforced_wall components: @@ -21323,9 +19771,6 @@ entities: pos: 46.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 893 type: reinforced_wall components: @@ -21333,9 +19778,6 @@ entities: pos: 46.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 894 type: GravityGenerator components: @@ -21343,9 +19785,6 @@ entities: pos: 49.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 895 type: Table components: @@ -21353,9 +19792,6 @@ entities: pos: -18.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 896 type: PoweredSmallLight components: @@ -21367,9 +19803,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -21385,9 +19818,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -21403,9 +19833,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -21428,9 +19855,6 @@ entities: pos: -14.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 901 type: Table components: @@ -21438,9 +19862,6 @@ entities: pos: -14.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 902 type: Stool components: @@ -21450,9 +19871,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 903 type: PianoInstrument components: @@ -21462,9 +19880,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 904 type: VendingMachineTheater components: @@ -21472,9 +19887,6 @@ entities: pos: -17.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 905 type: SpawnPointSecurityOfficer components: @@ -21489,9 +19901,6 @@ entities: pos: -10.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 907 type: Table components: @@ -21499,9 +19908,6 @@ entities: pos: -10.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 908 type: Table components: @@ -21509,9 +19915,6 @@ entities: pos: -10.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 909 type: SpawnPointLatejoin components: @@ -21547,9 +19950,6 @@ entities: pos: -14.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 914 type: solid_wall components: @@ -21557,9 +19957,6 @@ entities: pos: -13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 915 type: solid_wall components: @@ -21567,9 +19964,6 @@ entities: pos: -12.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 916 type: solid_wall components: @@ -21577,9 +19971,6 @@ entities: pos: -11.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 917 type: solid_wall components: @@ -21587,9 +19978,6 @@ entities: pos: -10.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 918 type: solid_wall components: @@ -21597,9 +19985,6 @@ entities: pos: -10.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 919 type: solid_wall components: @@ -21607,9 +19992,6 @@ entities: pos: -14.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 920 type: solid_wall components: @@ -21617,9 +19999,6 @@ entities: pos: -13.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 921 type: solid_wall components: @@ -21627,9 +20006,6 @@ entities: pos: -11.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 922 type: solid_wall components: @@ -21637,9 +20013,6 @@ entities: pos: -10.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 923 type: solid_wall components: @@ -21647,9 +20020,6 @@ entities: pos: -15.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 924 type: solid_wall components: @@ -21657,9 +20027,6 @@ entities: pos: -15.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 925 type: solid_wall components: @@ -21667,9 +20034,6 @@ entities: pos: -15.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 926 type: solid_wall components: @@ -21677,9 +20041,6 @@ entities: pos: -15.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 927 type: solid_wall components: @@ -21687,9 +20048,6 @@ entities: pos: -15.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 928 type: solid_wall components: @@ -21697,9 +20055,6 @@ entities: pos: -12.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 929 type: solid_wall components: @@ -21707,9 +20062,6 @@ entities: pos: -13.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 930 type: solid_wall components: @@ -21717,9 +20069,6 @@ entities: pos: -14.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 931 type: solid_wall components: @@ -21727,9 +20076,6 @@ entities: pos: -15.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 932 type: solid_wall components: @@ -21737,9 +20083,6 @@ entities: pos: -20.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 933 type: solid_wall components: @@ -21747,9 +20090,6 @@ entities: pos: -17.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 934 type: solid_wall components: @@ -21757,9 +20097,6 @@ entities: pos: -18.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 935 type: solid_wall components: @@ -21767,9 +20104,6 @@ entities: pos: -19.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 936 type: solid_wall components: @@ -21777,9 +20111,6 @@ entities: pos: -20.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 937 type: solid_wall components: @@ -21787,9 +20118,6 @@ entities: pos: -20.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 938 type: Brutepack components: @@ -21814,8 +20142,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 941 type: SignSmoking @@ -21825,8 +20151,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 942 type: solid_wall @@ -21835,9 +20159,6 @@ entities: pos: -16.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 943 type: solid_wall components: @@ -21845,9 +20166,6 @@ entities: pos: -0.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 944 type: solid_wall components: @@ -21855,9 +20173,6 @@ entities: pos: 33.5,11.5 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 945 type: SignDirectionalBridge components: @@ -21866,8 +20181,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 946 type: Brutepack @@ -21885,9 +20198,6 @@ entities: pos: -26.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 948 type: solid_wall components: @@ -21895,9 +20205,6 @@ entities: pos: -27.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 949 type: solid_wall components: @@ -21905,9 +20212,6 @@ entities: pos: -28.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 950 type: solid_wall components: @@ -21915,9 +20219,6 @@ entities: pos: -29.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 951 type: solid_wall components: @@ -21925,9 +20226,6 @@ entities: pos: -30.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 952 type: solid_wall components: @@ -21935,9 +20233,6 @@ entities: pos: -31.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 953 type: solid_wall components: @@ -21945,9 +20240,6 @@ entities: pos: -32.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 954 type: solid_wall components: @@ -21955,9 +20247,6 @@ entities: pos: -33.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 955 type: solid_wall components: @@ -21965,9 +20254,6 @@ entities: pos: -34.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 956 type: solid_wall components: @@ -21975,9 +20261,6 @@ entities: pos: -34.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 957 type: solid_wall components: @@ -21985,9 +20268,6 @@ entities: pos: -34.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 958 type: solid_wall components: @@ -21995,9 +20275,6 @@ entities: pos: -34.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 959 type: Paper components: @@ -22016,9 +20293,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 961 type: Chair components: @@ -22027,9 +20301,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 962 type: Table components: @@ -22037,9 +20308,6 @@ entities: pos: 9.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 963 type: Table components: @@ -22047,9 +20315,6 @@ entities: pos: 9.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 964 type: Table components: @@ -22057,9 +20322,6 @@ entities: pos: 9.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 965 type: ComputerSupplyRequest components: @@ -22089,9 +20351,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 967 type: ComputerMedicalRecords components: @@ -22108,9 +20367,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 969 type: ChairOfficeDark components: @@ -22119,9 +20375,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 970 type: ChairOfficeDark components: @@ -22130,9 +20383,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 971 type: ChairOfficeDark components: @@ -22142,9 +20392,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 972 type: ChairOfficeDark components: @@ -22154,9 +20401,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 973 type: TableWood components: @@ -22164,9 +20408,6 @@ entities: pos: -1.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 974 type: TableWood components: @@ -22174,9 +20415,6 @@ entities: pos: -1.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 975 type: Pen components: @@ -22239,9 +20477,6 @@ entities: - parent: 857 pos: 6.5,20.5 type: Transform - - flags: - - None - type: Destructible - uid: 982 type: WarpPoint components: @@ -22268,9 +20503,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 985 type: ChairOfficeDark components: @@ -22280,9 +20512,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 986 type: ComputerComms components: @@ -22299,9 +20528,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 988 type: TableWood components: @@ -22309,9 +20535,6 @@ entities: pos: 8.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 989 type: TableWood components: @@ -22319,9 +20542,6 @@ entities: pos: 8.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 990 type: VendingMachineCigs components: @@ -22329,9 +20549,6 @@ entities: pos: 6.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 991 type: VendingMachineCoffee components: @@ -22339,9 +20556,6 @@ entities: pos: 0.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 992 type: VendingMachineCola components: @@ -22349,9 +20563,6 @@ entities: pos: 1.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 993 type: WarpPoint components: @@ -22411,9 +20622,6 @@ entities: pos: -15.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1000 type: Stool components: @@ -22422,9 +20630,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1001 type: Catwalk components: @@ -22440,27 +20645,18 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1003 type: VendingMachineSnack components: - parent: 857 pos: -0.5,-4.5 type: Transform - - flags: - - None - type: Breakable - uid: 1004 type: VendingMachineCigs components: - parent: 857 pos: 0.5,-4.5 type: Transform - - flags: - - None - type: Breakable - uid: 1005 type: Spoon components: @@ -22485,9 +20681,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1008 type: ChairWood components: @@ -22497,9 +20690,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1009 type: ChairWood components: @@ -22509,9 +20699,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1010 type: ChairWood components: @@ -22521,9 +20708,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1011 type: ChairWood components: @@ -22533,9 +20717,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1012 type: ChairWood components: @@ -22545,9 +20726,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1013 type: ChairWood components: @@ -22557,9 +20735,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1014 type: ChairWood components: @@ -22569,9 +20744,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1015 type: TableWood components: @@ -22579,9 +20751,6 @@ entities: pos: -3.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1016 type: TableWood components: @@ -22589,9 +20758,6 @@ entities: pos: -0.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1017 type: TableWood components: @@ -22599,9 +20765,6 @@ entities: pos: -6.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1018 type: TableWood components: @@ -22609,9 +20772,6 @@ entities: pos: -7.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1019 type: Arcade components: @@ -22635,9 +20795,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1022 type: StoolBar components: @@ -22647,9 +20804,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1023 type: StoolBar components: @@ -22659,9 +20813,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1024 type: StoolBar components: @@ -22671,9 +20822,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1025 type: StoolBar components: @@ -22683,9 +20831,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1026 type: StoolBar components: @@ -22695,9 +20840,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1027 type: Catwalk components: @@ -22754,9 +20896,6 @@ entities: pos: 39.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1035 type: Table components: @@ -22764,9 +20903,6 @@ entities: pos: -2.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1036 type: Table components: @@ -22774,9 +20910,6 @@ entities: pos: -3.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1037 type: Table components: @@ -22784,9 +20917,6 @@ entities: pos: -4.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1038 type: Table components: @@ -22794,9 +20924,6 @@ entities: pos: -5.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1039 type: Table components: @@ -22804,9 +20931,6 @@ entities: pos: -6.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1040 type: Table components: @@ -22814,9 +20938,6 @@ entities: pos: -7.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1041 type: Table components: @@ -22824,9 +20945,6 @@ entities: pos: -2.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1042 type: Poweredlight components: @@ -22838,9 +20956,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -22880,9 +20995,6 @@ entities: pos: -0.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1048 type: Table components: @@ -22890,9 +21002,6 @@ entities: pos: -1.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1049 type: Table components: @@ -22900,9 +21009,6 @@ entities: pos: -2.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1050 type: Protolathe components: @@ -22952,9 +21058,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1053 type: ChairOfficeLight components: @@ -22963,27 +21066,18 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1054 type: Table components: - parent: 857 pos: -8.5,-17.5 type: Transform - - flags: - - None - type: Destructible - uid: 1055 type: VendingMachineCoffee components: - parent: 857 pos: -7.5,-17.5 type: Transform - - flags: - - None - type: Breakable - uid: 1056 type: ChairOfficeLight components: @@ -22992,9 +21086,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1057 type: ChairOfficeLight components: @@ -23003,9 +21094,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1058 type: BaseResearchAndDevelopmentPointSource components: @@ -23020,9 +21108,6 @@ entities: pos: 0.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1060 type: Table components: @@ -23030,9 +21115,6 @@ entities: pos: 0.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1061 type: Table components: @@ -23040,9 +21122,6 @@ entities: pos: -2.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1062 type: Table components: @@ -23050,9 +21129,6 @@ entities: pos: -1.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1063 type: Table components: @@ -23060,9 +21136,6 @@ entities: pos: -0.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1064 type: PoweredSmallLight components: @@ -23074,9 +21147,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23094,9 +21164,6 @@ entities: pos: -38.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1067 type: SignScience components: @@ -23105,8 +21172,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1068 type: Poweredlight @@ -23119,9 +21184,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23137,9 +21199,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23154,9 +21213,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23169,9 +21225,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23194,9 +21247,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23212,9 +21262,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23230,9 +21277,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23248,9 +21292,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23266,9 +21307,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23284,9 +21322,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23301,9 +21336,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23319,9 +21351,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23333,9 +21362,6 @@ entities: pos: -6.5,-29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1082 type: ReinforcedWindow components: @@ -23343,9 +21369,6 @@ entities: pos: -6.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1083 type: ReinforcedWindow components: @@ -23353,9 +21376,6 @@ entities: pos: -7.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1084 type: ReinforcedWindow components: @@ -23363,9 +21383,6 @@ entities: pos: -8.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1085 type: ReinforcedWindow components: @@ -23373,9 +21390,6 @@ entities: pos: -9.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1086 type: ReinforcedWindow components: @@ -23383,9 +21397,6 @@ entities: pos: -10.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1087 type: ReinforcedWindow components: @@ -23393,9 +21404,6 @@ entities: pos: -10.5,-29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1088 type: LowWall components: @@ -23403,9 +21411,6 @@ entities: pos: -8.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1089 type: LowWall components: @@ -23413,9 +21418,6 @@ entities: pos: -6.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1090 type: LowWall components: @@ -23423,9 +21425,6 @@ entities: pos: -7.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1091 type: LowWall components: @@ -23433,9 +21432,6 @@ entities: pos: -6.5,-29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1092 type: LowWall components: @@ -23443,9 +21439,6 @@ entities: pos: -9.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1093 type: LowWall components: @@ -23453,9 +21446,6 @@ entities: pos: -10.5,-30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1094 type: LowWall components: @@ -23463,9 +21453,6 @@ entities: pos: -10.5,-29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1095 type: Table components: @@ -23473,9 +21460,6 @@ entities: pos: -4.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1096 type: Table components: @@ -23483,9 +21467,6 @@ entities: pos: -4.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1097 type: SpawnPointAssistant components: @@ -23543,9 +21524,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23559,9 +21537,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1105 type: Table components: @@ -23569,9 +21544,6 @@ entities: pos: 23.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1106 type: Table components: @@ -23579,9 +21551,6 @@ entities: pos: 23.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1107 type: Table components: @@ -23589,9 +21558,6 @@ entities: pos: 23.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1108 type: ComputerMedicalRecords components: @@ -23625,8 +21591,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -23641,8 +21605,6 @@ entities: - entryDelay: 0 type: DisposalUnit - deadThreshold: 100 - flags: - - None type: Destructible - containers: DisposalUnit: @@ -23802,9 +21764,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23820,9 +21779,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23837,9 +21793,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23855,9 +21808,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -23869,9 +21819,6 @@ entities: pos: 17.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1135 type: Window components: @@ -23879,9 +21826,6 @@ entities: pos: 16.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1136 type: Window components: @@ -23889,9 +21833,6 @@ entities: pos: 15.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1137 type: LowWall components: @@ -23899,9 +21840,6 @@ entities: pos: 17.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1138 type: LowWall components: @@ -23909,9 +21847,6 @@ entities: pos: 16.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1139 type: LowWall components: @@ -23919,9 +21854,6 @@ entities: pos: 15.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1140 type: MedicalScanner components: @@ -23929,9 +21861,6 @@ entities: pos: 16.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: MedicalScanner-bodyContainer: type: Content.Server.GameObjects.ContainerSlot @@ -23943,9 +21872,6 @@ entities: pos: -38.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1142 type: Table components: @@ -23953,9 +21879,6 @@ entities: pos: 30.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1143 type: MedicalScanner components: @@ -23963,9 +21886,6 @@ entities: pos: 16.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: MedicalScanner-bodyContainer: type: Content.Server.GameObjects.ContainerSlot @@ -23986,9 +21906,6 @@ entities: pos: 9.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1146 type: Catwalk components: @@ -24003,9 +21920,6 @@ entities: pos: 10.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1148 type: Catwalk components: @@ -24020,9 +21934,6 @@ entities: pos: 6.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1150 type: Table components: @@ -24030,9 +21941,6 @@ entities: pos: 6.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1151 type: Catwalk components: @@ -24047,9 +21955,6 @@ entities: pos: 6.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1153 type: Table components: @@ -24057,9 +21962,6 @@ entities: pos: 6.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1154 type: CrateMedical components: @@ -24071,9 +21973,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -24085,9 +21984,6 @@ entities: pos: 23.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1156 type: Table components: @@ -24095,9 +21991,6 @@ entities: pos: 22.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1157 type: Table components: @@ -24105,9 +21998,6 @@ entities: pos: 21.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1158 type: VendingMachineMedical components: @@ -24115,9 +22005,6 @@ entities: pos: 6.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 1159 type: VendingMachineMedical components: @@ -24125,9 +22012,6 @@ entities: pos: 19.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 1160 type: LockerMedical components: @@ -24139,9 +22023,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -24164,9 +22045,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -24223,9 +22101,6 @@ entities: pos: 13.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1169 type: LockerChemistry components: @@ -24237,9 +22112,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -24255,9 +22127,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -24276,9 +22145,6 @@ entities: pos: -12.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1173 type: Chair components: @@ -24288,9 +22154,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1174 type: Chair components: @@ -24300,9 +22163,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1175 type: LockerHeadOfSecurityFilled components: @@ -24314,9 +22174,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -24328,9 +22185,6 @@ entities: pos: 15.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1177 type: Table components: @@ -24338,9 +22192,6 @@ entities: pos: 15.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1178 type: Table components: @@ -24348,9 +22199,6 @@ entities: pos: 14.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1179 type: chem_master components: @@ -24369,9 +22217,6 @@ entities: pos: 18.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1181 type: Table components: @@ -24379,9 +22224,6 @@ entities: pos: 18.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1182 type: Table components: @@ -24389,9 +22231,6 @@ entities: pos: 14.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1183 type: chem_dispenser components: @@ -24419,9 +22258,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1186 type: Table components: @@ -24429,9 +22265,6 @@ entities: pos: 6.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1187 type: Table components: @@ -24439,9 +22272,6 @@ entities: pos: 7.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1188 type: Table components: @@ -24449,9 +22279,6 @@ entities: pos: 8.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1189 type: Table components: @@ -24459,9 +22286,6 @@ entities: pos: 8.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1190 type: Table components: @@ -24469,9 +22293,6 @@ entities: pos: 8.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1191 type: LowWall components: @@ -24479,9 +22300,6 @@ entities: pos: -38.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1192 type: LowWall components: @@ -24489,9 +22307,6 @@ entities: pos: -37.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1193 type: SpawnPointSecurityOfficer components: @@ -24513,9 +22328,6 @@ entities: pos: -34.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1196 type: solid_wall components: @@ -24523,9 +22335,6 @@ entities: pos: -38.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1197 type: Poweredlight components: @@ -24537,9 +22346,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24551,7 +22357,7 @@ entities: pos: -35.166924,-3.5 rot: 3.141592653589793 rad type: Transform - - startingCharge: 29016.037 + - startingCharge: 29232.688 type: Battery - uid: 1199 type: Poweredlight @@ -24564,9 +22370,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24579,8 +22382,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1201 type: Window @@ -24589,9 +22390,6 @@ entities: pos: -18.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1202 type: Window components: @@ -24599,9 +22397,6 @@ entities: pos: -19.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1203 type: LowWall components: @@ -24609,9 +22404,6 @@ entities: pos: -19.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1204 type: LowWall components: @@ -24619,9 +22411,6 @@ entities: pos: -18.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1205 type: Poweredlight components: @@ -24633,9 +22422,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24651,9 +22437,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24665,9 +22448,6 @@ entities: pos: 8.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1208 type: Table components: @@ -24675,9 +22455,6 @@ entities: pos: 7.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1209 type: PoweredSmallLight components: @@ -24689,9 +22466,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24706,9 +22480,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24731,9 +22502,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1213 type: Poweredlight components: @@ -24745,9 +22513,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24759,9 +22524,6 @@ entities: pos: 10.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1215 type: Table components: @@ -24769,9 +22531,6 @@ entities: pos: -7.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1216 type: ChairOfficeDark components: @@ -24781,9 +22540,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1217 type: Chair components: @@ -24792,9 +22548,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1218 type: Food4NoRaisins components: @@ -24817,9 +22570,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24835,9 +22585,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24851,9 +22598,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24868,9 +22612,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24894,9 +22635,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24912,9 +22650,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24930,9 +22665,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24948,9 +22680,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24966,9 +22695,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -24984,9 +22710,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -25017,9 +22740,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -25044,9 +22764,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -25061,9 +22778,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25078,9 +22792,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25092,9 +22803,6 @@ entities: pos: 10.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1238 type: Table components: @@ -25102,9 +22810,6 @@ entities: pos: 10.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1239 type: PoweredSmallLight components: @@ -25116,9 +22821,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25133,9 +22835,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25150,9 +22849,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25168,9 +22864,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -25186,9 +22879,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25200,9 +22890,6 @@ entities: pos: -34.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 1245 type: VendingMachineSnack components: @@ -25210,9 +22897,6 @@ entities: pos: -22.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 1246 type: Table components: @@ -25220,9 +22904,6 @@ entities: pos: 15.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1247 type: Table components: @@ -25230,9 +22911,6 @@ entities: pos: 18.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1248 type: Poweredlight components: @@ -25244,9 +22922,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25260,9 +22935,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25274,9 +22946,6 @@ entities: pos: -29.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1251 type: Table components: @@ -25284,9 +22953,6 @@ entities: pos: -29.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1252 type: LowWall components: @@ -25294,9 +22960,6 @@ entities: pos: -36.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1253 type: LowWall components: @@ -25304,9 +22967,6 @@ entities: pos: -35.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1254 type: LowWall components: @@ -25314,9 +22974,6 @@ entities: pos: -8.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1255 type: LowWall components: @@ -25324,9 +22981,6 @@ entities: pos: -7.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1256 type: LowWall components: @@ -25334,9 +22988,6 @@ entities: pos: -6.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1257 type: solid_wall components: @@ -25344,9 +22995,6 @@ entities: pos: -33.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1258 type: LowWall components: @@ -25354,9 +23002,6 @@ entities: pos: -5.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1259 type: Chair components: @@ -25365,9 +23010,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1260 type: solid_wall components: @@ -25375,9 +23017,6 @@ entities: pos: -33.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1261 type: PoweredSmallLight components: @@ -25389,9 +23028,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25407,9 +23043,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25425,9 +23058,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25443,9 +23073,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25461,9 +23088,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25485,9 +23109,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25503,9 +23124,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25521,9 +23139,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25539,9 +23154,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25553,9 +23165,6 @@ entities: pos: -33.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1272 type: VendingMachineEngivend components: @@ -25563,9 +23172,6 @@ entities: pos: 31.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 1273 type: Table components: @@ -25573,9 +23179,6 @@ entities: pos: 25.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1274 type: Table components: @@ -25583,18 +23186,12 @@ entities: pos: 29.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1275 type: Poweredlight components: - parent: 857 pos: 6.0308504,2 type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25610,9 +23207,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25627,9 +23221,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25644,9 +23235,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25659,8 +23247,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1280 type: Poweredlight @@ -25672,9 +23258,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25689,9 +23272,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25707,9 +23287,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25723,9 +23300,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25741,9 +23315,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25759,9 +23330,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25774,9 +23342,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25788,9 +23353,6 @@ entities: pos: -1.5,19 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25806,9 +23368,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25820,9 +23379,6 @@ entities: pos: -6.0158176,18 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25835,9 +23391,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25853,9 +23406,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25867,9 +23417,6 @@ entities: pos: -34.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1293 type: reinforced_wall components: @@ -25877,9 +23424,6 @@ entities: pos: -10.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1294 type: reinforced_wall components: @@ -25887,9 +23431,6 @@ entities: pos: -10.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1295 type: PoweredSmallLight components: @@ -25901,9 +23442,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25915,9 +23453,6 @@ entities: pos: 1.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1297 type: PoweredSmallLight components: @@ -25929,9 +23464,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25946,9 +23478,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25962,9 +23491,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25977,9 +23503,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -25995,9 +23518,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26013,9 +23533,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26031,9 +23548,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26049,9 +23563,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26066,9 +23577,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26084,9 +23592,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26102,9 +23607,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26120,9 +23622,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26134,9 +23633,6 @@ entities: pos: -34.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1310 type: solid_wall components: @@ -26144,9 +23640,6 @@ entities: pos: -34.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1311 type: Poweredlight components: @@ -26158,9 +23651,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26172,9 +23662,6 @@ entities: pos: -34.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1313 type: solid_wall components: @@ -26182,9 +23669,6 @@ entities: pos: -34.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1314 type: solid_wall components: @@ -26192,9 +23676,6 @@ entities: pos: 8.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1315 type: solid_wall components: @@ -26202,9 +23683,6 @@ entities: pos: 7.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1316 type: PoweredSmallLight components: @@ -26213,9 +23691,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26230,9 +23705,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26248,9 +23720,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26265,9 +23734,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26283,9 +23749,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26301,9 +23764,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26319,9 +23779,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26337,9 +23794,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26353,9 +23807,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26370,9 +23821,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26388,9 +23836,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26405,9 +23850,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26420,9 +23862,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26434,9 +23873,6 @@ entities: pos: -34.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1330 type: solid_wall components: @@ -26444,9 +23880,6 @@ entities: pos: -34.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1331 type: Poweredlight components: @@ -26458,9 +23891,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26476,9 +23906,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26494,9 +23921,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26511,9 +23935,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26526,8 +23947,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1336 type: Poweredlight @@ -26540,9 +23959,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26554,9 +23970,6 @@ entities: pos: -34.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1338 type: Poweredlight components: @@ -26568,9 +23981,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26583,8 +23993,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1340 type: solid_wall @@ -26593,9 +24001,6 @@ entities: pos: -31.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1341 type: Poweredlight components: @@ -26606,9 +24011,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26624,9 +24026,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26642,9 +24041,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26659,9 +24055,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26673,9 +24066,6 @@ entities: pos: 51.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1346 type: solid_wall components: @@ -26683,9 +24073,6 @@ entities: pos: 47.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1347 type: ChairOfficeLight components: @@ -26695,9 +24082,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1348 type: ChairOfficeLight components: @@ -26707,9 +24091,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1349 type: Poweredlight components: @@ -26721,9 +24102,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26739,9 +24117,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26757,9 +24132,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26773,9 +24145,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26791,9 +24160,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26805,9 +24171,6 @@ entities: pos: -31.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1355 type: PoweredSmallLight components: @@ -26819,9 +24182,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26837,9 +24197,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26855,9 +24212,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26869,9 +24223,6 @@ entities: pos: -31.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1359 type: solid_wall components: @@ -26879,9 +24230,6 @@ entities: pos: -31.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1360 type: ApcExtensionCable components: @@ -26890,8 +24238,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1361 type: solid_wall @@ -26900,9 +24246,6 @@ entities: pos: -31.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1362 type: PoweredSmallLight components: @@ -26914,9 +24257,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26928,9 +24268,6 @@ entities: pos: 45.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1364 type: solid_wall components: @@ -26938,9 +24275,6 @@ entities: pos: 45.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1365 type: PoweredSmallLight components: @@ -26952,9 +24286,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -26969,9 +24300,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27011,9 +24339,6 @@ entities: pos: -30.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1372 type: PoweredSmallLight components: @@ -27024,9 +24349,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27038,9 +24360,6 @@ entities: pos: -25.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1374 type: PoweredSmallLight components: @@ -27051,9 +24370,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27069,9 +24385,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27087,9 +24400,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27105,9 +24415,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27123,9 +24430,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27141,9 +24445,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27158,9 +24459,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27176,9 +24474,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27191,8 +24486,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1383 type: Poweredlight @@ -27204,9 +24497,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27222,9 +24512,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27240,9 +24527,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27257,9 +24541,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27275,9 +24556,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27289,9 +24567,6 @@ entities: pos: -27.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1389 type: solid_wall components: @@ -27299,9 +24574,6 @@ entities: pos: -26.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1390 type: Poweredlight components: @@ -27310,9 +24582,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27326,9 +24595,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27344,9 +24610,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27359,9 +24622,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27373,8 +24633,6 @@ entities: pos: -7.6996727,-5.5 type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1395 type: reinforced_wall @@ -27383,9 +24641,6 @@ entities: pos: 12.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1396 type: Poweredlight components: @@ -27397,9 +24652,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27415,9 +24667,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27432,9 +24681,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -27446,8 +24692,6 @@ entities: pos: 18.507353,6.5 type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1400 type: WaterTankFull @@ -27458,9 +24702,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1401 type: WaterTankFull components: @@ -27470,9 +24711,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1402 type: ReinforcedWindow components: @@ -27480,9 +24718,6 @@ entities: pos: 51.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1403 type: solid_wall components: @@ -27490,9 +24725,6 @@ entities: pos: -26.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1404 type: solid_wall components: @@ -27500,9 +24732,6 @@ entities: pos: -26.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1405 type: ReinforcedWindow components: @@ -27510,9 +24739,6 @@ entities: pos: 51.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1406 type: Window components: @@ -27520,9 +24746,6 @@ entities: pos: 11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1407 type: Window components: @@ -27530,9 +24753,6 @@ entities: pos: 10.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1408 type: Window components: @@ -27540,9 +24760,6 @@ entities: pos: 9.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1409 type: ReinforcedWindow components: @@ -27550,9 +24767,6 @@ entities: pos: 5.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1410 type: ReinforcedWindow components: @@ -27560,9 +24774,6 @@ entities: pos: 5.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1411 type: ReinforcedWindow components: @@ -27570,9 +24781,6 @@ entities: pos: 4.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1412 type: ReinforcedWindow components: @@ -27580,9 +24788,6 @@ entities: pos: 3.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1413 type: ReinforcedWindow components: @@ -27590,9 +24795,6 @@ entities: pos: 2.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1414 type: Window components: @@ -27600,9 +24802,6 @@ entities: pos: -1.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1415 type: Window components: @@ -27610,9 +24809,6 @@ entities: pos: -0.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1416 type: ReinforcedWindow components: @@ -27620,9 +24816,6 @@ entities: pos: 3.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1417 type: ReinforcedWindow components: @@ -27630,9 +24823,6 @@ entities: pos: 10.5,29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1418 type: ReinforcedWindow components: @@ -27640,9 +24830,6 @@ entities: pos: 9.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1419 type: ReinforcedWindow components: @@ -27650,9 +24837,6 @@ entities: pos: 9.5,31.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1420 type: ReinforcedWindow components: @@ -27660,9 +24844,6 @@ entities: pos: 8.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1421 type: ReinforcedWindow components: @@ -27670,9 +24851,6 @@ entities: pos: 8.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1422 type: ReinforcedWindow components: @@ -27680,9 +24858,6 @@ entities: pos: 7.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1423 type: ReinforcedWindow components: @@ -27690,9 +24865,6 @@ entities: pos: 6.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1424 type: ReinforcedWindow components: @@ -27700,9 +24872,6 @@ entities: pos: 5.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1425 type: ReinforcedWindow components: @@ -27710,9 +24879,6 @@ entities: pos: 4.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1426 type: ReinforcedWindow components: @@ -27720,9 +24886,6 @@ entities: pos: 3.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1427 type: ReinforcedWindow components: @@ -27730,9 +24893,6 @@ entities: pos: 2.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1428 type: ReinforcedWindow components: @@ -27740,9 +24900,6 @@ entities: pos: 1.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1429 type: ReinforcedWindow components: @@ -27750,9 +24907,6 @@ entities: pos: 0.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1430 type: ReinforcedWindow components: @@ -27760,9 +24914,6 @@ entities: pos: -0.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1431 type: ReinforcedWindow components: @@ -27770,9 +24921,6 @@ entities: pos: -1.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1432 type: ReinforcedWindow components: @@ -27780,9 +24928,6 @@ entities: pos: -1.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1433 type: ReinforcedWindow components: @@ -27790,9 +24935,6 @@ entities: pos: -3.5,29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1434 type: ReinforcedWindow components: @@ -27800,9 +24942,6 @@ entities: pos: -2.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1435 type: ReinforcedWindow components: @@ -27810,9 +24949,6 @@ entities: pos: -2.5,31.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1436 type: Window components: @@ -27820,9 +24956,6 @@ entities: pos: -7.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1437 type: Window components: @@ -27830,9 +24963,6 @@ entities: pos: -10.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1438 type: ReinforcedWindow components: @@ -27840,9 +24970,6 @@ entities: pos: -7.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1439 type: ReinforcedWindow components: @@ -27850,9 +24977,6 @@ entities: pos: -8.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1440 type: ReinforcedWindow components: @@ -27860,9 +24984,6 @@ entities: pos: -3.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1441 type: ReinforcedWindow components: @@ -27870,9 +24991,6 @@ entities: pos: -0.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1442 type: ReinforcedWindow components: @@ -27880,9 +24998,6 @@ entities: pos: 0.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1443 type: ReinforcedWindow components: @@ -27890,9 +25005,6 @@ entities: pos: -0.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1444 type: ReinforcedWindow components: @@ -27900,9 +25012,6 @@ entities: pos: -2.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1445 type: ReinforcedWindow components: @@ -27910,9 +25019,6 @@ entities: pos: -3.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1446 type: solid_wall components: @@ -27920,9 +25026,6 @@ entities: pos: -28.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1447 type: solid_wall components: @@ -27930,9 +25033,6 @@ entities: pos: -29.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1448 type: ReinforcedWindow components: @@ -27940,9 +25040,6 @@ entities: pos: -35.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1449 type: ReinforcedWindow components: @@ -27950,9 +25047,6 @@ entities: pos: -36.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1450 type: ReinforcedWindow components: @@ -27960,9 +25054,6 @@ entities: pos: -37.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1451 type: solid_wall components: @@ -27970,9 +25061,6 @@ entities: pos: -39.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1452 type: solid_wall components: @@ -27980,9 +25068,6 @@ entities: pos: -25.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1453 type: ReinforcedWindow components: @@ -27990,9 +25075,6 @@ entities: pos: -40.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1454 type: ReinforcedWindow components: @@ -28000,9 +25082,6 @@ entities: pos: -41.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1455 type: ReinforcedWindow components: @@ -28010,9 +25089,6 @@ entities: pos: -40.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1456 type: ReinforcedWindow components: @@ -28020,9 +25096,6 @@ entities: pos: -39.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1457 type: ReinforcedWindow components: @@ -28030,9 +25103,6 @@ entities: pos: -39.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1458 type: ReinforcedWindow components: @@ -28040,9 +25110,6 @@ entities: pos: -41.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1459 type: ReinforcedWindow components: @@ -28050,9 +25117,6 @@ entities: pos: -40.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1460 type: ReinforcedWindow components: @@ -28060,9 +25124,6 @@ entities: pos: -40.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1461 type: ReinforcedWindow components: @@ -28070,9 +25131,6 @@ entities: pos: -41.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1462 type: ReinforcedWindow components: @@ -28080,9 +25138,6 @@ entities: pos: -40.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1463 type: ReinforcedWindow components: @@ -28090,9 +25145,6 @@ entities: pos: -39.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1464 type: ReinforcedWindow components: @@ -28100,9 +25152,6 @@ entities: pos: -39.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1465 type: ReinforcedWindow components: @@ -28110,9 +25159,6 @@ entities: pos: -41.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1466 type: ReinforcedWindow components: @@ -28120,9 +25166,6 @@ entities: pos: -40.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1467 type: ReinforcedWindow components: @@ -28130,9 +25173,6 @@ entities: pos: -40.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1468 type: ReinforcedWindow components: @@ -28140,9 +25180,6 @@ entities: pos: -40.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1469 type: ReinforcedWindow components: @@ -28150,9 +25187,6 @@ entities: pos: -39.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1470 type: ReinforcedWindow components: @@ -28160,9 +25194,6 @@ entities: pos: -38.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1471 type: ReinforcedWindow components: @@ -28170,9 +25201,6 @@ entities: pos: -38.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1472 type: ReinforcedWindow components: @@ -28180,9 +25208,6 @@ entities: pos: -38.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1473 type: solid_wall components: @@ -28190,9 +25215,6 @@ entities: pos: -38.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1474 type: ReinforcedWindow components: @@ -28200,9 +25222,6 @@ entities: pos: -39.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1475 type: ReinforcedWindow components: @@ -28210,9 +25229,6 @@ entities: pos: -38.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1476 type: ReinforcedWindow components: @@ -28220,9 +25236,6 @@ entities: pos: -39.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1477 type: ReinforcedWindow components: @@ -28230,9 +25243,6 @@ entities: pos: -37.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1478 type: ReinforcedWindow components: @@ -28240,9 +25250,6 @@ entities: pos: -38.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1479 type: ReinforcedWindow components: @@ -28250,9 +25257,6 @@ entities: pos: -38.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1480 type: ReinforcedWindow components: @@ -28260,9 +25264,6 @@ entities: pos: -38.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1481 type: ReinforcedWindow components: @@ -28270,9 +25271,6 @@ entities: pos: -38.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1482 type: ReinforcedWindow components: @@ -28280,9 +25278,6 @@ entities: pos: -38.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1483 type: ReinforcedWindow components: @@ -28290,9 +25285,6 @@ entities: pos: -37.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1484 type: ReinforcedWindow components: @@ -28300,9 +25292,6 @@ entities: pos: -36.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1485 type: ReinforcedWindow components: @@ -28310,9 +25299,6 @@ entities: pos: -35.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1486 type: LowWall components: @@ -28320,9 +25306,6 @@ entities: pos: -27.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1487 type: solid_wall components: @@ -28330,9 +25313,6 @@ entities: pos: 25.5,-6.5 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1488 type: LowWall components: @@ -28340,9 +25320,6 @@ entities: pos: -29.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1489 type: Window components: @@ -28350,9 +25327,6 @@ entities: pos: -29.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1490 type: Window components: @@ -28360,9 +25334,6 @@ entities: pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1491 type: Window components: @@ -28370,9 +25341,6 @@ entities: pos: -27.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1492 type: Window components: @@ -28380,9 +25348,6 @@ entities: pos: -6.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1493 type: Window components: @@ -28390,9 +25355,6 @@ entities: pos: -5.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1494 type: Window components: @@ -28400,9 +25362,6 @@ entities: pos: -2.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1495 type: Window components: @@ -28410,9 +25369,6 @@ entities: pos: -4.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1496 type: Window components: @@ -28420,9 +25376,6 @@ entities: pos: -5.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1497 type: Window components: @@ -28430,9 +25383,6 @@ entities: pos: -4.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1498 type: Window components: @@ -28440,9 +25390,6 @@ entities: pos: -2.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1499 type: Window components: @@ -28450,9 +25397,6 @@ entities: pos: 0.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1500 type: Window components: @@ -28460,9 +25404,6 @@ entities: pos: 5.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1501 type: Window components: @@ -28470,9 +25411,6 @@ entities: pos: 5.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1502 type: Window components: @@ -28480,9 +25418,6 @@ entities: pos: 5.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1503 type: Window components: @@ -28490,9 +25425,6 @@ entities: pos: 7.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1504 type: Window components: @@ -28500,9 +25432,6 @@ entities: pos: 10.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1505 type: Window components: @@ -28510,9 +25439,6 @@ entities: pos: 11.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1506 type: Window components: @@ -28520,9 +25446,6 @@ entities: pos: 11.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1507 type: LowWall components: @@ -28530,9 +25453,6 @@ entities: pos: 11.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1508 type: LowWall components: @@ -28540,9 +25460,6 @@ entities: pos: 11.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1509 type: LowWall components: @@ -28550,9 +25467,6 @@ entities: pos: 7.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1510 type: LowWall components: @@ -28560,9 +25474,6 @@ entities: pos: 10.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1511 type: Window components: @@ -28570,9 +25481,6 @@ entities: pos: 20.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1512 type: LowWall components: @@ -28580,9 +25488,6 @@ entities: pos: 20.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1513 type: LowWall components: @@ -28590,9 +25495,6 @@ entities: pos: 20.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1514 type: Table components: @@ -28600,9 +25502,6 @@ entities: pos: 6.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1515 type: Window components: @@ -28610,9 +25509,6 @@ entities: pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1516 type: Window components: @@ -28620,9 +25516,6 @@ entities: pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1517 type: Window components: @@ -28630,9 +25523,6 @@ entities: pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1518 type: Window components: @@ -28640,9 +25530,6 @@ entities: pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1519 type: Window components: @@ -28650,9 +25537,6 @@ entities: pos: 12.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1520 type: Window components: @@ -28660,9 +25544,6 @@ entities: pos: 6.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1521 type: Window components: @@ -28670,9 +25551,6 @@ entities: pos: 9.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1522 type: Window components: @@ -28680,9 +25558,6 @@ entities: pos: 8.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1523 type: Window components: @@ -28690,9 +25565,6 @@ entities: pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1524 type: Window components: @@ -28700,9 +25572,6 @@ entities: pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1525 type: Window components: @@ -28710,9 +25579,6 @@ entities: pos: 9.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1526 type: Window components: @@ -28720,9 +25586,6 @@ entities: pos: 10.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1527 type: Window components: @@ -28730,9 +25593,6 @@ entities: pos: 11.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1528 type: Window components: @@ -28740,9 +25600,6 @@ entities: pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1529 type: Window components: @@ -28750,9 +25607,6 @@ entities: pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1530 type: Window components: @@ -28760,9 +25614,6 @@ entities: pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1531 type: Window components: @@ -28770,9 +25621,6 @@ entities: pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1532 type: Window components: @@ -28780,9 +25628,6 @@ entities: pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1533 type: Window components: @@ -28790,9 +25635,6 @@ entities: pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1534 type: Window components: @@ -28800,9 +25642,6 @@ entities: pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1535 type: Window components: @@ -28810,9 +25649,6 @@ entities: pos: 14.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1536 type: ReinforcedWindow components: @@ -28820,9 +25656,6 @@ entities: pos: 8.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1537 type: ReinforcedWindow components: @@ -28830,9 +25663,6 @@ entities: pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1538 type: ReinforcedWindow components: @@ -28840,9 +25670,6 @@ entities: pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1539 type: ReinforcedWindow components: @@ -28850,9 +25677,6 @@ entities: pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1540 type: ReinforcedWindow components: @@ -28860,9 +25684,6 @@ entities: pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1541 type: ReinforcedWindow components: @@ -28870,9 +25691,6 @@ entities: pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1542 type: LowWall components: @@ -28880,9 +25698,6 @@ entities: pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1543 type: LowWall components: @@ -28890,9 +25705,6 @@ entities: pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1544 type: LowWall components: @@ -28900,9 +25712,6 @@ entities: pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1545 type: Chair components: @@ -28912,9 +25721,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1546 type: Chair components: @@ -28923,9 +25729,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1547 type: Table components: @@ -28933,9 +25736,6 @@ entities: pos: 39.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1548 type: VendingMachineYouTool components: @@ -28943,9 +25743,6 @@ entities: pos: 31.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 1549 type: ReinforcedWindow components: @@ -28953,9 +25750,6 @@ entities: pos: 21.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1550 type: SignArmory components: @@ -28963,8 +25757,6 @@ entities: pos: -13.678196,17.5 type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1551 type: SignConference @@ -28974,8 +25766,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1552 type: SignDirectionalBridge @@ -28985,8 +25775,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1553 type: WeldingFuelTank @@ -28997,9 +25785,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1554 type: Table components: @@ -29007,9 +25792,6 @@ entities: pos: 29.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1555 type: ComputerAlert components: @@ -29023,9 +25805,6 @@ entities: pos: 23.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1557 type: ReinforcedWindow components: @@ -29033,9 +25812,6 @@ entities: pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1558 type: ReinforcedWindow components: @@ -29043,9 +25819,6 @@ entities: pos: 23.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1559 type: ReinforcedWindow components: @@ -29053,9 +25826,6 @@ entities: pos: 21.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1560 type: SignSmoking components: @@ -29064,8 +25834,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1561 type: solid_wall @@ -29074,9 +25842,6 @@ entities: pos: -1.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1562 type: solid_wall components: @@ -29084,9 +25849,6 @@ entities: pos: -20.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1563 type: ReinforcedWindow components: @@ -29094,9 +25856,6 @@ entities: pos: 36.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1564 type: ReinforcedWindow components: @@ -29104,9 +25863,6 @@ entities: pos: 36.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1565 type: ReinforcedWindow components: @@ -29114,9 +25870,6 @@ entities: pos: 35.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1566 type: ReinforcedWindow components: @@ -29124,9 +25877,6 @@ entities: pos: 34.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1567 type: ReinforcedWindow components: @@ -29134,9 +25884,6 @@ entities: pos: 33.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1568 type: ReinforcedWindow components: @@ -29144,9 +25891,6 @@ entities: pos: 32.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1569 type: ReinforcedWindow components: @@ -29154,9 +25898,6 @@ entities: pos: 31.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1570 type: ReinforcedWindow components: @@ -29164,9 +25905,6 @@ entities: pos: 30.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1571 type: ReinforcedWindow components: @@ -29174,9 +25912,6 @@ entities: pos: 30.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1572 type: Window components: @@ -29184,9 +25919,6 @@ entities: pos: 34.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1573 type: Window components: @@ -29194,9 +25926,6 @@ entities: pos: 32.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1574 type: Catwalk components: @@ -29218,9 +25947,6 @@ entities: pos: 31.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1577 type: Catwalk components: @@ -29250,8 +25976,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1581 type: ChairOfficeDark @@ -29262,9 +25986,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1582 type: Catwalk components: @@ -29283,9 +26004,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -29301,9 +26019,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -29315,9 +26030,6 @@ entities: pos: 6.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1586 type: Catwalk components: @@ -29430,9 +26142,6 @@ entities: pos: 33.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1602 type: Catwalk components: @@ -29454,9 +26163,6 @@ entities: pos: 51.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1605 type: SignSmoking components: @@ -29465,8 +26171,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1606 type: solid_wall @@ -29475,9 +26179,6 @@ entities: pos: -22.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1607 type: reinforced_wall components: @@ -29485,9 +26186,6 @@ entities: pos: 39.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1608 type: reinforced_wall components: @@ -29495,9 +26193,6 @@ entities: pos: 38.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1609 type: reinforced_wall components: @@ -29505,9 +26200,6 @@ entities: pos: 37.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1610 type: reinforced_wall components: @@ -29515,9 +26207,6 @@ entities: pos: 37.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1611 type: reinforced_wall components: @@ -29525,9 +26214,6 @@ entities: pos: 37.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1612 type: reinforced_wall components: @@ -29535,9 +26221,6 @@ entities: pos: 37.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1613 type: reinforced_wall components: @@ -29545,9 +26228,6 @@ entities: pos: 37.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1614 type: reinforced_wall components: @@ -29555,9 +26235,6 @@ entities: pos: 38.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1615 type: reinforced_wall components: @@ -29565,9 +26242,6 @@ entities: pos: 39.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1616 type: reinforced_wall components: @@ -29575,9 +26249,6 @@ entities: pos: 40.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1617 type: reinforced_wall components: @@ -29585,9 +26256,6 @@ entities: pos: 41.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1618 type: reinforced_wall components: @@ -29595,9 +26263,6 @@ entities: pos: 42.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1619 type: reinforced_wall components: @@ -29605,9 +26270,6 @@ entities: pos: 43.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1620 type: reinforced_wall components: @@ -29615,9 +26277,6 @@ entities: pos: 44.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1621 type: reinforced_wall components: @@ -29625,9 +26284,6 @@ entities: pos: 44.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1622 type: reinforced_wall components: @@ -29635,9 +26291,6 @@ entities: pos: 44.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1623 type: reinforced_wall components: @@ -29645,9 +26298,6 @@ entities: pos: 44.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1624 type: reinforced_wall components: @@ -29655,9 +26305,6 @@ entities: pos: 44.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1625 type: reinforced_wall components: @@ -29665,9 +26312,6 @@ entities: pos: 43.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1626 type: reinforced_wall components: @@ -29675,9 +26319,6 @@ entities: pos: 42.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1627 type: LowWall components: @@ -29685,9 +26326,6 @@ entities: pos: 40.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1628 type: LowWall components: @@ -29695,9 +26333,6 @@ entities: pos: 39.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1629 type: LowWall components: @@ -29705,9 +26340,6 @@ entities: pos: 36.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1630 type: Poweredlight components: @@ -29718,9 +26350,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -29736,9 +26365,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -29754,9 +26380,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -29768,9 +26391,6 @@ entities: pos: -21.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1634 type: solid_wall components: @@ -29778,9 +26398,6 @@ entities: pos: 37.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1635 type: solid_wall components: @@ -29788,9 +26405,6 @@ entities: pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1636 type: solid_wall components: @@ -29798,9 +26412,6 @@ entities: pos: 37.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1637 type: solid_wall components: @@ -29808,9 +26419,6 @@ entities: pos: 36.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1638 type: solid_wall components: @@ -29818,18 +26426,12 @@ entities: pos: 35.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1639 type: VendingMachineDinnerware components: - parent: 857 pos: -11.5,-3.5 type: Transform - - flags: - - None - type: Breakable - uid: 1640 type: solid_wall components: @@ -29837,9 +26439,6 @@ entities: pos: 36.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1641 type: LowWall components: @@ -29847,9 +26446,6 @@ entities: pos: 51.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1642 type: LowWall components: @@ -29857,9 +26453,6 @@ entities: pos: 51.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1643 type: solid_wall components: @@ -29867,9 +26460,6 @@ entities: pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1644 type: solid_wall components: @@ -29877,9 +26467,6 @@ entities: pos: 41.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1645 type: solid_wall components: @@ -29887,9 +26474,6 @@ entities: pos: 41.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1646 type: solid_wall components: @@ -29897,9 +26481,6 @@ entities: pos: 41.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1647 type: solid_wall components: @@ -29907,9 +26488,6 @@ entities: pos: 41.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1648 type: solid_wall components: @@ -29917,9 +26495,6 @@ entities: pos: 40.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1649 type: solid_wall components: @@ -29927,9 +26502,6 @@ entities: pos: 39.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1650 type: solid_wall components: @@ -29937,9 +26509,6 @@ entities: pos: 38.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1651 type: solid_wall components: @@ -29947,9 +26516,6 @@ entities: pos: 37.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1652 type: solid_wall components: @@ -29957,9 +26523,6 @@ entities: pos: 36.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1653 type: solid_wall components: @@ -29967,9 +26530,6 @@ entities: pos: 36.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1654 type: solid_wall components: @@ -29977,9 +26537,6 @@ entities: pos: 36.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1655 type: solid_wall components: @@ -29987,9 +26544,6 @@ entities: pos: 36.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1656 type: LowWall components: @@ -29997,9 +26551,6 @@ entities: pos: 37.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1657 type: solid_wall components: @@ -30007,9 +26558,6 @@ entities: pos: 36.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1658 type: LowWall components: @@ -30017,9 +26565,6 @@ entities: pos: 51.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1659 type: solid_wall components: @@ -30027,9 +26572,6 @@ entities: pos: 35.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1660 type: solid_wall components: @@ -30037,9 +26579,6 @@ entities: pos: 31.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1661 type: solid_wall components: @@ -30047,9 +26586,6 @@ entities: pos: 42.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1662 type: solid_wall components: @@ -30057,9 +26593,6 @@ entities: pos: 45.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1663 type: solid_wall components: @@ -30067,9 +26600,6 @@ entities: pos: 44.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1664 type: WaterTankFull components: @@ -30079,9 +26609,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 1665 type: solid_wall components: @@ -30089,9 +26616,6 @@ entities: pos: 44.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1666 type: solid_wall components: @@ -30099,9 +26623,6 @@ entities: pos: 44.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1667 type: solid_wall components: @@ -30109,9 +26630,6 @@ entities: pos: 44.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1668 type: solid_wall components: @@ -30119,9 +26637,6 @@ entities: pos: 44.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1669 type: solid_wall components: @@ -30129,9 +26644,6 @@ entities: pos: 44.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1670 type: solid_wall components: @@ -30139,9 +26651,6 @@ entities: pos: 44.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1671 type: solid_wall components: @@ -30149,9 +26658,6 @@ entities: pos: 43.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1672 type: solid_wall components: @@ -30159,9 +26665,6 @@ entities: pos: 42.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1673 type: solid_wall components: @@ -30169,9 +26672,6 @@ entities: pos: 41.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1674 type: solid_wall components: @@ -30179,9 +26679,6 @@ entities: pos: 40.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1675 type: solid_wall components: @@ -30189,9 +26686,6 @@ entities: pos: 39.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1676 type: solid_wall components: @@ -30199,9 +26693,6 @@ entities: pos: 39.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1677 type: solid_wall components: @@ -30209,9 +26700,6 @@ entities: pos: 39.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1678 type: solid_wall components: @@ -30219,9 +26707,6 @@ entities: pos: 39.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1679 type: solid_wall components: @@ -30229,9 +26714,6 @@ entities: pos: 38.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1680 type: solid_wall components: @@ -30239,9 +26721,6 @@ entities: pos: 37.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1681 type: solid_wall components: @@ -30249,9 +26728,6 @@ entities: pos: 36.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1682 type: solid_wall components: @@ -30259,9 +26735,6 @@ entities: pos: 35.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1683 type: solid_wall components: @@ -30269,9 +26742,6 @@ entities: pos: 34.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1684 type: solid_wall components: @@ -30279,9 +26749,6 @@ entities: pos: 33.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1685 type: solid_wall components: @@ -30289,9 +26756,6 @@ entities: pos: 32.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1686 type: solid_wall components: @@ -30299,9 +26763,6 @@ entities: pos: 31.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1687 type: solid_wall components: @@ -30309,9 +26770,6 @@ entities: pos: 30.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1688 type: solid_wall components: @@ -30319,9 +26777,6 @@ entities: pos: 29.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1689 type: solid_wall components: @@ -30329,9 +26784,6 @@ entities: pos: 28.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1690 type: solid_wall components: @@ -30339,9 +26791,6 @@ entities: pos: 28.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1691 type: solid_wall components: @@ -30349,9 +26798,6 @@ entities: pos: 28.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1692 type: solid_wall components: @@ -30359,9 +26805,6 @@ entities: pos: 28.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1693 type: solid_wall components: @@ -30369,9 +26812,6 @@ entities: pos: 28.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1694 type: solid_wall components: @@ -30379,9 +26819,6 @@ entities: pos: 28.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1695 type: solid_wall components: @@ -30389,9 +26826,6 @@ entities: pos: 28.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1696 type: solid_wall components: @@ -30399,9 +26833,6 @@ entities: pos: 28.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1697 type: solid_wall components: @@ -30409,9 +26840,6 @@ entities: pos: 28.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1698 type: solid_wall components: @@ -30419,9 +26847,6 @@ entities: pos: 28.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1699 type: solid_wall components: @@ -30429,9 +26854,6 @@ entities: pos: 28.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1700 type: solid_wall components: @@ -30439,9 +26861,6 @@ entities: pos: 28.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1701 type: solid_wall components: @@ -30449,9 +26868,6 @@ entities: pos: 28.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1702 type: solid_wall components: @@ -30459,9 +26875,6 @@ entities: pos: 27.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1703 type: solid_wall components: @@ -30469,9 +26882,6 @@ entities: pos: 26.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1704 type: solid_wall components: @@ -30479,9 +26889,6 @@ entities: pos: 25.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1705 type: solid_wall components: @@ -30489,9 +26896,6 @@ entities: pos: 24.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1706 type: solid_wall components: @@ -30499,9 +26903,6 @@ entities: pos: 23.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1707 type: solid_wall components: @@ -30509,9 +26910,6 @@ entities: pos: 23.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1708 type: solid_wall components: @@ -30519,9 +26917,6 @@ entities: pos: 23.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1709 type: solid_wall components: @@ -30529,9 +26924,6 @@ entities: pos: 45.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1710 type: SignCloning components: @@ -30540,8 +26932,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1711 type: solid_wall @@ -30550,9 +26940,6 @@ entities: pos: 0.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1712 type: solid_wall components: @@ -30560,9 +26947,6 @@ entities: pos: 0.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1713 type: solid_wall components: @@ -30570,9 +26954,6 @@ entities: pos: 0.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1714 type: ReinforcedWindow components: @@ -30580,9 +26961,6 @@ entities: pos: 51.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1715 type: LowWall components: @@ -30590,9 +26968,6 @@ entities: pos: 51.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1716 type: solid_wall components: @@ -30600,9 +26975,6 @@ entities: pos: 18.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1717 type: solid_wall components: @@ -30610,9 +26982,6 @@ entities: pos: 19.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1718 type: solid_wall components: @@ -30620,9 +26989,6 @@ entities: pos: 13.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1719 type: solid_wall components: @@ -30630,9 +26996,6 @@ entities: pos: 12.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1720 type: solid_wall components: @@ -30640,9 +27003,6 @@ entities: pos: 1.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1721 type: solid_wall components: @@ -30650,9 +27010,6 @@ entities: pos: 0.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1722 type: solid_wall components: @@ -30660,9 +27017,6 @@ entities: pos: 0.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1723 type: solid_wall components: @@ -30670,9 +27024,6 @@ entities: pos: 8.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1724 type: solid_wall components: @@ -30680,9 +27031,6 @@ entities: pos: 7.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1725 type: solid_wall components: @@ -30690,9 +27038,6 @@ entities: pos: 6.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1726 type: solid_wall components: @@ -30700,9 +27045,6 @@ entities: pos: 6.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1727 type: solid_wall components: @@ -30710,9 +27052,6 @@ entities: pos: 5.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1728 type: LowWall components: @@ -30720,9 +27059,6 @@ entities: pos: 5.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1729 type: LowWall components: @@ -30730,9 +27066,6 @@ entities: pos: 5.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1730 type: LowWall components: @@ -30740,9 +27073,6 @@ entities: pos: 4.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1731 type: LowWall components: @@ -30750,9 +27080,6 @@ entities: pos: 3.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1732 type: LowWall components: @@ -30760,9 +27087,6 @@ entities: pos: 2.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1733 type: LowWall components: @@ -30770,9 +27094,6 @@ entities: pos: 9.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1734 type: LowWall components: @@ -30780,9 +27101,6 @@ entities: pos: 10.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1735 type: LowWall components: @@ -30790,9 +27108,6 @@ entities: pos: 11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1736 type: solid_wall components: @@ -30800,9 +27115,6 @@ entities: pos: 45.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1737 type: LowWall components: @@ -30810,9 +27122,6 @@ entities: pos: 34.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1738 type: LowWall components: @@ -30820,9 +27129,6 @@ entities: pos: 32.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1739 type: solid_wall components: @@ -30830,9 +27136,6 @@ entities: pos: 31.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1740 type: solid_wall components: @@ -30840,9 +27143,6 @@ entities: pos: 30.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1741 type: solid_wall components: @@ -30850,9 +27150,6 @@ entities: pos: 29.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1742 type: solid_wall components: @@ -30860,9 +27157,6 @@ entities: pos: 29.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1743 type: solid_wall components: @@ -30870,9 +27164,6 @@ entities: pos: 29.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1744 type: solid_wall components: @@ -30880,9 +27171,6 @@ entities: pos: 28.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1745 type: solid_wall components: @@ -30890,9 +27178,6 @@ entities: pos: 30.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1746 type: solid_wall components: @@ -30900,9 +27185,6 @@ entities: pos: 30.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1747 type: solid_wall components: @@ -30910,9 +27192,6 @@ entities: pos: 30.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1748 type: LowWall components: @@ -30920,9 +27199,6 @@ entities: pos: 32.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1749 type: LowWall components: @@ -30930,9 +27206,6 @@ entities: pos: 34.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1750 type: LowWall components: @@ -30940,9 +27213,6 @@ entities: pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1751 type: LowWall components: @@ -30950,9 +27220,6 @@ entities: pos: 30.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1752 type: LowWall components: @@ -30960,9 +27227,6 @@ entities: pos: 30.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1753 type: LowWall components: @@ -30970,9 +27234,6 @@ entities: pos: 31.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1754 type: LowWall components: @@ -30980,9 +27241,6 @@ entities: pos: 32.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1755 type: LowWall components: @@ -30990,9 +27248,6 @@ entities: pos: 33.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1756 type: LowWall components: @@ -31000,9 +27255,6 @@ entities: pos: 34.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1757 type: LowWall components: @@ -31010,9 +27262,6 @@ entities: pos: 35.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1758 type: LowWall components: @@ -31020,9 +27269,6 @@ entities: pos: 36.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1759 type: LowWall components: @@ -31030,9 +27276,6 @@ entities: pos: 36.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1760 type: solid_wall components: @@ -31040,9 +27283,6 @@ entities: pos: 29.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1761 type: solid_wall components: @@ -31050,9 +27290,6 @@ entities: pos: 29.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1762 type: solid_wall components: @@ -31060,9 +27297,6 @@ entities: pos: 29.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1763 type: solid_wall components: @@ -31070,9 +27304,6 @@ entities: pos: 29.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1764 type: LowWall components: @@ -31080,9 +27311,6 @@ entities: pos: 19.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1765 type: LowWall components: @@ -31090,9 +27318,6 @@ entities: pos: 21.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1766 type: LowWall components: @@ -31100,9 +27325,6 @@ entities: pos: 23.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1767 type: solid_wall components: @@ -31110,9 +27332,6 @@ entities: pos: 25.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1768 type: LowWall components: @@ -31120,9 +27339,6 @@ entities: pos: 19.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1769 type: ReinforcedWindow components: @@ -31130,9 +27346,6 @@ entities: pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1770 type: solid_wall components: @@ -31140,9 +27353,6 @@ entities: pos: 25.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1771 type: solid_wall components: @@ -31150,9 +27360,6 @@ entities: pos: 25.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1772 type: solid_wall components: @@ -31160,9 +27367,6 @@ entities: pos: 25.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1773 type: solid_wall components: @@ -31170,9 +27374,6 @@ entities: pos: 25.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1774 type: solid_wall components: @@ -31180,9 +27381,6 @@ entities: pos: 25.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1775 type: solid_wall components: @@ -31190,9 +27388,6 @@ entities: pos: 25.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1776 type: solid_wall components: @@ -31200,9 +27395,6 @@ entities: pos: 26.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1777 type: solid_wall components: @@ -31210,9 +27402,6 @@ entities: pos: 24.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1778 type: solid_wall components: @@ -31220,9 +27409,6 @@ entities: pos: 24.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1779 type: solid_wall components: @@ -31230,9 +27416,6 @@ entities: pos: 23.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1780 type: solid_wall components: @@ -31240,9 +27423,6 @@ entities: pos: 18.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1781 type: solid_wall components: @@ -31250,9 +27430,6 @@ entities: pos: 17.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1782 type: solid_wall components: @@ -31260,9 +27437,6 @@ entities: pos: 17.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1783 type: solid_wall components: @@ -31270,9 +27444,6 @@ entities: pos: 17.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1784 type: solid_wall components: @@ -31280,9 +27451,6 @@ entities: pos: 17.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1785 type: solid_wall components: @@ -31290,9 +27458,6 @@ entities: pos: 16.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1786 type: solid_wall components: @@ -31300,9 +27465,6 @@ entities: pos: 12.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1787 type: LowWall components: @@ -31310,9 +27472,6 @@ entities: pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1788 type: LowWall components: @@ -31320,9 +27479,6 @@ entities: pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1789 type: LowWall components: @@ -31330,9 +27486,6 @@ entities: pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1790 type: LowWall components: @@ -31340,9 +27493,6 @@ entities: pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1791 type: LowWall components: @@ -31350,9 +27500,6 @@ entities: pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1792 type: LowWall components: @@ -31360,9 +27507,6 @@ entities: pos: 23.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1793 type: SignDirectionalBridge components: @@ -31370,8 +27514,6 @@ entities: pos: -20.49181,6.256847 type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1794 type: SignDirectionalSec @@ -31381,8 +27523,6 @@ entities: rot: 3.141592653589793 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 1795 type: LowWall @@ -31391,9 +27531,6 @@ entities: pos: 19.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1796 type: solid_wall components: @@ -31401,9 +27538,6 @@ entities: pos: -0.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1797 type: solid_wall components: @@ -31411,9 +27545,6 @@ entities: pos: -19.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1798 type: solid_wall components: @@ -31421,9 +27552,6 @@ entities: pos: -21.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1799 type: solid_wall components: @@ -31431,9 +27559,6 @@ entities: pos: 17.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1800 type: solid_wall components: @@ -31441,9 +27566,6 @@ entities: pos: 17.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1801 type: solid_wall components: @@ -31451,9 +27573,6 @@ entities: pos: 17.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1802 type: solid_wall components: @@ -31461,9 +27580,6 @@ entities: pos: 17.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1803 type: solid_wall components: @@ -31471,9 +27587,6 @@ entities: pos: 16.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1804 type: solid_wall components: @@ -31481,9 +27594,6 @@ entities: pos: 17.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1805 type: solid_wall components: @@ -31491,9 +27601,6 @@ entities: pos: 16.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1806 type: solid_wall components: @@ -31501,9 +27608,6 @@ entities: pos: 15.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1807 type: solid_wall components: @@ -31511,9 +27615,6 @@ entities: pos: 14.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1808 type: solid_wall components: @@ -31521,9 +27622,6 @@ entities: pos: 13.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1809 type: solid_wall components: @@ -31531,9 +27629,6 @@ entities: pos: 12.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1810 type: solid_wall components: @@ -31541,9 +27636,6 @@ entities: pos: 11.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1811 type: reinforced_wall components: @@ -31551,9 +27643,6 @@ entities: pos: 11.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1812 type: reinforced_wall components: @@ -31561,9 +27650,6 @@ entities: pos: 10.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1813 type: reinforced_wall components: @@ -31571,9 +27657,6 @@ entities: pos: 9.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1814 type: reinforced_wall components: @@ -31581,9 +27664,6 @@ entities: pos: 7.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1815 type: reinforced_wall components: @@ -31591,9 +27671,6 @@ entities: pos: 6.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1816 type: reinforced_wall components: @@ -31601,9 +27678,6 @@ entities: pos: 5.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1817 type: reinforced_wall components: @@ -31611,9 +27685,6 @@ entities: pos: 5.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1818 type: reinforced_wall components: @@ -31621,9 +27692,6 @@ entities: pos: 5.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1819 type: reinforced_wall components: @@ -31631,9 +27699,6 @@ entities: pos: 5.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1820 type: reinforced_wall components: @@ -31641,9 +27706,6 @@ entities: pos: 5.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1821 type: reinforced_wall components: @@ -31651,9 +27713,6 @@ entities: pos: 5.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1822 type: reinforced_wall components: @@ -31661,9 +27720,6 @@ entities: pos: 5.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1823 type: reinforced_wall components: @@ -31671,9 +27727,6 @@ entities: pos: 11.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1824 type: reinforced_wall components: @@ -31681,9 +27734,6 @@ entities: pos: 11.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1825 type: reinforced_wall components: @@ -31691,9 +27741,6 @@ entities: pos: 11.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1826 type: reinforced_wall components: @@ -31701,9 +27748,6 @@ entities: pos: 11.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1827 type: reinforced_wall components: @@ -31711,9 +27755,6 @@ entities: pos: 11.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1828 type: reinforced_wall components: @@ -31721,9 +27762,6 @@ entities: pos: 11.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1829 type: reinforced_wall components: @@ -31731,9 +27769,6 @@ entities: pos: 10.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1830 type: reinforced_wall components: @@ -31741,9 +27776,6 @@ entities: pos: 6.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1831 type: LowWall components: @@ -31751,9 +27783,6 @@ entities: pos: 8.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1832 type: solid_wall components: @@ -31761,9 +27790,6 @@ entities: pos: 14.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1833 type: solid_wall components: @@ -31771,9 +27797,6 @@ entities: pos: 14.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1834 type: solid_wall components: @@ -31781,9 +27804,6 @@ entities: pos: 14.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1835 type: ReinforcedWindow components: @@ -31791,9 +27811,6 @@ entities: pos: 19.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1836 type: ReinforcedWindow components: @@ -31801,9 +27818,6 @@ entities: pos: 19.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1837 type: ReinforcedWindow components: @@ -31811,9 +27825,6 @@ entities: pos: 19.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1838 type: solid_wall components: @@ -31821,9 +27832,6 @@ entities: pos: 14.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1839 type: solid_wall components: @@ -31831,9 +27839,6 @@ entities: pos: -17.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1840 type: solid_wall components: @@ -31841,9 +27846,6 @@ entities: pos: -20.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1841 type: solid_wall components: @@ -31851,9 +27853,6 @@ entities: pos: -21.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1842 type: solid_wall components: @@ -31861,9 +27860,6 @@ entities: pos: 11.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1843 type: solid_wall components: @@ -31871,9 +27867,6 @@ entities: pos: 11.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1844 type: solid_wall components: @@ -31881,9 +27874,6 @@ entities: pos: 11.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1845 type: solid_wall components: @@ -31891,9 +27881,6 @@ entities: pos: 11.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1846 type: solid_wall components: @@ -31901,9 +27888,6 @@ entities: pos: 11.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1847 type: solid_wall components: @@ -31911,9 +27895,6 @@ entities: pos: 11.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1848 type: solid_wall components: @@ -31921,9 +27902,6 @@ entities: pos: 10.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1849 type: solid_wall components: @@ -31931,9 +27909,6 @@ entities: pos: 9.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1850 type: Poweredlight components: @@ -31945,9 +27920,6 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -31959,9 +27931,6 @@ entities: pos: -21.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1852 type: solid_wall components: @@ -31969,9 +27938,6 @@ entities: pos: 6.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1853 type: solid_wall components: @@ -31979,9 +27945,6 @@ entities: pos: 5.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1854 type: solid_wall components: @@ -31989,9 +27952,6 @@ entities: pos: 6.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1855 type: solid_wall components: @@ -31999,9 +27959,6 @@ entities: pos: 5.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1856 type: solid_wall components: @@ -32009,9 +27966,6 @@ entities: pos: 6.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1857 type: reinforced_wall components: @@ -32019,9 +27973,6 @@ entities: pos: 10.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1858 type: reinforced_wall components: @@ -32029,9 +27980,6 @@ entities: pos: 9.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1859 type: reinforced_wall components: @@ -32039,9 +27987,6 @@ entities: pos: 8.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1860 type: reinforced_wall components: @@ -32049,9 +27994,6 @@ entities: pos: 7.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1861 type: reinforced_wall components: @@ -32059,9 +28001,6 @@ entities: pos: 6.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1862 type: reinforced_wall components: @@ -32069,9 +28008,6 @@ entities: pos: 5.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1863 type: reinforced_wall components: @@ -32079,9 +28015,6 @@ entities: pos: 10.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1864 type: reinforced_wall components: @@ -32089,9 +28022,6 @@ entities: pos: 10.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1865 type: reinforced_wall components: @@ -32099,9 +28029,6 @@ entities: pos: 10.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1866 type: reinforced_wall components: @@ -32109,9 +28036,6 @@ entities: pos: 10.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1867 type: reinforced_wall components: @@ -32119,9 +28043,6 @@ entities: pos: 10.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1868 type: reinforced_wall components: @@ -32129,9 +28050,6 @@ entities: pos: 10.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1869 type: reinforced_wall components: @@ -32139,9 +28057,6 @@ entities: pos: 10.5,30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1870 type: reinforced_wall components: @@ -32149,9 +28064,6 @@ entities: pos: 10.5,31.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1871 type: reinforced_wall components: @@ -32159,9 +28071,6 @@ entities: pos: -3.5,31.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1872 type: reinforced_wall components: @@ -32169,9 +28078,6 @@ entities: pos: -3.5,30.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1873 type: reinforced_wall components: @@ -32179,9 +28085,6 @@ entities: pos: -3.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1874 type: reinforced_wall components: @@ -32189,9 +28092,6 @@ entities: pos: -3.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1875 type: reinforced_wall components: @@ -32199,9 +28099,6 @@ entities: pos: -3.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1876 type: reinforced_wall components: @@ -32209,9 +28106,6 @@ entities: pos: -3.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1877 type: reinforced_wall components: @@ -32219,9 +28113,6 @@ entities: pos: 1.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1878 type: reinforced_wall components: @@ -32229,9 +28120,6 @@ entities: pos: 0.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1879 type: reinforced_wall components: @@ -32239,9 +28127,6 @@ entities: pos: -0.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1880 type: AirlockCommandLocked components: @@ -32254,9 +28139,6 @@ entities: - access: - - HeadOfPersonnel type: AccessReader - - flags: - - None - type: Destructible - uid: 1881 type: reinforced_wall components: @@ -32264,9 +28146,6 @@ entities: pos: -2.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1882 type: reinforced_wall components: @@ -32274,9 +28153,6 @@ entities: pos: -3.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1883 type: reinforced_wall components: @@ -32284,9 +28160,6 @@ entities: pos: -3.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1884 type: reinforced_wall components: @@ -32294,9 +28167,6 @@ entities: pos: -3.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1885 type: solid_wall components: @@ -32304,9 +28174,6 @@ entities: pos: 1.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1886 type: solid_wall components: @@ -32314,9 +28181,6 @@ entities: pos: 1.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1887 type: solid_wall components: @@ -32324,9 +28188,6 @@ entities: pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1888 type: solid_wall components: @@ -32334,9 +28195,6 @@ entities: pos: -2.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1889 type: solid_wall components: @@ -32344,9 +28202,6 @@ entities: pos: 1.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1890 type: solid_wall components: @@ -32354,9 +28209,6 @@ entities: pos: 5.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1891 type: solid_wall components: @@ -32364,9 +28216,6 @@ entities: pos: 5.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1892 type: solid_wall components: @@ -32374,9 +28223,6 @@ entities: pos: 5.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1893 type: solid_wall components: @@ -32384,9 +28230,6 @@ entities: pos: 5.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1894 type: solid_wall components: @@ -32394,9 +28237,6 @@ entities: pos: 6.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1895 type: solid_wall components: @@ -32404,9 +28244,6 @@ entities: pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1896 type: solid_wall components: @@ -32414,9 +28251,6 @@ entities: pos: 8.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1897 type: solid_wall components: @@ -32424,9 +28258,6 @@ entities: pos: 9.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1898 type: LowWall components: @@ -32434,9 +28265,6 @@ entities: pos: 3.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1899 type: LowWall components: @@ -32444,9 +28272,6 @@ entities: pos: -1.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1900 type: LowWall components: @@ -32454,9 +28279,6 @@ entities: pos: -0.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1901 type: LowWall components: @@ -32464,9 +28286,6 @@ entities: pos: -3.5,29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1902 type: LowWall components: @@ -32474,9 +28293,6 @@ entities: pos: 10.5,29.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1903 type: LowWall components: @@ -32484,9 +28300,6 @@ entities: pos: 9.5,31.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1904 type: LowWall components: @@ -32494,9 +28307,6 @@ entities: pos: 9.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1905 type: LowWall components: @@ -32504,9 +28314,6 @@ entities: pos: 8.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1906 type: LowWall components: @@ -32514,9 +28321,6 @@ entities: pos: 8.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1907 type: LowWall components: @@ -32524,9 +28328,6 @@ entities: pos: 7.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1908 type: LowWall components: @@ -32534,9 +28335,6 @@ entities: pos: 6.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1909 type: LowWall components: @@ -32544,9 +28342,6 @@ entities: pos: 5.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1910 type: LowWall components: @@ -32554,9 +28349,6 @@ entities: pos: 4.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1911 type: LowWall components: @@ -32564,9 +28356,6 @@ entities: pos: 3.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1912 type: LowWall components: @@ -32574,9 +28363,6 @@ entities: pos: 2.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1913 type: LowWall components: @@ -32584,9 +28370,6 @@ entities: pos: 1.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1914 type: LowWall components: @@ -32594,9 +28377,6 @@ entities: pos: 0.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1915 type: LowWall components: @@ -32604,9 +28384,6 @@ entities: pos: -0.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1916 type: LowWall components: @@ -32614,9 +28391,6 @@ entities: pos: -1.5,33.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1917 type: LowWall components: @@ -32624,9 +28398,6 @@ entities: pos: -1.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1918 type: LowWall components: @@ -32634,9 +28405,6 @@ entities: pos: -2.5,31.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1919 type: LowWall components: @@ -32644,9 +28412,6 @@ entities: pos: -2.5,32.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1920 type: LowWall components: @@ -32654,9 +28419,6 @@ entities: pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1921 type: LowWall components: @@ -32664,9 +28426,6 @@ entities: pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1922 type: reinforced_wall components: @@ -32674,9 +28433,6 @@ entities: pos: 1.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1923 type: reinforced_wall components: @@ -32684,9 +28440,6 @@ entities: pos: 0.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1924 type: reinforced_wall components: @@ -32694,9 +28447,6 @@ entities: pos: -0.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1925 type: reinforced_wall components: @@ -32704,9 +28454,6 @@ entities: pos: -1.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1926 type: reinforced_wall components: @@ -32714,9 +28461,6 @@ entities: pos: -2.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1927 type: reinforced_wall components: @@ -32724,9 +28468,6 @@ entities: pos: -3.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1928 type: reinforced_wall components: @@ -32734,9 +28475,6 @@ entities: pos: -4.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1929 type: reinforced_wall components: @@ -32744,9 +28482,6 @@ entities: pos: -4.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1930 type: reinforced_wall components: @@ -32754,9 +28489,6 @@ entities: pos: -4.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1931 type: reinforced_wall components: @@ -32764,9 +28496,6 @@ entities: pos: -4.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1932 type: reinforced_wall components: @@ -32774,9 +28503,6 @@ entities: pos: -4.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1933 type: reinforced_wall components: @@ -32784,9 +28510,6 @@ entities: pos: -5.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1934 type: LowWall components: @@ -32794,9 +28517,6 @@ entities: pos: -7.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1935 type: reinforced_wall components: @@ -32804,9 +28524,6 @@ entities: pos: -3.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1936 type: reinforced_wall components: @@ -32814,9 +28531,6 @@ entities: pos: -2.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1937 type: reinforced_wall components: @@ -32824,9 +28538,6 @@ entities: pos: -1.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1938 type: reinforced_wall components: @@ -32834,9 +28545,6 @@ entities: pos: -0.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1939 type: reinforced_wall components: @@ -32844,9 +28552,6 @@ entities: pos: 0.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1940 type: reinforced_wall components: @@ -32854,9 +28559,6 @@ entities: pos: 0.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1941 type: reinforced_wall components: @@ -32864,9 +28566,6 @@ entities: pos: 0.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1942 type: reinforced_wall components: @@ -32874,9 +28573,6 @@ entities: pos: -5.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1943 type: reinforced_wall components: @@ -32884,9 +28580,6 @@ entities: pos: -5.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1944 type: reinforced_wall components: @@ -32894,9 +28587,6 @@ entities: pos: -5.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1945 type: reinforced_wall components: @@ -32904,9 +28594,6 @@ entities: pos: -6.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1946 type: reinforced_wall components: @@ -32914,9 +28601,6 @@ entities: pos: -7.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1947 type: reinforced_wall components: @@ -32924,9 +28608,6 @@ entities: pos: -8.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1948 type: reinforced_wall components: @@ -32934,9 +28615,6 @@ entities: pos: -9.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1949 type: Window components: @@ -32944,9 +28622,6 @@ entities: pos: 40.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1950 type: reinforced_wall components: @@ -32954,9 +28629,6 @@ entities: pos: -11.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1951 type: reinforced_wall components: @@ -32964,9 +28636,6 @@ entities: pos: -12.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1952 type: reinforced_wall components: @@ -32974,9 +28643,6 @@ entities: pos: -13.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1953 type: reinforced_wall components: @@ -32984,9 +28650,6 @@ entities: pos: -14.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1954 type: reinforced_wall components: @@ -32994,9 +28657,6 @@ entities: pos: -15.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1955 type: reinforced_wall components: @@ -33004,9 +28664,6 @@ entities: pos: -16.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1956 type: reinforced_wall components: @@ -33014,9 +28671,6 @@ entities: pos: -16.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1957 type: reinforced_wall components: @@ -33024,9 +28678,6 @@ entities: pos: -15.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1958 type: reinforced_wall components: @@ -33034,9 +28685,6 @@ entities: pos: -14.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1959 type: reinforced_wall components: @@ -33044,9 +28692,6 @@ entities: pos: -13.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1960 type: reinforced_wall components: @@ -33054,9 +28699,6 @@ entities: pos: -12.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1961 type: reinforced_wall components: @@ -33064,9 +28706,6 @@ entities: pos: -11.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1962 type: reinforced_wall components: @@ -33074,9 +28713,6 @@ entities: pos: -10.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1963 type: Window components: @@ -33084,9 +28720,6 @@ entities: pos: 39.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1964 type: reinforced_wall components: @@ -33094,9 +28727,6 @@ entities: pos: -16.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1965 type: reinforced_wall components: @@ -33104,9 +28734,6 @@ entities: pos: -16.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1966 type: reinforced_wall components: @@ -33114,9 +28741,6 @@ entities: pos: -16.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1967 type: reinforced_wall components: @@ -33124,9 +28748,6 @@ entities: pos: -16.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1968 type: reinforced_wall components: @@ -33134,9 +28755,6 @@ entities: pos: -16.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1969 type: reinforced_wall components: @@ -33144,9 +28762,6 @@ entities: pos: -15.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1970 type: reinforced_wall components: @@ -33154,9 +28769,6 @@ entities: pos: -15.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1971 type: reinforced_wall components: @@ -33164,9 +28776,6 @@ entities: pos: -15.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1972 type: reinforced_wall components: @@ -33174,9 +28783,6 @@ entities: pos: -15.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1973 type: reinforced_wall components: @@ -33184,9 +28790,6 @@ entities: pos: -15.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1974 type: reinforced_wall components: @@ -33194,9 +28797,6 @@ entities: pos: -14.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1975 type: reinforced_wall components: @@ -33204,9 +28804,6 @@ entities: pos: -13.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1976 type: reinforced_wall components: @@ -33214,9 +28811,6 @@ entities: pos: -11.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1977 type: reinforced_wall components: @@ -33224,9 +28818,6 @@ entities: pos: -10.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1978 type: reinforced_wall components: @@ -33234,9 +28825,6 @@ entities: pos: -10.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1979 type: reinforced_wall components: @@ -33244,9 +28832,6 @@ entities: pos: -10.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1980 type: reinforced_wall components: @@ -33254,9 +28839,6 @@ entities: pos: -14.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1981 type: reinforced_wall components: @@ -33264,9 +28846,6 @@ entities: pos: -14.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1982 type: reinforced_wall components: @@ -33274,9 +28853,6 @@ entities: pos: -14.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1983 type: reinforced_wall components: @@ -33284,9 +28860,6 @@ entities: pos: -13.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1984 type: reinforced_wall components: @@ -33294,9 +28867,6 @@ entities: pos: -12.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1985 type: reinforced_wall components: @@ -33304,9 +28874,6 @@ entities: pos: -11.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1986 type: reinforced_wall components: @@ -33314,9 +28881,6 @@ entities: pos: -10.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1987 type: reinforced_wall components: @@ -33324,9 +28888,6 @@ entities: pos: -10.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1988 type: reinforced_wall components: @@ -33334,9 +28895,6 @@ entities: pos: -10.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1989 type: reinforced_wall components: @@ -33344,9 +28902,6 @@ entities: pos: -10.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1990 type: reinforced_wall components: @@ -33354,9 +28909,6 @@ entities: pos: -14.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1991 type: reinforced_wall components: @@ -33364,9 +28916,6 @@ entities: pos: -15.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1992 type: reinforced_wall components: @@ -33374,9 +28923,6 @@ entities: pos: -15.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1993 type: reinforced_wall components: @@ -33384,9 +28930,6 @@ entities: pos: -15.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1994 type: reinforced_wall components: @@ -33394,9 +28937,6 @@ entities: pos: -15.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1995 type: AirlockMaintSecLocked components: @@ -33404,9 +28944,6 @@ entities: pos: -14.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1996 type: reinforced_wall components: @@ -33414,9 +28951,6 @@ entities: pos: -14.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1997 type: reinforced_wall components: @@ -33424,9 +28958,6 @@ entities: pos: -14.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1998 type: solid_wall components: @@ -33434,9 +28965,6 @@ entities: pos: -6.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 1999 type: LowWall components: @@ -33444,9 +28972,6 @@ entities: pos: -10.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2000 type: solid_wall components: @@ -33454,9 +28979,6 @@ entities: pos: -9.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2001 type: solid_wall components: @@ -33464,9 +28986,6 @@ entities: pos: -10.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2002 type: solid_wall components: @@ -33474,9 +28993,6 @@ entities: pos: -10.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2003 type: solid_wall components: @@ -33484,9 +29000,6 @@ entities: pos: -10.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2004 type: solid_wall components: @@ -33494,9 +29007,6 @@ entities: pos: -11.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2005 type: solid_wall components: @@ -33504,9 +29014,6 @@ entities: pos: -12.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2006 type: solid_wall components: @@ -33514,9 +29021,6 @@ entities: pos: -13.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2007 type: solid_wall components: @@ -33524,9 +29028,6 @@ entities: pos: -5.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2008 type: reinforced_wall components: @@ -33534,9 +29035,6 @@ entities: pos: 1.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2009 type: reinforced_wall components: @@ -33544,9 +29042,6 @@ entities: pos: 1.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2010 type: reinforced_wall components: @@ -33554,9 +29049,6 @@ entities: pos: 1.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2011 type: reinforced_wall components: @@ -33564,9 +29056,6 @@ entities: pos: 1.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2012 type: reinforced_wall components: @@ -33574,9 +29063,6 @@ entities: pos: 1.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2013 type: reinforced_wall components: @@ -33584,9 +29070,6 @@ entities: pos: 1.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2014 type: reinforced_wall components: @@ -33594,9 +29077,6 @@ entities: pos: 1.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2015 type: reinforced_wall components: @@ -33604,9 +29084,6 @@ entities: pos: 1.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2016 type: reinforced_wall components: @@ -33614,9 +29091,6 @@ entities: pos: 1.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2017 type: reinforced_wall components: @@ -33624,9 +29098,6 @@ entities: pos: -4.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2018 type: reinforced_wall components: @@ -33634,9 +29105,6 @@ entities: pos: -1.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2019 type: reinforced_wall components: @@ -33644,9 +29112,6 @@ entities: pos: -7.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2020 type: solid_wall components: @@ -33654,9 +29119,6 @@ entities: pos: -4.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2021 type: solid_wall components: @@ -33664,9 +29126,6 @@ entities: pos: -4.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2022 type: solid_wall components: @@ -33674,9 +29133,6 @@ entities: pos: -4.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2023 type: solid_wall components: @@ -33684,9 +29140,6 @@ entities: pos: -1.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2024 type: solid_wall components: @@ -33694,9 +29147,6 @@ entities: pos: -1.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2025 type: solid_wall components: @@ -33704,9 +29154,6 @@ entities: pos: -1.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2026 type: LowWall components: @@ -33714,9 +29161,6 @@ entities: pos: -0.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2027 type: LowWall components: @@ -33724,9 +29168,6 @@ entities: pos: -3.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2028 type: LowWall components: @@ -33734,9 +29175,6 @@ entities: pos: -7.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2029 type: LowWall components: @@ -33744,9 +29182,6 @@ entities: pos: -8.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2030 type: solid_wall components: @@ -33754,9 +29189,6 @@ entities: pos: -15.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2031 type: solid_wall components: @@ -33764,9 +29196,6 @@ entities: pos: -17.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2032 type: solid_wall components: @@ -33774,9 +29203,6 @@ entities: pos: -18.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2033 type: solid_wall components: @@ -33784,9 +29210,6 @@ entities: pos: -18.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2034 type: solid_wall components: @@ -33794,9 +29217,6 @@ entities: pos: -18.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2035 type: solid_wall components: @@ -33804,9 +29224,6 @@ entities: pos: -18.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2036 type: solid_wall components: @@ -33814,9 +29231,6 @@ entities: pos: -18.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2037 type: solid_wall components: @@ -33824,9 +29238,6 @@ entities: pos: -18.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2038 type: solid_wall components: @@ -33834,9 +29245,6 @@ entities: pos: -19.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2039 type: solid_wall components: @@ -33844,9 +29252,6 @@ entities: pos: -18.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2040 type: solid_wall components: @@ -33854,9 +29259,6 @@ entities: pos: -19.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2041 type: solid_wall components: @@ -33864,9 +29266,6 @@ entities: pos: -19.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2042 type: solid_wall components: @@ -33874,9 +29273,6 @@ entities: pos: -19.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2043 type: solid_wall components: @@ -33884,9 +29280,6 @@ entities: pos: -19.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2044 type: solid_wall components: @@ -33894,9 +29287,6 @@ entities: pos: -19.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2045 type: solid_wall components: @@ -33904,9 +29294,6 @@ entities: pos: -19.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2046 type: solid_wall components: @@ -33914,9 +29301,6 @@ entities: pos: -19.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2047 type: solid_wall components: @@ -33924,9 +29308,6 @@ entities: pos: -19.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2048 type: solid_wall components: @@ -33934,9 +29315,6 @@ entities: pos: -19.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2049 type: solid_wall components: @@ -33944,9 +29322,6 @@ entities: pos: -19.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2050 type: solid_wall components: @@ -33954,9 +29329,6 @@ entities: pos: -19.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2051 type: solid_wall components: @@ -33964,9 +29336,6 @@ entities: pos: -19.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2052 type: solid_wall components: @@ -33974,9 +29343,6 @@ entities: pos: -19.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2053 type: solid_wall components: @@ -33984,9 +29350,6 @@ entities: pos: -18.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2054 type: solid_wall components: @@ -33994,9 +29357,6 @@ entities: pos: -17.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2055 type: solid_wall components: @@ -34004,9 +29364,6 @@ entities: pos: -16.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2056 type: solid_wall components: @@ -34014,9 +29371,6 @@ entities: pos: -15.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2057 type: solid_wall components: @@ -34024,9 +29378,6 @@ entities: pos: -14.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2058 type: solid_wall components: @@ -34034,9 +29385,6 @@ entities: pos: -13.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2059 type: solid_wall components: @@ -34044,9 +29392,6 @@ entities: pos: -12.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2060 type: solid_wall components: @@ -34054,9 +29399,6 @@ entities: pos: -11.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2061 type: solid_wall components: @@ -34064,9 +29406,6 @@ entities: pos: -10.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2062 type: solid_wall components: @@ -34074,9 +29413,6 @@ entities: pos: -9.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2063 type: solid_wall components: @@ -34084,9 +29420,6 @@ entities: pos: -8.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2064 type: solid_wall components: @@ -34094,9 +29427,6 @@ entities: pos: -7.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2065 type: solid_wall components: @@ -34104,9 +29434,6 @@ entities: pos: -6.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2066 type: solid_wall components: @@ -34114,9 +29441,6 @@ entities: pos: -6.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2067 type: solid_wall components: @@ -34124,9 +29448,6 @@ entities: pos: -4.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2068 type: solid_wall components: @@ -34134,9 +29455,6 @@ entities: pos: -5.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2069 type: solid_wall components: @@ -34144,9 +29462,6 @@ entities: pos: -20.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2070 type: solid_wall components: @@ -34154,9 +29469,6 @@ entities: pos: -21.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2071 type: solid_wall components: @@ -34164,9 +29476,6 @@ entities: pos: -22.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2072 type: solid_wall components: @@ -34174,9 +29483,6 @@ entities: pos: -23.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2073 type: solid_wall components: @@ -34184,9 +29490,6 @@ entities: pos: -24.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2074 type: solid_wall components: @@ -34194,9 +29497,6 @@ entities: pos: -25.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2075 type: solid_wall components: @@ -34204,9 +29504,6 @@ entities: pos: -26.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2076 type: solid_wall components: @@ -34214,9 +29511,6 @@ entities: pos: -27.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2077 type: solid_wall components: @@ -34224,9 +29518,6 @@ entities: pos: -28.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2078 type: solid_wall components: @@ -34234,9 +29525,6 @@ entities: pos: -29.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2079 type: solid_wall components: @@ -34244,9 +29532,6 @@ entities: pos: -30.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2080 type: solid_wall components: @@ -34254,9 +29539,6 @@ entities: pos: -31.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2081 type: solid_wall components: @@ -34264,9 +29546,6 @@ entities: pos: -32.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2082 type: solid_wall components: @@ -34274,9 +29553,6 @@ entities: pos: -33.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2083 type: solid_wall components: @@ -34284,9 +29560,6 @@ entities: pos: -33.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2084 type: solid_wall components: @@ -34294,9 +29567,6 @@ entities: pos: -33.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2085 type: solid_wall components: @@ -34304,9 +29574,6 @@ entities: pos: -33.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2086 type: solid_wall components: @@ -34314,9 +29581,6 @@ entities: pos: -33.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2087 type: solid_wall components: @@ -34324,9 +29588,6 @@ entities: pos: -33.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2088 type: solid_wall components: @@ -34334,9 +29595,6 @@ entities: pos: -21.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2089 type: solid_wall components: @@ -34344,9 +29602,6 @@ entities: pos: -33.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2090 type: solid_wall components: @@ -34354,9 +29609,6 @@ entities: pos: -33.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2091 type: solid_wall components: @@ -34364,9 +29616,6 @@ entities: pos: -32.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2092 type: solid_wall components: @@ -34374,9 +29623,6 @@ entities: pos: -31.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2093 type: solid_wall components: @@ -34384,9 +29630,6 @@ entities: pos: -30.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2094 type: LowWall components: @@ -34394,9 +29637,6 @@ entities: pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2095 type: Window components: @@ -34404,9 +29644,6 @@ entities: pos: -8.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2096 type: Window components: @@ -34414,9 +29651,6 @@ entities: pos: -7.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2097 type: solid_wall components: @@ -34424,9 +29658,6 @@ entities: pos: -26.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2098 type: solid_wall components: @@ -34434,9 +29665,6 @@ entities: pos: -26.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2099 type: solid_wall components: @@ -34444,9 +29672,6 @@ entities: pos: -25.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2100 type: solid_wall components: @@ -34454,9 +29679,6 @@ entities: pos: -30.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2101 type: solid_wall components: @@ -34464,9 +29686,6 @@ entities: pos: -30.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2102 type: solid_wall components: @@ -34474,9 +29693,6 @@ entities: pos: -30.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2103 type: solid_wall components: @@ -34484,9 +29700,6 @@ entities: pos: -30.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2104 type: solid_wall components: @@ -34494,9 +29707,6 @@ entities: pos: -30.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2105 type: solid_wall components: @@ -34504,9 +29714,6 @@ entities: pos: -30.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2106 type: solid_wall components: @@ -34514,9 +29721,6 @@ entities: pos: -28.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2107 type: solid_wall components: @@ -34524,9 +29728,6 @@ entities: pos: -27.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2108 type: solid_wall components: @@ -34534,9 +29735,6 @@ entities: pos: -26.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2109 type: solid_wall components: @@ -34544,9 +29742,6 @@ entities: pos: -25.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2110 type: solid_wall components: @@ -34554,9 +29749,6 @@ entities: pos: -24.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2111 type: solid_wall components: @@ -34564,9 +29756,6 @@ entities: pos: -23.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2112 type: solid_wall components: @@ -34574,9 +29763,6 @@ entities: pos: -22.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2113 type: solid_wall components: @@ -34584,9 +29770,6 @@ entities: pos: -29.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2114 type: solid_wall components: @@ -34594,9 +29777,6 @@ entities: pos: -22.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2115 type: solid_wall components: @@ -34604,9 +29784,6 @@ entities: pos: -22.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2116 type: solid_wall components: @@ -34614,9 +29791,6 @@ entities: pos: -21.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2117 type: solid_wall components: @@ -34624,9 +29798,6 @@ entities: pos: -22.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2118 type: solid_wall components: @@ -34634,9 +29805,6 @@ entities: pos: -22.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2119 type: solid_wall components: @@ -34644,9 +29812,6 @@ entities: pos: -22.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2120 type: solid_wall components: @@ -34654,9 +29819,6 @@ entities: pos: -21.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2121 type: solid_wall components: @@ -34664,9 +29826,6 @@ entities: pos: -21.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2122 type: solid_wall components: @@ -34674,9 +29833,6 @@ entities: pos: -20.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2123 type: solid_wall components: @@ -34684,9 +29840,6 @@ entities: pos: -19.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2124 type: solid_wall components: @@ -34694,9 +29847,6 @@ entities: pos: -25.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2125 type: LowWall components: @@ -34704,9 +29854,6 @@ entities: pos: -25.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2126 type: LowWall components: @@ -34714,9 +29861,6 @@ entities: pos: -2.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2127 type: LowWall components: @@ -34724,9 +29868,6 @@ entities: pos: -3.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2128 type: LowWall components: @@ -34734,9 +29875,6 @@ entities: pos: -0.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2129 type: LowWall components: @@ -34744,9 +29882,6 @@ entities: pos: 0.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2130 type: LowWall components: @@ -34754,9 +29889,6 @@ entities: pos: 14.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2131 type: solid_wall components: @@ -34764,9 +29896,6 @@ entities: pos: 30.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2132 type: solid_wall components: @@ -34774,9 +29903,6 @@ entities: pos: 30.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2133 type: solid_wall components: @@ -34784,9 +29910,6 @@ entities: pos: 29.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2134 type: solid_wall components: @@ -34794,9 +29917,6 @@ entities: pos: 28.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2135 type: solid_wall components: @@ -34804,9 +29924,6 @@ entities: pos: 27.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2136 type: solid_wall components: @@ -34814,9 +29931,6 @@ entities: pos: 26.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2137 type: solid_wall components: @@ -34824,9 +29938,6 @@ entities: pos: 25.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2138 type: solid_wall components: @@ -34834,9 +29945,6 @@ entities: pos: 24.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2139 type: solid_wall components: @@ -34844,9 +29952,6 @@ entities: pos: 24.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2140 type: solid_wall components: @@ -34854,9 +29959,6 @@ entities: pos: 24.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2141 type: solid_wall components: @@ -34864,9 +29966,6 @@ entities: pos: 24.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2142 type: solid_wall components: @@ -34874,9 +29973,6 @@ entities: pos: 23.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2143 type: solid_wall components: @@ -34884,9 +29980,6 @@ entities: pos: 22.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2144 type: solid_wall components: @@ -34894,9 +29987,6 @@ entities: pos: 19.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2145 type: solid_wall components: @@ -34904,9 +29994,6 @@ entities: pos: 18.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2146 type: solid_wall components: @@ -34914,9 +30001,6 @@ entities: pos: 17.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2147 type: solid_wall components: @@ -34924,9 +30008,6 @@ entities: pos: 16.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2148 type: solid_wall components: @@ -34934,9 +30015,6 @@ entities: pos: 15.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2149 type: solid_wall components: @@ -34944,9 +30022,6 @@ entities: pos: 14.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2150 type: solid_wall components: @@ -34954,9 +30029,6 @@ entities: pos: 13.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2151 type: solid_wall components: @@ -34964,9 +30036,6 @@ entities: pos: 12.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2152 type: solid_wall components: @@ -34974,9 +30043,6 @@ entities: pos: 6.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2153 type: solid_wall components: @@ -34984,9 +30050,6 @@ entities: pos: 5.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2154 type: solid_wall components: @@ -34994,9 +30057,6 @@ entities: pos: 5.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2155 type: solid_wall components: @@ -35004,9 +30064,6 @@ entities: pos: 20.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2156 type: solid_wall components: @@ -35014,9 +30071,6 @@ entities: pos: 19.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2157 type: solid_wall components: @@ -35024,9 +30078,6 @@ entities: pos: 19.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2158 type: solid_wall components: @@ -35034,9 +30085,6 @@ entities: pos: 19.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2159 type: solid_wall components: @@ -35044,9 +30092,6 @@ entities: pos: 19.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2160 type: solid_wall components: @@ -35054,9 +30099,6 @@ entities: pos: 19.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2161 type: solid_wall components: @@ -35064,9 +30106,6 @@ entities: pos: 13.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2162 type: solid_wall components: @@ -35074,9 +30113,6 @@ entities: pos: 13.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2163 type: solid_wall components: @@ -35084,9 +30120,6 @@ entities: pos: 14.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2164 type: solid_wall components: @@ -35094,9 +30127,6 @@ entities: pos: 13.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2165 type: solid_wall components: @@ -35104,9 +30134,6 @@ entities: pos: 5.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2166 type: solid_wall components: @@ -35114,9 +30141,6 @@ entities: pos: 5.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2167 type: solid_wall components: @@ -35124,9 +30148,6 @@ entities: pos: 5.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2168 type: solid_wall components: @@ -35134,9 +30155,6 @@ entities: pos: 5.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2169 type: solid_wall components: @@ -35144,9 +30162,6 @@ entities: pos: 5.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2170 type: solid_wall components: @@ -35154,9 +30169,6 @@ entities: pos: 5.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2171 type: solid_wall components: @@ -35164,9 +30176,6 @@ entities: pos: 5.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2172 type: LowWall components: @@ -35174,9 +30183,6 @@ entities: pos: 5.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2173 type: LowWall components: @@ -35184,9 +30190,6 @@ entities: pos: 5.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2174 type: LowWall components: @@ -35194,9 +30197,6 @@ entities: pos: 5.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2175 type: LowWall components: @@ -35204,9 +30204,6 @@ entities: pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2176 type: LowWall components: @@ -35214,9 +30211,6 @@ entities: pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2177 type: LowWall components: @@ -35224,9 +30218,6 @@ entities: pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2178 type: LowWall components: @@ -35234,9 +30225,6 @@ entities: pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2179 type: LowWall components: @@ -35244,9 +30232,6 @@ entities: pos: 11.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2180 type: LowWall components: @@ -35254,9 +30239,6 @@ entities: pos: 10.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2181 type: LowWall components: @@ -35264,9 +30246,6 @@ entities: pos: 9.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2182 type: LowWall components: @@ -35274,9 +30253,6 @@ entities: pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2183 type: LowWall components: @@ -35284,9 +30260,6 @@ entities: pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2184 type: LowWall components: @@ -35294,9 +30267,6 @@ entities: pos: 6.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2185 type: LowWall components: @@ -35304,9 +30274,6 @@ entities: pos: 9.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2186 type: LowWall components: @@ -35314,9 +30281,6 @@ entities: pos: 8.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2187 type: LowWall components: @@ -35324,9 +30288,6 @@ entities: pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2188 type: LowWall components: @@ -35334,9 +30295,6 @@ entities: pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2189 type: LowWall components: @@ -35344,9 +30302,6 @@ entities: pos: 12.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2190 type: LowWall components: @@ -35354,9 +30309,6 @@ entities: pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2191 type: solid_wall components: @@ -35364,9 +30316,6 @@ entities: pos: 19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2192 type: solid_wall components: @@ -35374,9 +30323,6 @@ entities: pos: 20.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2193 type: solid_wall components: @@ -35384,9 +30330,6 @@ entities: pos: 21.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2194 type: solid_wall components: @@ -35394,9 +30337,6 @@ entities: pos: 22.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2195 type: solid_wall components: @@ -35404,9 +30344,6 @@ entities: pos: 23.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2196 type: solid_wall components: @@ -35414,9 +30351,6 @@ entities: pos: 24.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2197 type: solid_wall components: @@ -35424,9 +30358,6 @@ entities: pos: 25.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2198 type: solid_wall components: @@ -35434,9 +30365,6 @@ entities: pos: 25.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2199 type: solid_wall components: @@ -35444,9 +30372,6 @@ entities: pos: 25.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2200 type: solid_wall components: @@ -35454,9 +30379,6 @@ entities: pos: 25.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2201 type: solid_wall components: @@ -35464,9 +30386,6 @@ entities: pos: 25.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2202 type: solid_wall components: @@ -35474,9 +30393,6 @@ entities: pos: 24.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2203 type: solid_wall components: @@ -35484,9 +30400,6 @@ entities: pos: 23.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2204 type: solid_wall components: @@ -35494,9 +30407,6 @@ entities: pos: 22.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2205 type: solid_wall components: @@ -35504,9 +30414,6 @@ entities: pos: 21.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2206 type: solid_wall components: @@ -35514,9 +30421,6 @@ entities: pos: 20.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2207 type: solid_wall components: @@ -35524,9 +30428,6 @@ entities: pos: 20.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2208 type: solid_wall components: @@ -35534,9 +30435,6 @@ entities: pos: 16.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2209 type: solid_wall components: @@ -35544,9 +30442,6 @@ entities: pos: 20.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2210 type: solid_wall components: @@ -35554,9 +30449,6 @@ entities: pos: 20.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2211 type: Window components: @@ -35564,9 +30456,6 @@ entities: pos: 20.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2212 type: solid_wall components: @@ -35574,9 +30463,6 @@ entities: pos: 20.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2213 type: solid_wall components: @@ -35584,9 +30470,6 @@ entities: pos: 21.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2214 type: solid_wall components: @@ -35594,9 +30477,6 @@ entities: pos: 22.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2215 type: solid_wall components: @@ -35604,9 +30484,6 @@ entities: pos: 23.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2216 type: solid_wall components: @@ -35614,9 +30491,6 @@ entities: pos: 24.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2217 type: solid_wall components: @@ -35624,9 +30498,6 @@ entities: pos: 25.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2218 type: solid_wall components: @@ -35634,9 +30505,6 @@ entities: pos: 25.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2219 type: solid_wall components: @@ -35644,9 +30512,6 @@ entities: pos: 25.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2220 type: solid_wall components: @@ -35654,9 +30519,6 @@ entities: pos: 25.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2221 type: solid_wall components: @@ -35664,9 +30526,6 @@ entities: pos: 25.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2222 type: solid_wall components: @@ -35674,9 +30533,6 @@ entities: pos: 25.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2223 type: solid_wall components: @@ -35684,9 +30540,6 @@ entities: pos: 24.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2224 type: solid_wall components: @@ -35694,9 +30547,6 @@ entities: pos: 23.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2225 type: solid_wall components: @@ -35704,9 +30554,6 @@ entities: pos: 22.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2226 type: solid_wall components: @@ -35714,9 +30561,6 @@ entities: pos: 21.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2227 type: solid_wall components: @@ -35724,9 +30568,6 @@ entities: pos: 20.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2228 type: Window components: @@ -35734,9 +30575,6 @@ entities: pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2229 type: solid_wall components: @@ -35744,9 +30582,6 @@ entities: pos: 15.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2230 type: solid_wall components: @@ -35754,9 +30589,6 @@ entities: pos: 20.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2231 type: solid_wall components: @@ -35764,9 +30596,6 @@ entities: pos: 20.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2232 type: solid_wall components: @@ -35774,9 +30603,6 @@ entities: pos: 46.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2233 type: solid_wall components: @@ -35784,9 +30610,6 @@ entities: pos: 45.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2234 type: solid_wall components: @@ -35794,9 +30617,6 @@ entities: pos: 48.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2235 type: LowWall components: @@ -35804,9 +30624,6 @@ entities: pos: 20.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2236 type: LowWall components: @@ -35814,9 +30631,6 @@ entities: pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2237 type: LowWall components: @@ -35824,9 +30638,6 @@ entities: pos: 11.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2238 type: LowWall components: @@ -35834,9 +30645,6 @@ entities: pos: 11.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2239 type: LowWall components: @@ -35844,9 +30652,6 @@ entities: pos: 9.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2240 type: Window components: @@ -35854,9 +30659,6 @@ entities: pos: 9.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2241 type: solid_wall components: @@ -35864,9 +30666,6 @@ entities: pos: 11.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2242 type: Window components: @@ -35874,9 +30673,6 @@ entities: pos: 11.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2243 type: solid_wall components: @@ -35884,9 +30680,6 @@ entities: pos: 6.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2244 type: Window components: @@ -35894,9 +30687,6 @@ entities: pos: 20.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2245 type: solid_wall components: @@ -35904,9 +30694,6 @@ entities: pos: 6.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2246 type: solid_wall components: @@ -35914,9 +30701,6 @@ entities: pos: 6.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2247 type: solid_wall components: @@ -35924,9 +30708,6 @@ entities: pos: 6.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2248 type: solid_wall components: @@ -35934,9 +30715,6 @@ entities: pos: 6.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2249 type: solid_wall components: @@ -35944,9 +30722,6 @@ entities: pos: 6.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2250 type: solid_wall components: @@ -35954,9 +30729,6 @@ entities: pos: 7.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2251 type: solid_wall components: @@ -35964,9 +30736,6 @@ entities: pos: 8.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2252 type: solid_wall components: @@ -35974,9 +30743,6 @@ entities: pos: 9.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2253 type: solid_wall components: @@ -35984,9 +30750,6 @@ entities: pos: 10.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2254 type: solid_wall components: @@ -35994,9 +30757,6 @@ entities: pos: 11.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2255 type: Window components: @@ -36004,9 +30764,6 @@ entities: pos: 11.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2256 type: solid_wall components: @@ -36014,9 +30771,6 @@ entities: pos: 11.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2257 type: solid_wall components: @@ -36024,9 +30778,6 @@ entities: pos: 12.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2258 type: solid_wall components: @@ -36034,9 +30785,6 @@ entities: pos: 13.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2259 type: solid_wall components: @@ -36044,9 +30792,6 @@ entities: pos: 6.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2260 type: solid_wall components: @@ -36054,9 +30799,6 @@ entities: pos: 6.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2261 type: solid_wall components: @@ -36064,9 +30806,6 @@ entities: pos: 28.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2262 type: solid_wall components: @@ -36074,9 +30813,6 @@ entities: pos: 28.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2263 type: solid_wall components: @@ -36084,9 +30820,6 @@ entities: pos: 28.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2264 type: solid_wall components: @@ -36094,9 +30827,6 @@ entities: pos: 28.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2265 type: solid_wall components: @@ -36104,9 +30834,6 @@ entities: pos: 28.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2266 type: solid_wall components: @@ -36114,9 +30841,6 @@ entities: pos: 29.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2267 type: solid_wall components: @@ -36124,9 +30848,6 @@ entities: pos: 30.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2268 type: solid_wall components: @@ -36134,9 +30855,6 @@ entities: pos: 31.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2269 type: solid_wall components: @@ -36144,9 +30862,6 @@ entities: pos: 32.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2270 type: solid_wall components: @@ -36154,9 +30869,6 @@ entities: pos: 34.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2271 type: solid_wall components: @@ -36164,9 +30876,6 @@ entities: pos: 35.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2272 type: solid_wall components: @@ -36174,9 +30883,6 @@ entities: pos: 36.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2273 type: solid_wall components: @@ -36184,9 +30890,6 @@ entities: pos: 36.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2274 type: solid_wall components: @@ -36194,9 +30897,6 @@ entities: pos: 36.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2275 type: solid_wall components: @@ -36204,9 +30904,6 @@ entities: pos: 1.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2276 type: solid_wall components: @@ -36214,9 +30911,6 @@ entities: pos: 1.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2277 type: solid_wall components: @@ -36224,9 +30918,6 @@ entities: pos: 0.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2278 type: solid_wall components: @@ -36234,9 +30925,6 @@ entities: pos: 1.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2279 type: solid_wall components: @@ -36244,9 +30932,6 @@ entities: pos: 1.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2280 type: solid_wall components: @@ -36254,9 +30939,6 @@ entities: pos: 1.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2281 type: solid_wall components: @@ -36264,9 +30946,6 @@ entities: pos: 1.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2282 type: solid_wall components: @@ -36274,9 +30953,6 @@ entities: pos: 0.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2283 type: solid_wall components: @@ -36284,9 +30960,6 @@ entities: pos: -0.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2284 type: solid_wall components: @@ -36294,9 +30967,6 @@ entities: pos: -1.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2285 type: solid_wall components: @@ -36304,9 +30974,6 @@ entities: pos: -2.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2286 type: solid_wall components: @@ -36314,9 +30981,6 @@ entities: pos: 1.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2287 type: solid_wall components: @@ -36324,9 +30988,6 @@ entities: pos: 1.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2288 type: solid_wall components: @@ -36334,9 +30995,6 @@ entities: pos: 1.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2289 type: solid_wall components: @@ -36344,9 +31002,6 @@ entities: pos: 1.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2290 type: solid_wall components: @@ -36354,9 +31009,6 @@ entities: pos: 1.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2291 type: solid_wall components: @@ -36364,9 +31016,6 @@ entities: pos: 0.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2292 type: solid_wall components: @@ -36374,9 +31023,6 @@ entities: pos: -0.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2293 type: solid_wall components: @@ -36384,9 +31030,6 @@ entities: pos: -1.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2294 type: solid_wall components: @@ -36394,9 +31037,6 @@ entities: pos: -2.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2295 type: solid_wall components: @@ -36404,9 +31044,6 @@ entities: pos: 0.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2296 type: solid_wall components: @@ -36414,9 +31051,6 @@ entities: pos: -5.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2297 type: solid_wall components: @@ -36424,9 +31058,6 @@ entities: pos: 0.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2298 type: solid_wall components: @@ -36434,9 +31065,6 @@ entities: pos: 0.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2299 type: solid_wall components: @@ -36444,9 +31072,6 @@ entities: pos: -0.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2300 type: solid_wall components: @@ -36454,9 +31079,6 @@ entities: pos: -6.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2301 type: solid_wall components: @@ -36464,9 +31086,6 @@ entities: pos: -1.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2302 type: solid_wall components: @@ -36474,9 +31093,6 @@ entities: pos: -2.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2303 type: solid_wall components: @@ -36484,9 +31100,6 @@ entities: pos: -3.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2304 type: AirlockServiceLocked components: @@ -36496,9 +31109,6 @@ entities: pos: -12.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2305 type: solid_wall components: @@ -36506,9 +31116,6 @@ entities: pos: -5.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2306 type: solid_wall components: @@ -36516,9 +31123,6 @@ entities: pos: -6.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2307 type: solid_wall components: @@ -36526,9 +31130,6 @@ entities: pos: -6.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2308 type: solid_wall components: @@ -36536,9 +31137,6 @@ entities: pos: -6.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2309 type: solid_wall components: @@ -36546,9 +31144,6 @@ entities: pos: -6.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2310 type: solid_wall components: @@ -36556,9 +31151,6 @@ entities: pos: -6.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2311 type: solid_wall components: @@ -36566,9 +31158,6 @@ entities: pos: -6.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2312 type: solid_wall components: @@ -36576,9 +31165,6 @@ entities: pos: -6.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2313 type: LowWall components: @@ -36586,9 +31172,6 @@ entities: pos: -2.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2314 type: LowWall components: @@ -36596,9 +31179,6 @@ entities: pos: -4.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2315 type: LowWall components: @@ -36606,9 +31186,6 @@ entities: pos: 0.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2316 type: solid_wall components: @@ -36616,9 +31193,6 @@ entities: pos: -7.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2317 type: solid_wall components: @@ -36626,9 +31200,6 @@ entities: pos: 1.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2318 type: solid_wall components: @@ -36636,9 +31207,6 @@ entities: pos: 0.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2319 type: solid_wall components: @@ -36646,9 +31214,6 @@ entities: pos: 0.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2320 type: solid_wall components: @@ -36656,9 +31221,6 @@ entities: pos: -0.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2321 type: solid_wall components: @@ -36666,9 +31228,6 @@ entities: pos: -1.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2322 type: LowWall components: @@ -36676,9 +31235,6 @@ entities: pos: -4.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2323 type: solid_wall components: @@ -36686,9 +31242,6 @@ entities: pos: -1.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2324 type: solid_wall components: @@ -36696,9 +31249,6 @@ entities: pos: -1.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2325 type: solid_wall components: @@ -36706,9 +31256,6 @@ entities: pos: -1.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2326 type: solid_wall components: @@ -36716,9 +31263,6 @@ entities: pos: -1.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2327 type: solid_wall components: @@ -36726,9 +31270,6 @@ entities: pos: -2.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2328 type: solid_wall components: @@ -36736,9 +31277,6 @@ entities: pos: -3.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2329 type: solid_wall components: @@ -36746,9 +31284,6 @@ entities: pos: -4.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2330 type: solid_wall components: @@ -36756,9 +31291,6 @@ entities: pos: -5.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2331 type: solid_wall components: @@ -36766,9 +31298,6 @@ entities: pos: -6.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2332 type: solid_wall components: @@ -36776,9 +31305,6 @@ entities: pos: -6.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2333 type: solid_wall components: @@ -36786,9 +31312,6 @@ entities: pos: -6.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2334 type: solid_wall components: @@ -36796,9 +31319,6 @@ entities: pos: -6.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2335 type: solid_wall components: @@ -36806,9 +31326,6 @@ entities: pos: -6.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2336 type: LowWall components: @@ -36816,9 +31333,6 @@ entities: pos: -2.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2337 type: LowWall components: @@ -36826,9 +31340,6 @@ entities: pos: -5.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2338 type: solid_wall components: @@ -36836,9 +31347,6 @@ entities: pos: -9.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2339 type: reinforced_wall components: @@ -36846,9 +31354,6 @@ entities: pos: -12.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2340 type: reinforced_wall components: @@ -36856,9 +31361,6 @@ entities: pos: -13.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2341 type: reinforced_wall components: @@ -36866,9 +31368,6 @@ entities: pos: -14.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2342 type: reinforced_wall components: @@ -36876,9 +31375,6 @@ entities: pos: -15.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2343 type: reinforced_wall components: @@ -36886,9 +31382,6 @@ entities: pos: -16.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2344 type: reinforced_wall components: @@ -36896,9 +31389,6 @@ entities: pos: -17.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2345 type: reinforced_wall components: @@ -36906,9 +31396,6 @@ entities: pos: -18.5,-27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2346 type: reinforced_wall components: @@ -36916,9 +31403,6 @@ entities: pos: -18.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2347 type: reinforced_wall components: @@ -36926,9 +31410,6 @@ entities: pos: -18.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2348 type: reinforced_wall components: @@ -36936,9 +31417,6 @@ entities: pos: -18.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2349 type: reinforced_wall components: @@ -36946,9 +31424,6 @@ entities: pos: -18.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2350 type: reinforced_wall components: @@ -36956,9 +31431,6 @@ entities: pos: -17.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2351 type: reinforced_wall components: @@ -36966,9 +31438,6 @@ entities: pos: -13.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2352 type: reinforced_wall components: @@ -36976,9 +31445,6 @@ entities: pos: -12.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2353 type: reinforced_wall components: @@ -36986,9 +31452,6 @@ entities: pos: -12.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2354 type: reinforced_wall components: @@ -36996,9 +31459,6 @@ entities: pos: -12.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2355 type: reinforced_wall components: @@ -37006,9 +31466,6 @@ entities: pos: -12.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2356 type: solid_wall components: @@ -37016,9 +31473,6 @@ entities: pos: -12.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2357 type: solid_wall components: @@ -37026,9 +31480,6 @@ entities: pos: -11.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2358 type: solid_wall components: @@ -37036,9 +31487,6 @@ entities: pos: -10.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2359 type: solid_wall components: @@ -37046,9 +31494,6 @@ entities: pos: -6.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2360 type: solid_wall components: @@ -37056,9 +31501,6 @@ entities: pos: -5.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2361 type: solid_wall components: @@ -37066,9 +31508,6 @@ entities: pos: -4.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2362 type: solid_wall components: @@ -37076,9 +31515,6 @@ entities: pos: -3.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2363 type: solid_wall components: @@ -37086,9 +31522,6 @@ entities: pos: -2.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2364 type: solid_wall components: @@ -37096,9 +31529,6 @@ entities: pos: -1.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2365 type: solid_wall components: @@ -37106,9 +31536,6 @@ entities: pos: -0.5,-28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2366 type: solid_wall components: @@ -37116,9 +31543,6 @@ entities: pos: -10.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2367 type: solid_wall components: @@ -37126,9 +31550,6 @@ entities: pos: -10.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2368 type: solid_wall components: @@ -37136,9 +31557,6 @@ entities: pos: -10.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2369 type: solid_wall components: @@ -37146,9 +31564,6 @@ entities: pos: -10.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2370 type: solid_wall components: @@ -37156,9 +31571,6 @@ entities: pos: -10.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2371 type: solid_wall components: @@ -37166,9 +31578,6 @@ entities: pos: -12.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2372 type: solid_wall components: @@ -37176,9 +31585,6 @@ entities: pos: -12.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2373 type: solid_wall components: @@ -37186,9 +31592,6 @@ entities: pos: -12.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2374 type: solid_wall components: @@ -37196,9 +31599,6 @@ entities: pos: -12.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2375 type: solid_wall components: @@ -37206,9 +31606,6 @@ entities: pos: -12.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2376 type: solid_wall components: @@ -37216,9 +31613,6 @@ entities: pos: -11.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2377 type: solid_wall components: @@ -37226,9 +31620,6 @@ entities: pos: -10.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2378 type: solid_wall components: @@ -37236,9 +31627,6 @@ entities: pos: -9.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2379 type: solid_wall components: @@ -37246,9 +31634,6 @@ entities: pos: -8.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2380 type: solid_wall components: @@ -37256,9 +31641,6 @@ entities: pos: -7.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2381 type: solid_wall components: @@ -37266,9 +31648,6 @@ entities: pos: -13.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2382 type: solid_wall components: @@ -37276,9 +31655,6 @@ entities: pos: -14.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2383 type: solid_wall components: @@ -37286,9 +31662,6 @@ entities: pos: -15.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2384 type: solid_wall components: @@ -37296,9 +31669,6 @@ entities: pos: -17.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2385 type: solid_wall components: @@ -37306,9 +31676,6 @@ entities: pos: -18.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2386 type: solid_wall components: @@ -37316,9 +31683,6 @@ entities: pos: -18.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2387 type: solid_wall components: @@ -37326,9 +31690,6 @@ entities: pos: -18.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2388 type: solid_wall components: @@ -37336,9 +31697,6 @@ entities: pos: -18.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2389 type: solid_wall components: @@ -37346,9 +31704,6 @@ entities: pos: -18.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2390 type: solid_wall components: @@ -37356,9 +31711,6 @@ entities: pos: -18.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2391 type: solid_wall components: @@ -37366,9 +31718,6 @@ entities: pos: -18.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2392 type: Table components: @@ -37376,9 +31725,6 @@ entities: pos: 6.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2393 type: Table components: @@ -37386,9 +31732,6 @@ entities: pos: 5.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2394 type: VendingMachineCoffee components: @@ -37396,9 +31739,6 @@ entities: pos: 5.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 2395 type: ToolboxElectricalFilled components: @@ -37419,9 +31759,6 @@ entities: pos: -16.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2397 type: solid_wall components: @@ -37429,9 +31766,6 @@ entities: pos: -15.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2398 type: solid_wall components: @@ -37439,9 +31773,6 @@ entities: pos: -14.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2399 type: solid_wall components: @@ -37449,9 +31780,6 @@ entities: pos: -12.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2400 type: solid_wall components: @@ -37459,9 +31787,6 @@ entities: pos: -11.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2401 type: solid_wall components: @@ -37469,9 +31794,6 @@ entities: pos: -10.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2402 type: solid_wall components: @@ -37479,9 +31801,6 @@ entities: pos: -10.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2403 type: solid_wall components: @@ -37489,9 +31808,6 @@ entities: pos: -10.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2404 type: solid_wall components: @@ -37499,9 +31815,6 @@ entities: pos: -10.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2405 type: solid_wall components: @@ -37509,9 +31822,6 @@ entities: pos: -10.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2406 type: solid_wall components: @@ -37519,9 +31829,6 @@ entities: pos: -10.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2407 type: solid_wall components: @@ -37529,9 +31836,6 @@ entities: pos: -11.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2408 type: solid_wall components: @@ -37539,9 +31843,6 @@ entities: pos: -13.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2409 type: solid_wall components: @@ -37549,9 +31850,6 @@ entities: pos: -14.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2410 type: solid_wall components: @@ -37559,9 +31857,6 @@ entities: pos: -15.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2411 type: solid_wall components: @@ -37569,9 +31864,6 @@ entities: pos: -16.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2412 type: solid_wall components: @@ -37579,9 +31871,6 @@ entities: pos: -16.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2413 type: solid_wall components: @@ -37589,9 +31878,6 @@ entities: pos: -16.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2414 type: solid_wall components: @@ -37599,9 +31885,6 @@ entities: pos: -16.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2415 type: solid_wall components: @@ -37609,9 +31892,6 @@ entities: pos: -16.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2416 type: solid_wall components: @@ -37619,9 +31899,6 @@ entities: pos: -9.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2417 type: solid_wall components: @@ -37629,9 +31906,6 @@ entities: pos: -8.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2418 type: solid_wall components: @@ -37639,9 +31913,6 @@ entities: pos: -7.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2419 type: solid_wall components: @@ -37649,9 +31920,6 @@ entities: pos: -2.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2420 type: solid_wall components: @@ -37659,9 +31927,6 @@ entities: pos: -2.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2421 type: solid_wall components: @@ -37669,9 +31934,6 @@ entities: pos: -2.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2422 type: solid_wall components: @@ -37679,9 +31941,6 @@ entities: pos: -3.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2423 type: solid_wall components: @@ -37689,9 +31948,6 @@ entities: pos: -4.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2424 type: solid_wall components: @@ -37699,9 +31955,6 @@ entities: pos: -5.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2425 type: solid_wall components: @@ -37709,9 +31962,6 @@ entities: pos: -6.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2426 type: solid_wall components: @@ -37719,9 +31969,6 @@ entities: pos: -7.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2427 type: solid_wall components: @@ -37729,9 +31976,6 @@ entities: pos: -8.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2428 type: solid_wall components: @@ -37739,9 +31983,6 @@ entities: pos: -8.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2429 type: solid_wall components: @@ -37749,9 +31990,6 @@ entities: pos: -8.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2430 type: solid_wall components: @@ -37759,9 +31997,6 @@ entities: pos: -7.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2431 type: solid_wall components: @@ -37769,9 +32004,6 @@ entities: pos: -9.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2432 type: solid_wall components: @@ -37779,9 +32011,6 @@ entities: pos: -10.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2433 type: Table components: @@ -37789,9 +32018,6 @@ entities: pos: -15.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2434 type: Table components: @@ -37799,9 +32025,6 @@ entities: pos: -15.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2435 type: Table components: @@ -37809,9 +32032,6 @@ entities: pos: -29.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2436 type: DisposalTrunk components: @@ -37820,8 +32040,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Breakable - containers: DisposalEntry: @@ -37834,9 +32052,6 @@ entities: pos: -11.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 2438 type: ChairOfficeDark components: @@ -37846,9 +32061,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 2439 type: solid_wall components: @@ -37856,9 +32068,6 @@ entities: pos: -10.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2440 type: solid_wall components: @@ -37866,9 +32075,6 @@ entities: pos: -4.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2441 type: solid_wall components: @@ -37876,9 +32082,6 @@ entities: pos: -9.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2442 type: solid_wall components: @@ -37886,9 +32089,6 @@ entities: pos: -11.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2443 type: Table components: @@ -37896,9 +32096,6 @@ entities: pos: 26.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2444 type: Multitool components: @@ -37928,9 +32125,6 @@ entities: pos: 29.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 2447 type: Table components: @@ -37938,9 +32132,6 @@ entities: pos: 28.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2448 type: Table components: @@ -37948,9 +32139,6 @@ entities: pos: 20.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2449 type: Table components: @@ -37958,9 +32146,6 @@ entities: pos: 19.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2450 type: WeldingFuelTank components: @@ -37970,9 +32155,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 2451 type: WeldingFuelTank components: @@ -37982,9 +32164,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 2452 type: WeldingFuelTank components: @@ -37994,9 +32173,6 @@ entities: type: Transform - anchored: False type: Collidable - - flags: - - None - type: Destructible - uid: 2453 type: DrinkMugMoebius components: @@ -38013,9 +32189,6 @@ entities: pos: 9.5,28.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Breakable - uid: 2455 type: Table components: @@ -38023,9 +32196,6 @@ entities: pos: 0.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2456 type: Table components: @@ -38033,9 +32203,6 @@ entities: pos: 1.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2457 type: Table components: @@ -38043,9 +32210,6 @@ entities: pos: -0.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2458 type: solid_wall components: @@ -38053,9 +32217,6 @@ entities: pos: -21.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2459 type: solid_wall components: @@ -38063,9 +32224,6 @@ entities: pos: -22.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2460 type: Paper components: @@ -38082,9 +32240,6 @@ entities: pos: -24.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2462 type: solid_wall components: @@ -38092,9 +32247,6 @@ entities: pos: -25.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2463 type: solid_wall components: @@ -38102,9 +32254,6 @@ entities: pos: -26.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2464 type: solid_wall components: @@ -38112,9 +32261,6 @@ entities: pos: -27.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2465 type: solid_wall components: @@ -38122,9 +32268,6 @@ entities: pos: -28.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2466 type: solid_wall components: @@ -38132,9 +32275,6 @@ entities: pos: -29.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2467 type: solid_wall components: @@ -38142,9 +32282,6 @@ entities: pos: -30.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2468 type: solid_wall components: @@ -38152,9 +32289,6 @@ entities: pos: -31.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2469 type: solid_wall components: @@ -38162,9 +32296,6 @@ entities: pos: -31.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2470 type: solid_wall components: @@ -38172,9 +32303,6 @@ entities: pos: -31.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2471 type: Table components: @@ -38182,9 +32310,6 @@ entities: pos: -1.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2472 type: Table components: @@ -38192,9 +32317,6 @@ entities: pos: -2.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2473 type: solid_wall components: @@ -38202,9 +32324,6 @@ entities: pos: -34.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2474 type: solid_wall components: @@ -38212,9 +32331,6 @@ entities: pos: -34.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2475 type: solid_wall components: @@ -38222,9 +32338,6 @@ entities: pos: -31.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2476 type: solid_wall components: @@ -38232,9 +32345,6 @@ entities: pos: -31.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2477 type: solid_wall components: @@ -38242,9 +32352,6 @@ entities: pos: -31.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2478 type: solid_wall components: @@ -38252,9 +32359,6 @@ entities: pos: -30.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2479 type: solid_wall components: @@ -38262,9 +32366,6 @@ entities: pos: -29.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2480 type: solid_wall components: @@ -38272,9 +32373,6 @@ entities: pos: -28.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2481 type: solid_wall components: @@ -38282,9 +32380,6 @@ entities: pos: -27.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2482 type: solid_wall components: @@ -38292,9 +32387,6 @@ entities: pos: -26.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2483 type: solid_wall components: @@ -38302,9 +32394,6 @@ entities: pos: -26.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2484 type: solid_wall components: @@ -38312,9 +32401,6 @@ entities: pos: -26.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2485 type: solid_wall components: @@ -38322,9 +32408,6 @@ entities: pos: -26.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2486 type: solid_wall components: @@ -38332,9 +32415,6 @@ entities: pos: -26.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2487 type: solid_wall components: @@ -38342,9 +32422,6 @@ entities: pos: -26.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2488 type: Table components: @@ -38352,9 +32429,6 @@ entities: pos: -7.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2489 type: solid_wall components: @@ -38362,9 +32436,6 @@ entities: pos: -21.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2490 type: solid_wall components: @@ -38372,9 +32443,6 @@ entities: pos: -21.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2491 type: solid_wall components: @@ -38382,9 +32450,6 @@ entities: pos: -20.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2492 type: solid_wall components: @@ -38392,9 +32457,6 @@ entities: pos: -19.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2493 type: solid_wall components: @@ -38402,9 +32464,6 @@ entities: pos: -18.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2494 type: solid_wall components: @@ -38412,9 +32471,6 @@ entities: pos: -17.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2495 type: SpawnPointLatejoin components: @@ -38440,9 +32496,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -38458,9 +32511,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -38472,9 +32522,6 @@ entities: pos: -17.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2500 type: solid_wall components: @@ -38482,9 +32529,6 @@ entities: pos: -17.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2501 type: solid_wall components: @@ -38492,9 +32536,6 @@ entities: pos: -17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2502 type: solid_wall components: @@ -38502,9 +32543,6 @@ entities: pos: -18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2503 type: solid_wall components: @@ -38512,9 +32550,6 @@ entities: pos: -19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2504 type: solid_wall components: @@ -38522,9 +32557,6 @@ entities: pos: -20.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2505 type: solid_wall components: @@ -38532,9 +32564,6 @@ entities: pos: -21.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2506 type: solid_wall components: @@ -38542,9 +32571,6 @@ entities: pos: -21.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2507 type: reinforced_wall components: @@ -38552,9 +32578,6 @@ entities: pos: 11.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2508 type: reinforced_wall components: @@ -38562,9 +32585,6 @@ entities: pos: 14.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2509 type: reinforced_wall components: @@ -38572,9 +32592,6 @@ entities: pos: 13.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2510 type: reinforced_wall components: @@ -38582,9 +32599,6 @@ entities: pos: 14.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2511 type: reinforced_wall components: @@ -38592,9 +32606,6 @@ entities: pos: 14.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2512 type: reinforced_wall components: @@ -38602,9 +32613,6 @@ entities: pos: 14.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2513 type: reinforced_wall components: @@ -38612,9 +32620,6 @@ entities: pos: -14.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2514 type: reinforced_wall components: @@ -38622,9 +32627,6 @@ entities: pos: -14.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2515 type: reinforced_wall components: @@ -38632,9 +32634,6 @@ entities: pos: -16.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2516 type: SalternApc components: @@ -38750,9 +32749,6 @@ entities: pos: -15.498537,16.019438 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -38819,8 +32815,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2536 type: SalternApc @@ -38866,8 +32860,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2541 type: ApcExtensionCable @@ -38877,8 +32869,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2542 type: ApcExtensionCable @@ -38888,8 +32878,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2543 type: ApcExtensionCable @@ -38899,8 +32887,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2544 type: ApcExtensionCable @@ -38910,8 +32896,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2545 type: ApcExtensionCable @@ -38921,8 +32905,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2546 type: ApcExtensionCable @@ -38932,8 +32914,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2547 type: ApcExtensionCable @@ -38943,8 +32923,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2548 type: ApcExtensionCable @@ -38954,8 +32932,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2549 type: ApcExtensionCable @@ -38965,8 +32941,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2550 type: ApcExtensionCable @@ -38976,8 +32950,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2551 type: ApcExtensionCable @@ -38987,8 +32959,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2552 type: ApcExtensionCable @@ -38998,8 +32968,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2553 type: ApcExtensionCable @@ -39009,8 +32977,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2554 type: ApcExtensionCable @@ -39020,8 +32986,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2555 type: ApcExtensionCable @@ -39031,8 +32995,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2556 type: ApcExtensionCable @@ -39042,8 +33004,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2557 type: ApcExtensionCable @@ -39053,8 +33013,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2558 type: ApcExtensionCable @@ -39064,8 +33022,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2559 type: ApcExtensionCable @@ -39075,8 +33031,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2560 type: ApcExtensionCable @@ -39086,8 +33040,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2561 type: ApcExtensionCable @@ -39097,8 +33049,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2562 type: ApcExtensionCable @@ -39108,8 +33058,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2563 type: ApcExtensionCable @@ -39119,8 +33067,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2564 type: ApcExtensionCable @@ -39130,8 +33076,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2565 type: ApcExtensionCable @@ -39141,8 +33085,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2566 type: SalternApc @@ -39161,8 +33103,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2568 type: ApcExtensionCable @@ -39172,8 +33112,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2569 type: ApcExtensionCable @@ -39183,8 +33121,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2570 type: ApcExtensionCable @@ -39194,8 +33130,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2571 type: ApcExtensionCable @@ -39205,8 +33139,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2572 type: ApcExtensionCable @@ -39216,8 +33148,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2573 type: ApcExtensionCable @@ -39227,8 +33157,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2574 type: ApcExtensionCable @@ -39238,8 +33166,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2575 type: ApcExtensionCable @@ -39249,8 +33175,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2576 type: ApcExtensionCable @@ -39260,8 +33184,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2577 type: ApcExtensionCable @@ -39271,8 +33193,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2578 type: ApcExtensionCable @@ -39282,8 +33202,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2579 type: ApcExtensionCable @@ -39293,8 +33211,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2580 type: ApcExtensionCable @@ -39304,8 +33220,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2581 type: ApcExtensionCable @@ -39315,8 +33229,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2582 type: ApcExtensionCable @@ -39326,8 +33238,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2583 type: ApcExtensionCable @@ -39337,8 +33247,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2584 type: ApcExtensionCable @@ -39348,8 +33256,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2585 type: ApcExtensionCable @@ -39359,8 +33265,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2586 type: ApcExtensionCable @@ -39370,8 +33274,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2587 type: ApcExtensionCable @@ -39381,8 +33283,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2588 type: ApcExtensionCable @@ -39392,8 +33292,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2589 type: ApcExtensionCable @@ -39403,8 +33301,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2590 type: ApcExtensionCable @@ -39414,8 +33310,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2591 type: ApcExtensionCable @@ -39425,8 +33319,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2592 type: ApcExtensionCable @@ -39436,8 +33328,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2593 type: ApcExtensionCable @@ -39447,8 +33337,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2594 type: ApcExtensionCable @@ -39458,8 +33346,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2595 type: ApcExtensionCable @@ -39469,8 +33355,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2596 type: ApcExtensionCable @@ -39480,8 +33364,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2597 type: ApcExtensionCable @@ -39491,8 +33373,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2598 type: ApcExtensionCable @@ -39502,8 +33382,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2599 type: ApcExtensionCable @@ -39513,8 +33391,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2600 type: ApcExtensionCable @@ -39524,8 +33400,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2601 type: ApcExtensionCable @@ -39535,8 +33409,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2602 type: ApcExtensionCable @@ -39546,8 +33418,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2603 type: ApcExtensionCable @@ -39557,8 +33427,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2604 type: ApcExtensionCable @@ -39568,8 +33436,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2605 type: ApcExtensionCable @@ -39579,8 +33445,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2606 type: ApcExtensionCable @@ -39590,8 +33454,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2607 type: ApcExtensionCable @@ -39601,8 +33463,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2608 type: ApcExtensionCable @@ -39612,8 +33472,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2609 type: ApcExtensionCable @@ -39623,8 +33481,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2610 type: ApcExtensionCable @@ -39634,8 +33490,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2611 type: ApcExtensionCable @@ -39645,8 +33499,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2612 type: ApcExtensionCable @@ -39656,8 +33508,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2613 type: ApcExtensionCable @@ -39667,8 +33517,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2614 type: ApcExtensionCable @@ -39678,8 +33526,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2615 type: ApcExtensionCable @@ -39689,8 +33535,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2616 type: ApcExtensionCable @@ -39700,8 +33544,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2617 type: ApcExtensionCable @@ -39711,8 +33553,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2618 type: ApcExtensionCable @@ -39722,8 +33562,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2619 type: ApcExtensionCable @@ -39733,8 +33571,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2620 type: ApcExtensionCable @@ -39744,8 +33580,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2621 type: ApcExtensionCable @@ -39755,8 +33589,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2622 type: ApcExtensionCable @@ -39766,8 +33598,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2623 type: ApcExtensionCable @@ -39777,8 +33607,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2624 type: ApcExtensionCable @@ -39788,8 +33616,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2625 type: ApcExtensionCable @@ -39799,8 +33625,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2626 type: ApcExtensionCable @@ -39810,8 +33634,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2627 type: ApcExtensionCable @@ -39821,8 +33643,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2628 type: ApcExtensionCable @@ -39832,8 +33652,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2629 type: ApcExtensionCable @@ -39843,8 +33661,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2630 type: ApcExtensionCable @@ -39854,8 +33670,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2631 type: ApcExtensionCable @@ -39865,8 +33679,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2632 type: ApcExtensionCable @@ -39876,8 +33688,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2633 type: ApcExtensionCable @@ -39887,8 +33697,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2634 type: ApcExtensionCable @@ -39898,8 +33706,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2635 type: ApcExtensionCable @@ -39909,8 +33715,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2636 type: ApcExtensionCable @@ -39920,8 +33724,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2637 type: ApcExtensionCable @@ -39931,8 +33733,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2638 type: ApcExtensionCable @@ -39942,8 +33742,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2639 type: ApcExtensionCable @@ -39953,8 +33751,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2640 type: ApcExtensionCable @@ -39964,8 +33760,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2641 type: ApcExtensionCable @@ -39975,8 +33769,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2642 type: ApcExtensionCable @@ -39986,8 +33778,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2643 type: ApcExtensionCable @@ -39997,8 +33787,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2644 type: ApcExtensionCable @@ -40008,8 +33796,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2645 type: ApcExtensionCable @@ -40019,8 +33805,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2646 type: ApcExtensionCable @@ -40030,8 +33814,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2647 type: ApcExtensionCable @@ -40041,8 +33823,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2648 type: ApcExtensionCable @@ -40052,8 +33832,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2649 type: ApcExtensionCable @@ -40063,8 +33841,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2650 type: ApcExtensionCable @@ -40074,8 +33850,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2651 type: ApcExtensionCable @@ -40085,8 +33859,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2652 type: ApcExtensionCable @@ -40096,8 +33868,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2653 type: ApcExtensionCable @@ -40107,8 +33877,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2654 type: ApcExtensionCable @@ -40118,8 +33886,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2655 type: ApcExtensionCable @@ -40129,8 +33895,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2656 type: ApcExtensionCable @@ -40140,8 +33904,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2657 type: ApcExtensionCable @@ -40151,8 +33913,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2658 type: ApcExtensionCable @@ -40162,8 +33922,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2659 type: ApcExtensionCable @@ -40173,8 +33931,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2660 type: ApcExtensionCable @@ -40184,8 +33940,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2661 type: ApcExtensionCable @@ -40195,8 +33949,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2662 type: ApcExtensionCable @@ -40206,8 +33958,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2663 type: ApcExtensionCable @@ -40217,8 +33967,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2664 type: ApcExtensionCable @@ -40228,8 +33976,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2665 type: ApcExtensionCable @@ -40239,8 +33985,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2666 type: ApcExtensionCable @@ -40250,8 +33994,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2667 type: ApcExtensionCable @@ -40261,8 +34003,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2668 type: ApcExtensionCable @@ -40272,8 +34012,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2669 type: ApcExtensionCable @@ -40283,8 +34021,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2670 type: ApcExtensionCable @@ -40294,8 +34030,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2671 type: ApcExtensionCable @@ -40305,8 +34039,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2672 type: ApcExtensionCable @@ -40316,8 +34048,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2673 type: ApcExtensionCable @@ -40327,8 +34057,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2674 type: ApcExtensionCable @@ -40338,8 +34066,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2675 type: ApcExtensionCable @@ -40349,8 +34075,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2676 type: ApcExtensionCable @@ -40360,8 +34084,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2677 type: ApcExtensionCable @@ -40371,8 +34093,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2678 type: ApcExtensionCable @@ -40382,8 +34102,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2679 type: ApcExtensionCable @@ -40393,8 +34111,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2680 type: ApcExtensionCable @@ -40404,8 +34120,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2681 type: ApcExtensionCable @@ -40415,8 +34129,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2682 type: ApcExtensionCable @@ -40426,8 +34138,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2683 type: ApcExtensionCable @@ -40437,8 +34147,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2684 type: ApcExtensionCable @@ -40448,8 +34156,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2685 type: ApcExtensionCable @@ -40459,8 +34165,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2686 type: ApcExtensionCable @@ -40470,8 +34174,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2687 type: ApcExtensionCable @@ -40481,8 +34183,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2688 type: ApcExtensionCable @@ -40492,8 +34192,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2689 type: ApcExtensionCable @@ -40503,8 +34201,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2690 type: ApcExtensionCable @@ -40514,8 +34210,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2691 type: ApcExtensionCable @@ -40525,8 +34219,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2692 type: ApcExtensionCable @@ -40536,8 +34228,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2693 type: ApcExtensionCable @@ -40547,8 +34237,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2694 type: ApcExtensionCable @@ -40558,8 +34246,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2695 type: ApcExtensionCable @@ -40569,8 +34255,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2696 type: ApcExtensionCable @@ -40580,8 +34264,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2697 type: ApcExtensionCable @@ -40591,8 +34273,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2698 type: ApcExtensionCable @@ -40602,8 +34282,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2699 type: ApcExtensionCable @@ -40613,8 +34291,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2700 type: ApcExtensionCable @@ -40624,8 +34300,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2701 type: ApcExtensionCable @@ -40635,8 +34309,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2702 type: ApcExtensionCable @@ -40646,8 +34318,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2703 type: ApcExtensionCable @@ -40657,8 +34327,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2704 type: ApcExtensionCable @@ -40668,8 +34336,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2705 type: ApcExtensionCable @@ -40679,8 +34345,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2706 type: ApcExtensionCable @@ -40690,8 +34354,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2707 type: ApcExtensionCable @@ -40701,8 +34363,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2708 type: ApcExtensionCable @@ -40712,8 +34372,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2709 type: ApcExtensionCable @@ -40723,8 +34381,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2710 type: ApcExtensionCable @@ -40734,8 +34390,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2711 type: ApcExtensionCable @@ -40745,8 +34399,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2712 type: ApcExtensionCable @@ -40756,8 +34408,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2713 type: ApcExtensionCable @@ -40767,8 +34417,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2714 type: ApcExtensionCable @@ -40778,8 +34426,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2715 type: ApcExtensionCable @@ -40789,8 +34435,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2716 type: ApcExtensionCable @@ -40800,8 +34444,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2717 type: ApcExtensionCable @@ -40811,8 +34453,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2718 type: ApcExtensionCable @@ -40822,8 +34462,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2719 type: ApcExtensionCable @@ -40833,8 +34471,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2720 type: ApcExtensionCable @@ -40844,8 +34480,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2721 type: ApcExtensionCable @@ -40855,8 +34489,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2722 type: ApcExtensionCable @@ -40866,8 +34498,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2723 type: ApcExtensionCable @@ -40877,8 +34507,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2724 type: ApcExtensionCable @@ -40888,8 +34516,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2725 type: ApcExtensionCable @@ -40899,8 +34525,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2726 type: ApcExtensionCable @@ -40910,8 +34534,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2727 type: ApcExtensionCable @@ -40921,8 +34543,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2728 type: ApcExtensionCable @@ -40932,8 +34552,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2729 type: ApcExtensionCable @@ -40943,8 +34561,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2730 type: ApcExtensionCable @@ -40954,8 +34570,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2731 type: solid_wall @@ -40964,9 +34578,6 @@ entities: pos: -31.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2732 type: ApcExtensionCable components: @@ -40975,8 +34586,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2733 type: ApcExtensionCable @@ -40986,8 +34595,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2734 type: ApcExtensionCable @@ -40997,8 +34604,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2735 type: ApcExtensionCable @@ -41008,8 +34613,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2736 type: ApcExtensionCable @@ -41019,8 +34622,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2737 type: ApcExtensionCable @@ -41030,8 +34631,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2738 type: ApcExtensionCable @@ -41041,8 +34640,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2739 type: ApcExtensionCable @@ -41052,8 +34649,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2740 type: ApcExtensionCable @@ -41063,8 +34658,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2741 type: ApcExtensionCable @@ -41074,8 +34667,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2742 type: ApcExtensionCable @@ -41085,8 +34676,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2743 type: ApcExtensionCable @@ -41096,8 +34685,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2744 type: ApcExtensionCable @@ -41107,8 +34694,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2745 type: ApcExtensionCable @@ -41118,8 +34703,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2746 type: ApcExtensionCable @@ -41129,8 +34712,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2747 type: ApcExtensionCable @@ -41140,8 +34721,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2748 type: ApcExtensionCable @@ -41151,8 +34730,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2749 type: ApcExtensionCable @@ -41162,8 +34739,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2750 type: ApcExtensionCable @@ -41173,8 +34748,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2751 type: ApcExtensionCable @@ -41184,8 +34757,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2752 type: ApcExtensionCable @@ -41195,8 +34766,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2753 type: ApcExtensionCable @@ -41206,8 +34775,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2754 type: ApcExtensionCable @@ -41217,8 +34784,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2755 type: ApcExtensionCable @@ -41228,8 +34793,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2756 type: ApcExtensionCable @@ -41239,8 +34802,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2757 type: ApcExtensionCable @@ -41250,8 +34811,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2758 type: ApcExtensionCable @@ -41261,8 +34820,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2759 type: ApcExtensionCable @@ -41272,8 +34829,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2760 type: ApcExtensionCable @@ -41283,8 +34838,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2761 type: ApcExtensionCable @@ -41294,8 +34847,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2762 type: ApcExtensionCable @@ -41305,8 +34856,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2763 type: ApcExtensionCable @@ -41316,8 +34865,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2764 type: ApcExtensionCable @@ -41327,8 +34874,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2765 type: ApcExtensionCable @@ -41338,8 +34883,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2766 type: ApcExtensionCable @@ -41349,8 +34892,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2767 type: ApcExtensionCable @@ -41360,8 +34901,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2768 type: ApcExtensionCable @@ -41371,8 +34910,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2769 type: ApcExtensionCable @@ -41382,8 +34919,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2770 type: ApcExtensionCable @@ -41393,8 +34928,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2771 type: ApcExtensionCable @@ -41404,8 +34937,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2772 type: ApcExtensionCable @@ -41415,8 +34946,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2773 type: ApcExtensionCable @@ -41426,8 +34955,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2774 type: ApcExtensionCable @@ -41437,8 +34964,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2775 type: ApcExtensionCable @@ -41448,8 +34973,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2776 type: ApcExtensionCable @@ -41459,8 +34982,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2777 type: ApcExtensionCable @@ -41470,8 +34991,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2778 type: ApcExtensionCable @@ -41481,8 +35000,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2779 type: ApcExtensionCable @@ -41492,8 +35009,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2780 type: ApcExtensionCable @@ -41503,8 +35018,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2781 type: ApcExtensionCable @@ -41514,8 +35027,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2782 type: ApcExtensionCable @@ -41525,8 +35036,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2783 type: ApcExtensionCable @@ -41536,8 +35045,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2784 type: ApcExtensionCable @@ -41547,8 +35054,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2785 type: ApcExtensionCable @@ -41558,8 +35063,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2786 type: ApcExtensionCable @@ -41569,8 +35072,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2787 type: ApcExtensionCable @@ -41580,8 +35081,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2788 type: ApcExtensionCable @@ -41591,8 +35090,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2789 type: ApcExtensionCable @@ -41602,8 +35099,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2790 type: ApcExtensionCable @@ -41613,8 +35108,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2791 type: ApcExtensionCable @@ -41624,8 +35117,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2792 type: ApcExtensionCable @@ -41635,8 +35126,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2793 type: ApcExtensionCable @@ -41646,8 +35135,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2794 type: ApcExtensionCable @@ -41657,8 +35144,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2795 type: ApcExtensionCable @@ -41668,8 +35153,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2796 type: ApcExtensionCable @@ -41679,8 +35162,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2797 type: ApcExtensionCable @@ -41690,8 +35171,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2798 type: ApcExtensionCable @@ -41701,8 +35180,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2799 type: ApcExtensionCable @@ -41712,8 +35189,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2800 type: ApcExtensionCable @@ -41723,8 +35198,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2801 type: SalternApc @@ -41743,8 +35216,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2803 type: ApcExtensionCable @@ -41754,8 +35225,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2804 type: ApcExtensionCable @@ -41765,8 +35234,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2805 type: ApcExtensionCable @@ -41776,8 +35243,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2806 type: ApcExtensionCable @@ -41787,8 +35252,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2807 type: ApcExtensionCable @@ -41798,8 +35261,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2808 type: ApcExtensionCable @@ -41809,8 +35270,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2809 type: ApcExtensionCable @@ -41820,8 +35279,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2810 type: ApcExtensionCable @@ -41831,8 +35288,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2811 type: ApcExtensionCable @@ -41842,8 +35297,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2812 type: ApcExtensionCable @@ -41853,8 +35306,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2813 type: ApcExtensionCable @@ -41864,8 +35315,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2814 type: ApcExtensionCable @@ -41875,8 +35324,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2815 type: ApcExtensionCable @@ -41886,8 +35333,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2816 type: ApcExtensionCable @@ -41897,8 +35342,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2817 type: ApcExtensionCable @@ -41908,8 +35351,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2818 type: ApcExtensionCable @@ -41919,8 +35360,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2819 type: ApcExtensionCable @@ -41930,8 +35369,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2820 type: ApcExtensionCable @@ -41941,8 +35378,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2821 type: ApcExtensionCable @@ -41952,8 +35387,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2822 type: ApcExtensionCable @@ -41963,8 +35396,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2823 type: ApcExtensionCable @@ -41974,8 +35405,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2824 type: ApcExtensionCable @@ -41985,8 +35414,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2825 type: ApcExtensionCable @@ -41996,8 +35423,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2826 type: ApcExtensionCable @@ -42007,8 +35432,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2827 type: ApcExtensionCable @@ -42018,8 +35441,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2828 type: ApcExtensionCable @@ -42029,8 +35450,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2829 type: ApcExtensionCable @@ -42040,8 +35459,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2830 type: ApcExtensionCable @@ -42051,8 +35468,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2831 type: ApcExtensionCable @@ -42062,8 +35477,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2832 type: ApcExtensionCable @@ -42073,8 +35486,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2833 type: ApcExtensionCable @@ -42084,8 +35495,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2834 type: ApcExtensionCable @@ -42095,8 +35504,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2835 type: ApcExtensionCable @@ -42106,8 +35513,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2836 type: ApcExtensionCable @@ -42117,8 +35522,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2837 type: ApcExtensionCable @@ -42128,8 +35531,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2838 type: ApcExtensionCable @@ -42139,8 +35540,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2839 type: ApcExtensionCable @@ -42150,8 +35549,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2840 type: ApcExtensionCable @@ -42161,8 +35558,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2841 type: ApcExtensionCable @@ -42172,8 +35567,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2842 type: ApcExtensionCable @@ -42183,8 +35576,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2843 type: ApcExtensionCable @@ -42194,8 +35585,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2844 type: ApcExtensionCable @@ -42205,8 +35594,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2845 type: ApcExtensionCable @@ -42216,8 +35603,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2846 type: ApcExtensionCable @@ -42227,8 +35612,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2847 type: ApcExtensionCable @@ -42238,8 +35621,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2848 type: ApcExtensionCable @@ -42249,8 +35630,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2849 type: ApcExtensionCable @@ -42260,8 +35639,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2850 type: ApcExtensionCable @@ -42271,8 +35648,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2851 type: ApcExtensionCable @@ -42282,8 +35657,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2852 type: ApcExtensionCable @@ -42293,8 +35666,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2853 type: ApcExtensionCable @@ -42304,8 +35675,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2854 type: ApcExtensionCable @@ -42315,8 +35684,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2855 type: ApcExtensionCable @@ -42326,8 +35693,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2856 type: ApcExtensionCable @@ -42337,8 +35702,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2857 type: ApcExtensionCable @@ -42348,8 +35711,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2858 type: ApcExtensionCable @@ -42359,8 +35720,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2859 type: ApcExtensionCable @@ -42370,8 +35729,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2860 type: ApcExtensionCable @@ -42381,8 +35738,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2861 type: ApcExtensionCable @@ -42392,8 +35747,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2862 type: ApcExtensionCable @@ -42403,8 +35756,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2863 type: ApcExtensionCable @@ -42414,8 +35765,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2864 type: ApcExtensionCable @@ -42425,8 +35774,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2865 type: ApcExtensionCable @@ -42436,8 +35783,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2866 type: ApcExtensionCable @@ -42447,8 +35792,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2867 type: ApcExtensionCable @@ -42458,8 +35801,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2868 type: ApcExtensionCable @@ -42469,8 +35810,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2869 type: ApcExtensionCable @@ -42480,8 +35819,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2870 type: ApcExtensionCable @@ -42491,8 +35828,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2871 type: ApcExtensionCable @@ -42502,8 +35837,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2872 type: ApcExtensionCable @@ -42513,8 +35846,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2873 type: ApcExtensionCable @@ -42524,8 +35855,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2874 type: ApcExtensionCable @@ -42535,8 +35864,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2875 type: ApcExtensionCable @@ -42546,8 +35873,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2876 type: ApcExtensionCable @@ -42557,8 +35882,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2877 type: ApcExtensionCable @@ -42568,8 +35891,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2878 type: ApcExtensionCable @@ -42579,8 +35900,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2879 type: ApcExtensionCable @@ -42590,8 +35909,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2880 type: ApcExtensionCable @@ -42601,8 +35918,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2881 type: ApcExtensionCable @@ -42612,8 +35927,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2882 type: ApcExtensionCable @@ -42623,8 +35936,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2883 type: ApcExtensionCable @@ -42634,8 +35945,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2884 type: ApcExtensionCable @@ -42645,8 +35954,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2885 type: ApcExtensionCable @@ -42656,8 +35963,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2886 type: ApcExtensionCable @@ -42667,8 +35972,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2887 type: ApcExtensionCable @@ -42678,8 +35981,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2888 type: ApcExtensionCable @@ -42689,8 +35990,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2889 type: ApcExtensionCable @@ -42700,8 +35999,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2890 type: ApcExtensionCable @@ -42711,8 +36008,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2891 type: ApcExtensionCable @@ -42722,8 +36017,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2892 type: ApcExtensionCable @@ -42733,8 +36026,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2893 type: ApcExtensionCable @@ -42744,8 +36035,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2894 type: ApcExtensionCable @@ -42755,8 +36044,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2895 type: ApcExtensionCable @@ -42766,8 +36053,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2896 type: ApcExtensionCable @@ -42777,8 +36062,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2897 type: ApcExtensionCable @@ -42788,8 +36071,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2898 type: ApcExtensionCable @@ -42799,8 +36080,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2899 type: ApcExtensionCable @@ -42810,8 +36089,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2900 type: ApcExtensionCable @@ -42821,8 +36098,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2901 type: ApcExtensionCable @@ -42832,8 +36107,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2902 type: ApcExtensionCable @@ -42843,8 +36116,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2903 type: ApcExtensionCable @@ -42854,8 +36125,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2904 type: ApcExtensionCable @@ -42865,8 +36134,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2905 type: ApcExtensionCable @@ -42876,8 +36143,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2906 type: ApcExtensionCable @@ -42887,8 +36152,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2907 type: ApcExtensionCable @@ -42898,8 +36161,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2908 type: ApcExtensionCable @@ -42909,8 +36170,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2909 type: ApcExtensionCable @@ -42920,8 +36179,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2910 type: ApcExtensionCable @@ -42931,8 +36188,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2911 type: ApcExtensionCable @@ -42942,8 +36197,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2912 type: ApcExtensionCable @@ -42953,8 +36206,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2913 type: ApcExtensionCable @@ -42964,8 +36215,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2914 type: ApcExtensionCable @@ -42975,8 +36224,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2915 type: ApcExtensionCable @@ -42986,8 +36233,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2916 type: ApcExtensionCable @@ -42997,8 +36242,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2917 type: ApcExtensionCable @@ -43008,8 +36251,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2918 type: ApcExtensionCable @@ -43019,8 +36260,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2919 type: ApcExtensionCable @@ -43030,8 +36269,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2920 type: ApcExtensionCable @@ -43041,8 +36278,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2921 type: ApcExtensionCable @@ -43052,8 +36287,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2922 type: ApcExtensionCable @@ -43063,8 +36296,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2923 type: ApcExtensionCable @@ -43074,8 +36305,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2924 type: ApcExtensionCable @@ -43085,8 +36314,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2925 type: ApcExtensionCable @@ -43096,8 +36323,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2926 type: ApcExtensionCable @@ -43107,8 +36332,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2927 type: ApcExtensionCable @@ -43118,8 +36341,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2928 type: ApcExtensionCable @@ -43129,8 +36350,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2929 type: ApcExtensionCable @@ -43140,8 +36359,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2930 type: ApcExtensionCable @@ -43151,8 +36368,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2931 type: ApcExtensionCable @@ -43162,8 +36377,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2932 type: ApcExtensionCable @@ -43173,8 +36386,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2933 type: ApcExtensionCable @@ -43184,8 +36395,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2934 type: ApcExtensionCable @@ -43195,8 +36404,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2935 type: ApcExtensionCable @@ -43206,8 +36413,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2936 type: ApcExtensionCable @@ -43217,8 +36422,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2937 type: ApcExtensionCable @@ -43228,8 +36431,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2938 type: ApcExtensionCable @@ -43239,8 +36440,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2939 type: ApcExtensionCable @@ -43250,8 +36449,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2940 type: ApcExtensionCable @@ -43261,8 +36458,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2941 type: ApcExtensionCable @@ -43272,8 +36467,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2942 type: ApcExtensionCable @@ -43283,8 +36476,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2943 type: ApcExtensionCable @@ -43294,8 +36485,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2944 type: ApcExtensionCable @@ -43305,8 +36494,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2945 type: ApcExtensionCable @@ -43316,8 +36503,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2946 type: ApcExtensionCable @@ -43327,8 +36512,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2947 type: ApcExtensionCable @@ -43338,8 +36521,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2948 type: ApcExtensionCable @@ -43349,8 +36530,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2949 type: ApcExtensionCable @@ -43360,8 +36539,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2950 type: ApcExtensionCable @@ -43371,8 +36548,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2951 type: ApcExtensionCable @@ -43382,8 +36557,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2952 type: ApcExtensionCable @@ -43393,8 +36566,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2953 type: ApcExtensionCable @@ -43404,8 +36575,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2954 type: ApcExtensionCable @@ -43415,8 +36584,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2955 type: ApcExtensionCable @@ -43426,8 +36593,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2956 type: ApcExtensionCable @@ -43437,8 +36602,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2957 type: ApcExtensionCable @@ -43448,8 +36611,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2958 type: ApcExtensionCable @@ -43459,8 +36620,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2959 type: ApcExtensionCable @@ -43470,8 +36629,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2960 type: ApcExtensionCable @@ -43481,8 +36638,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2961 type: ApcExtensionCable @@ -43492,8 +36647,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2962 type: ApcExtensionCable @@ -43503,8 +36656,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2963 type: ApcExtensionCable @@ -43514,8 +36665,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2964 type: ApcExtensionCable @@ -43525,8 +36674,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2965 type: ApcExtensionCable @@ -43536,8 +36683,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2966 type: ApcExtensionCable @@ -43547,8 +36692,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2967 type: ApcExtensionCable @@ -43558,8 +36701,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2968 type: ApcExtensionCable @@ -43569,8 +36710,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2969 type: ApcExtensionCable @@ -43580,8 +36719,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2970 type: ApcExtensionCable @@ -43591,8 +36728,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2971 type: ApcExtensionCable @@ -43602,8 +36737,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2972 type: ApcExtensionCable @@ -43613,8 +36746,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2973 type: ApcExtensionCable @@ -43624,8 +36755,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2974 type: ApcExtensionCable @@ -43635,8 +36764,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2975 type: ApcExtensionCable @@ -43646,8 +36773,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2976 type: ApcExtensionCable @@ -43657,8 +36782,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2977 type: ApcExtensionCable @@ -43668,8 +36791,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2978 type: ApcExtensionCable @@ -43679,8 +36800,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2979 type: ApcExtensionCable @@ -43690,8 +36809,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2980 type: ApcExtensionCable @@ -43701,8 +36818,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2981 type: ApcExtensionCable @@ -43712,8 +36827,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2982 type: ApcExtensionCable @@ -43723,8 +36836,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2983 type: ApcExtensionCable @@ -43734,8 +36845,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2984 type: ApcExtensionCable @@ -43745,8 +36854,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2985 type: ApcExtensionCable @@ -43756,8 +36863,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2986 type: ApcExtensionCable @@ -43767,8 +36872,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2987 type: ApcExtensionCable @@ -43778,8 +36881,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2988 type: ApcExtensionCable @@ -43789,8 +36890,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2989 type: ApcExtensionCable @@ -43800,8 +36899,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2990 type: ApcExtensionCable @@ -43811,8 +36908,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2991 type: ApcExtensionCable @@ -43822,8 +36917,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2992 type: ApcExtensionCable @@ -43833,8 +36926,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2993 type: ApcExtensionCable @@ -43844,8 +36935,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2994 type: ApcExtensionCable @@ -43855,8 +36944,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2995 type: ApcExtensionCable @@ -43866,8 +36953,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2996 type: ApcExtensionCable @@ -43877,8 +36962,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2997 type: ApcExtensionCable @@ -43888,8 +36971,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2998 type: ApcExtensionCable @@ -43899,8 +36980,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 2999 type: ApcExtensionCable @@ -43910,8 +36989,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3000 type: ApcExtensionCable @@ -43921,8 +36998,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3001 type: ApcExtensionCable @@ -43932,8 +37007,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3002 type: ApcExtensionCable @@ -43943,8 +37016,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3003 type: ApcExtensionCable @@ -43954,8 +37025,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3004 type: ApcExtensionCable @@ -43965,8 +37034,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3005 type: ApcExtensionCable @@ -43976,8 +37043,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3006 type: ApcExtensionCable @@ -43987,8 +37052,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3007 type: ApcExtensionCable @@ -43998,8 +37061,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3008 type: ApcExtensionCable @@ -44009,8 +37070,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3009 type: ApcExtensionCable @@ -44020,8 +37079,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3010 type: ApcExtensionCable @@ -44031,8 +37088,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3011 type: ApcExtensionCable @@ -44042,8 +37097,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3012 type: ApcExtensionCable @@ -44053,8 +37106,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3013 type: ApcExtensionCable @@ -44064,8 +37115,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3014 type: ApcExtensionCable @@ -44075,8 +37124,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3015 type: ApcExtensionCable @@ -44086,8 +37133,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3016 type: ApcExtensionCable @@ -44097,8 +37142,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3017 type: ApcExtensionCable @@ -44108,8 +37151,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3018 type: ApcExtensionCable @@ -44119,8 +37160,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3019 type: ApcExtensionCable @@ -44130,8 +37169,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3020 type: ApcExtensionCable @@ -44141,8 +37178,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3021 type: ApcExtensionCable @@ -44152,8 +37187,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3022 type: ApcExtensionCable @@ -44163,8 +37196,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3023 type: ApcExtensionCable @@ -44174,8 +37205,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3024 type: ApcExtensionCable @@ -44185,8 +37214,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3025 type: ApcExtensionCable @@ -44196,8 +37223,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3026 type: ApcExtensionCable @@ -44207,8 +37232,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3027 type: ApcExtensionCable @@ -44218,8 +37241,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3028 type: ApcExtensionCable @@ -44229,8 +37250,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3029 type: ApcExtensionCable @@ -44240,8 +37259,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3030 type: ApcExtensionCable @@ -44251,8 +37268,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3031 type: ApcExtensionCable @@ -44262,8 +37277,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3032 type: ApcExtensionCable @@ -44273,8 +37286,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3033 type: ApcExtensionCable @@ -44284,8 +37295,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3034 type: ApcExtensionCable @@ -44295,8 +37304,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3035 type: ApcExtensionCable @@ -44306,8 +37313,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3036 type: ApcExtensionCable @@ -44317,8 +37322,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3037 type: ApcExtensionCable @@ -44328,8 +37331,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3038 type: ApcExtensionCable @@ -44339,8 +37340,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3039 type: ApcExtensionCable @@ -44350,8 +37349,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3040 type: ApcExtensionCable @@ -44361,8 +37358,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3041 type: ApcExtensionCable @@ -44372,8 +37367,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3042 type: ApcExtensionCable @@ -44383,8 +37376,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3043 type: ApcExtensionCable @@ -44394,8 +37385,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3044 type: ApcExtensionCable @@ -44405,8 +37394,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3045 type: ApcExtensionCable @@ -44416,8 +37403,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3046 type: ApcExtensionCable @@ -44427,8 +37412,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3047 type: ApcExtensionCable @@ -44438,8 +37421,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3048 type: ApcExtensionCable @@ -44449,8 +37430,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3049 type: ApcExtensionCable @@ -44460,8 +37439,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3050 type: ApcExtensionCable @@ -44471,8 +37448,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3051 type: ApcExtensionCable @@ -44482,8 +37457,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3052 type: ApcExtensionCable @@ -44493,8 +37466,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3053 type: ApcExtensionCable @@ -44504,8 +37475,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3054 type: ApcExtensionCable @@ -44515,8 +37484,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3055 type: ApcExtensionCable @@ -44526,8 +37493,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3056 type: ApcExtensionCable @@ -44537,8 +37502,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3057 type: ApcExtensionCable @@ -44548,8 +37511,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3058 type: ApcExtensionCable @@ -44559,8 +37520,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3059 type: ApcExtensionCable @@ -44570,8 +37529,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3060 type: ApcExtensionCable @@ -44581,8 +37538,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3061 type: ApcExtensionCable @@ -44592,8 +37547,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3062 type: ApcExtensionCable @@ -44603,8 +37556,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3063 type: ApcExtensionCable @@ -44614,8 +37565,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3064 type: ApcExtensionCable @@ -44625,8 +37574,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3065 type: ApcExtensionCable @@ -44636,8 +37583,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3066 type: ApcExtensionCable @@ -44647,8 +37592,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3067 type: ApcExtensionCable @@ -44658,8 +37601,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3068 type: ApcExtensionCable @@ -44669,8 +37610,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3069 type: ApcExtensionCable @@ -44680,8 +37619,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3070 type: ApcExtensionCable @@ -44691,8 +37628,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3071 type: ApcExtensionCable @@ -44702,8 +37637,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3072 type: ApcExtensionCable @@ -44713,8 +37646,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3073 type: ApcExtensionCable @@ -44724,8 +37655,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3074 type: ApcExtensionCable @@ -44735,8 +37664,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3075 type: ApcExtensionCable @@ -44746,8 +37673,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3076 type: ApcExtensionCable @@ -44757,8 +37682,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3077 type: ApcExtensionCable @@ -44768,8 +37691,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3078 type: ApcExtensionCable @@ -44779,8 +37700,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3079 type: ApcExtensionCable @@ -44790,8 +37709,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3080 type: ApcExtensionCable @@ -44801,8 +37718,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3081 type: ApcExtensionCable @@ -44812,8 +37727,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3082 type: ApcExtensionCable @@ -44823,8 +37736,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3083 type: ApcExtensionCable @@ -44834,8 +37745,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3084 type: ApcExtensionCable @@ -44845,8 +37754,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3085 type: ApcExtensionCable @@ -44856,8 +37763,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3086 type: ApcExtensionCable @@ -44867,8 +37772,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3087 type: ApcExtensionCable @@ -44878,8 +37781,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3088 type: ApcExtensionCable @@ -44889,8 +37790,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3089 type: ApcExtensionCable @@ -44900,8 +37799,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3090 type: ApcExtensionCable @@ -44911,8 +37808,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3091 type: ApcExtensionCable @@ -44922,8 +37817,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3092 type: ApcExtensionCable @@ -44933,8 +37826,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3093 type: ApcExtensionCable @@ -44944,8 +37835,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3094 type: ApcExtensionCable @@ -44955,8 +37844,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3095 type: ApcExtensionCable @@ -44966,8 +37853,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3096 type: ApcExtensionCable @@ -44977,8 +37862,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3097 type: ApcExtensionCable @@ -44988,8 +37871,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3098 type: ApcExtensionCable @@ -44999,8 +37880,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3099 type: ApcExtensionCable @@ -45010,8 +37889,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3100 type: ApcExtensionCable @@ -45021,8 +37898,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3101 type: ApcExtensionCable @@ -45032,8 +37907,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3102 type: ApcExtensionCable @@ -45043,8 +37916,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3103 type: ApcExtensionCable @@ -45054,8 +37925,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3104 type: ApcExtensionCable @@ -45065,8 +37934,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3105 type: ApcExtensionCable @@ -45076,8 +37943,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3106 type: ApcExtensionCable @@ -45087,8 +37952,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3107 type: ApcExtensionCable @@ -45098,8 +37961,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3108 type: ApcExtensionCable @@ -45109,8 +37970,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3109 type: ApcExtensionCable @@ -45120,8 +37979,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3110 type: ApcExtensionCable @@ -45131,8 +37988,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3111 type: ApcExtensionCable @@ -45142,8 +37997,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3112 type: ApcExtensionCable @@ -45153,8 +38006,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3113 type: ApcExtensionCable @@ -45164,8 +38015,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3114 type: ApcExtensionCable @@ -45175,8 +38024,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3115 type: ApcExtensionCable @@ -45186,8 +38033,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3116 type: ApcExtensionCable @@ -45197,8 +38042,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3117 type: ApcExtensionCable @@ -45208,8 +38051,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3118 type: ApcExtensionCable @@ -45219,8 +38060,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3119 type: ApcExtensionCable @@ -45230,8 +38069,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3120 type: ApcExtensionCable @@ -45241,8 +38078,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3121 type: ApcExtensionCable @@ -45252,8 +38087,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3122 type: ApcExtensionCable @@ -45263,8 +38096,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3123 type: ApcExtensionCable @@ -45274,8 +38105,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3124 type: ApcExtensionCable @@ -45285,8 +38114,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3125 type: ApcExtensionCable @@ -45296,8 +38123,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3126 type: ApcExtensionCable @@ -45307,8 +38132,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3127 type: ApcExtensionCable @@ -45318,8 +38141,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3128 type: ApcExtensionCable @@ -45329,8 +38150,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3129 type: ApcExtensionCable @@ -45340,8 +38159,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3130 type: ApcExtensionCable @@ -45351,8 +38168,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3131 type: ApcExtensionCable @@ -45362,8 +38177,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3132 type: ApcExtensionCable @@ -45373,8 +38186,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3133 type: ApcExtensionCable @@ -45384,8 +38195,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3134 type: ApcExtensionCable @@ -45395,8 +38204,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3135 type: ApcExtensionCable @@ -45406,8 +38213,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3136 type: ApcExtensionCable @@ -45417,8 +38222,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3137 type: ApcExtensionCable @@ -45428,8 +38231,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3138 type: ApcExtensionCable @@ -45439,8 +38240,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3139 type: ApcExtensionCable @@ -45450,8 +38249,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3140 type: ApcExtensionCable @@ -45461,8 +38258,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3141 type: ApcExtensionCable @@ -45472,8 +38267,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3142 type: ApcExtensionCable @@ -45483,8 +38276,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3143 type: ApcExtensionCable @@ -45494,8 +38285,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3144 type: ApcExtensionCable @@ -45505,8 +38294,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3145 type: ApcExtensionCable @@ -45516,8 +38303,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3146 type: ApcExtensionCable @@ -45527,8 +38312,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3147 type: ApcExtensionCable @@ -45538,8 +38321,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3148 type: ApcExtensionCable @@ -45549,8 +38330,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3149 type: ApcExtensionCable @@ -45560,8 +38339,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3150 type: ApcExtensionCable @@ -45571,8 +38348,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3151 type: ApcExtensionCable @@ -45582,8 +38357,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3152 type: ApcExtensionCable @@ -45593,8 +38366,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3153 type: ApcExtensionCable @@ -45604,8 +38375,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3154 type: ApcExtensionCable @@ -45615,8 +38384,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3155 type: ApcExtensionCable @@ -45626,8 +38393,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3156 type: ApcExtensionCable @@ -45637,8 +38402,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3157 type: ApcExtensionCable @@ -45648,8 +38411,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3158 type: ApcExtensionCable @@ -45659,8 +38420,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3159 type: ApcExtensionCable @@ -45670,8 +38429,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3160 type: ApcExtensionCable @@ -45681,8 +38438,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3161 type: ApcExtensionCable @@ -45692,8 +38447,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3162 type: ApcExtensionCable @@ -45703,8 +38456,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3163 type: ApcExtensionCable @@ -45714,8 +38465,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3164 type: ApcExtensionCable @@ -45725,8 +38474,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3165 type: ApcExtensionCable @@ -45736,8 +38483,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3166 type: ApcExtensionCable @@ -45747,8 +38492,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3167 type: ApcExtensionCable @@ -45758,8 +38501,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3168 type: ApcExtensionCable @@ -45769,8 +38510,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3169 type: ApcExtensionCable @@ -45780,8 +38519,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3170 type: ApcExtensionCable @@ -45791,8 +38528,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3171 type: ApcExtensionCable @@ -45802,8 +38537,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3172 type: ApcExtensionCable @@ -45813,8 +38546,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3173 type: ApcExtensionCable @@ -45824,8 +38555,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3174 type: ApcExtensionCable @@ -45835,8 +38564,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3175 type: ApcExtensionCable @@ -45846,8 +38573,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3176 type: ApcExtensionCable @@ -45857,8 +38582,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3177 type: ApcExtensionCable @@ -45868,8 +38591,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3178 type: ApcExtensionCable @@ -45879,8 +38600,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3179 type: ApcExtensionCable @@ -45890,8 +38609,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3180 type: ApcExtensionCable @@ -45901,8 +38618,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3181 type: ApcExtensionCable @@ -45912,8 +38627,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3182 type: ApcExtensionCable @@ -45923,8 +38636,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3183 type: ApcExtensionCable @@ -45934,8 +38645,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3184 type: ApcExtensionCable @@ -45945,8 +38654,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3185 type: ApcExtensionCable @@ -45956,8 +38663,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3186 type: ApcExtensionCable @@ -45967,8 +38672,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3187 type: ApcExtensionCable @@ -45978,8 +38681,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3188 type: ApcExtensionCable @@ -45989,8 +38690,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3189 type: ApcExtensionCable @@ -46000,8 +38699,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3190 type: ApcExtensionCable @@ -46011,8 +38708,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3191 type: ApcExtensionCable @@ -46022,8 +38717,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3192 type: ApcExtensionCable @@ -46033,8 +38726,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3193 type: ApcExtensionCable @@ -46044,8 +38735,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3194 type: ApcExtensionCable @@ -46055,8 +38744,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3195 type: ApcExtensionCable @@ -46066,8 +38753,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3196 type: ApcExtensionCable @@ -46077,8 +38762,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3197 type: ApcExtensionCable @@ -46088,8 +38771,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3198 type: ApcExtensionCable @@ -46099,8 +38780,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3199 type: ApcExtensionCable @@ -46110,8 +38789,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3200 type: ApcExtensionCable @@ -46121,8 +38798,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3201 type: ApcExtensionCable @@ -46132,8 +38807,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3202 type: ApcExtensionCable @@ -46143,8 +38816,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3203 type: ApcExtensionCable @@ -46154,8 +38825,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3204 type: ApcExtensionCable @@ -46165,8 +38834,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3205 type: ApcExtensionCable @@ -46176,8 +38843,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3206 type: ApcExtensionCable @@ -46187,8 +38852,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3207 type: ApcExtensionCable @@ -46198,8 +38861,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3208 type: ApcExtensionCable @@ -46209,8 +38870,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3209 type: ApcExtensionCable @@ -46220,8 +38879,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3210 type: ApcExtensionCable @@ -46231,8 +38888,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3211 type: ApcExtensionCable @@ -46242,8 +38897,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3212 type: ApcExtensionCable @@ -46253,8 +38906,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3213 type: ApcExtensionCable @@ -46264,8 +38915,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3214 type: ApcExtensionCable @@ -46275,8 +38924,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3215 type: ApcExtensionCable @@ -46286,8 +38933,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3216 type: ApcExtensionCable @@ -46297,8 +38942,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3217 type: ApcExtensionCable @@ -46308,8 +38951,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3218 type: ApcExtensionCable @@ -46319,8 +38960,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3219 type: ApcExtensionCable @@ -46330,8 +38969,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3220 type: ApcExtensionCable @@ -46341,8 +38978,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3221 type: ApcExtensionCable @@ -46352,8 +38987,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3222 type: ApcExtensionCable @@ -46363,8 +38996,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3223 type: ApcExtensionCable @@ -46374,8 +39005,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3224 type: ApcExtensionCable @@ -46385,8 +39014,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3225 type: ApcExtensionCable @@ -46396,8 +39023,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3226 type: ApcExtensionCable @@ -46407,8 +39032,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3227 type: ApcExtensionCable @@ -46418,8 +39041,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3228 type: ApcExtensionCable @@ -46429,8 +39050,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3229 type: ApcExtensionCable @@ -46440,8 +39059,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3230 type: ApcExtensionCable @@ -46451,8 +39068,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3231 type: ApcExtensionCable @@ -46462,8 +39077,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3232 type: ApcExtensionCable @@ -46473,8 +39086,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3233 type: ApcExtensionCable @@ -46484,8 +39095,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3234 type: ApcExtensionCable @@ -46495,8 +39104,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3235 type: ApcExtensionCable @@ -46506,8 +39113,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3236 type: ApcExtensionCable @@ -46517,8 +39122,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3237 type: ApcExtensionCable @@ -46528,8 +39131,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3238 type: ApcExtensionCable @@ -46539,8 +39140,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3239 type: ApcExtensionCable @@ -46550,8 +39149,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3240 type: ApcExtensionCable @@ -46561,8 +39158,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3241 type: ApcExtensionCable @@ -46572,8 +39167,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3242 type: ApcExtensionCable @@ -46583,8 +39176,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3243 type: ApcExtensionCable @@ -46594,8 +39185,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3244 type: ApcExtensionCable @@ -46605,8 +39194,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3245 type: ApcExtensionCable @@ -46616,8 +39203,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3246 type: ApcExtensionCable @@ -46627,8 +39212,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3247 type: ApcExtensionCable @@ -46638,8 +39221,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3248 type: ApcExtensionCable @@ -46649,8 +39230,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3249 type: ApcExtensionCable @@ -46660,8 +39239,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3250 type: ApcExtensionCable @@ -46671,8 +39248,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3251 type: ApcExtensionCable @@ -46682,8 +39257,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3252 type: ApcExtensionCable @@ -46693,8 +39266,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3253 type: ApcExtensionCable @@ -46704,8 +39275,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3254 type: ApcExtensionCable @@ -46715,8 +39284,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3255 type: ApcExtensionCable @@ -46726,8 +39293,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3256 type: ApcExtensionCable @@ -46737,8 +39302,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3257 type: ApcExtensionCable @@ -46748,8 +39311,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3258 type: ApcExtensionCable @@ -46759,8 +39320,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3259 type: ApcExtensionCable @@ -46770,8 +39329,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3260 type: ApcExtensionCable @@ -46781,8 +39338,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3261 type: ApcExtensionCable @@ -46792,8 +39347,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3262 type: ApcExtensionCable @@ -46803,8 +39356,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3263 type: ApcExtensionCable @@ -46814,8 +39365,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3264 type: ApcExtensionCable @@ -46825,8 +39374,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3265 type: ApcExtensionCable @@ -46836,8 +39383,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3266 type: ApcExtensionCable @@ -46847,8 +39392,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3267 type: ApcExtensionCable @@ -46858,8 +39401,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3268 type: ApcExtensionCable @@ -46869,8 +39410,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3269 type: ApcExtensionCable @@ -46880,8 +39419,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3270 type: ApcExtensionCable @@ -46891,8 +39428,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3271 type: ApcExtensionCable @@ -46902,8 +39437,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3272 type: ApcExtensionCable @@ -46913,8 +39446,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3273 type: ApcExtensionCable @@ -46924,8 +39455,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3274 type: ApcExtensionCable @@ -46935,8 +39464,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3275 type: ApcExtensionCable @@ -46946,8 +39473,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3276 type: ApcExtensionCable @@ -46957,8 +39482,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3277 type: ApcExtensionCable @@ -46968,8 +39491,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3278 type: ApcExtensionCable @@ -46979,8 +39500,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3279 type: ApcExtensionCable @@ -46990,8 +39509,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3280 type: ApcExtensionCable @@ -47001,8 +39518,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3281 type: ApcExtensionCable @@ -47012,8 +39527,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3282 type: ApcExtensionCable @@ -47023,8 +39536,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3283 type: ApcExtensionCable @@ -47034,8 +39545,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3284 type: ApcExtensionCable @@ -47045,8 +39554,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3285 type: ApcExtensionCable @@ -47056,8 +39563,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3286 type: ApcExtensionCable @@ -47067,8 +39572,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3287 type: ApcExtensionCable @@ -47078,8 +39581,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3288 type: ApcExtensionCable @@ -47089,8 +39590,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3289 type: ApcExtensionCable @@ -47100,8 +39599,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3290 type: ApcExtensionCable @@ -47111,8 +39608,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3291 type: ApcExtensionCable @@ -47122,8 +39617,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3292 type: ApcExtensionCable @@ -47133,8 +39626,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3293 type: ApcExtensionCable @@ -47144,8 +39635,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3294 type: ApcExtensionCable @@ -47155,8 +39644,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3295 type: ApcExtensionCable @@ -47166,8 +39653,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3296 type: ApcExtensionCable @@ -47177,8 +39662,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3297 type: ApcExtensionCable @@ -47188,8 +39671,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3298 type: ApcExtensionCable @@ -47199,8 +39680,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3299 type: ApcExtensionCable @@ -47210,8 +39689,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3300 type: ApcExtensionCable @@ -47221,8 +39698,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3301 type: ApcExtensionCable @@ -47232,8 +39707,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3302 type: ApcExtensionCable @@ -47243,8 +39716,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3303 type: ApcExtensionCable @@ -47254,8 +39725,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3304 type: ApcExtensionCable @@ -47265,8 +39734,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3305 type: ApcExtensionCable @@ -47276,8 +39743,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3306 type: ApcExtensionCable @@ -47287,8 +39752,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3307 type: SalternSmes @@ -47312,8 +39775,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3310 type: HVWire @@ -47323,8 +39784,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3311 type: HVWire @@ -47334,8 +39793,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3312 type: HVWire @@ -47345,8 +39802,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3313 type: HVWire @@ -47356,8 +39811,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3314 type: HVWire @@ -47367,8 +39820,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3315 type: HVWire @@ -47378,8 +39829,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3316 type: HVWire @@ -47389,8 +39838,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3317 type: HVWire @@ -47400,8 +39847,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3318 type: HVWire @@ -47411,8 +39856,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3319 type: HVWire @@ -47422,8 +39865,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3320 type: HVWire @@ -47433,8 +39874,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3321 type: HVWire @@ -47444,8 +39883,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3322 type: HVWire @@ -47455,8 +39892,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3323 type: HVWire @@ -47466,8 +39901,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3324 type: HVWire @@ -47477,8 +39910,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3325 type: HVWire @@ -47488,8 +39919,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3326 type: HVWire @@ -47499,8 +39928,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3327 type: HVWire @@ -47510,8 +39937,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3328 type: HVWire @@ -47521,8 +39946,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3329 type: HVWire @@ -47532,8 +39955,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3330 type: HVWire @@ -47543,8 +39964,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3331 type: HVWire @@ -47554,8 +39973,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3332 type: HVWire @@ -47565,8 +39982,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3333 type: HVWire @@ -47576,8 +39991,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3334 type: HVWire @@ -47587,8 +40000,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3335 type: HVWire @@ -47598,8 +40009,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3336 type: HVWire @@ -47609,8 +40018,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3337 type: HVWire @@ -47620,8 +40027,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3338 type: HVWire @@ -47631,8 +40036,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3339 type: HVWire @@ -47642,8 +40045,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3340 type: HVWire @@ -47653,8 +40054,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3341 type: HVWire @@ -47664,8 +40063,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3342 type: HVWire @@ -47675,8 +40072,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3343 type: HVWire @@ -47686,8 +40081,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3344 type: HVWire @@ -47697,8 +40090,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3345 type: HVWire @@ -47708,8 +40099,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3346 type: HVWire @@ -47719,8 +40108,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3347 type: HVWire @@ -47730,8 +40117,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3348 type: HVWire @@ -47741,8 +40126,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3349 type: HVWire @@ -47752,8 +40135,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3350 type: HVWire @@ -47763,8 +40144,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3351 type: HVWire @@ -47774,8 +40153,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3352 type: HVWire @@ -47785,8 +40162,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3353 type: HVWire @@ -47796,8 +40171,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3354 type: HVWire @@ -47807,8 +40180,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3355 type: HVWire @@ -47818,8 +40189,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3356 type: HVWire @@ -47829,8 +40198,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3357 type: HVWire @@ -47840,8 +40207,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3358 type: HVWire @@ -47851,8 +40216,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3359 type: HVWire @@ -47862,8 +40225,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3360 type: HVWire @@ -47873,8 +40234,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3361 type: HVWire @@ -47884,8 +40243,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3362 type: HVWire @@ -47895,8 +40252,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3363 type: HVWire @@ -47906,8 +40261,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3364 type: HVWire @@ -47917,8 +40270,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3365 type: HVWire @@ -47928,8 +40279,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3366 type: HVWire @@ -47939,8 +40288,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3367 type: HVWire @@ -47950,8 +40297,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3368 type: HVWire @@ -47961,8 +40306,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3369 type: HVWire @@ -47972,8 +40315,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3370 type: HVWire @@ -47983,8 +40324,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3371 type: HVWire @@ -47994,8 +40333,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3372 type: HVWire @@ -48005,8 +40342,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3373 type: HVWire @@ -48016,8 +40351,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3374 type: HVWire @@ -48027,8 +40360,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3375 type: HVWire @@ -48038,8 +40369,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3376 type: HVWire @@ -48049,8 +40378,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3377 type: HVWire @@ -48060,8 +40387,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3378 type: HVWire @@ -48071,8 +40396,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3379 type: HVWire @@ -48082,8 +40405,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3380 type: HVWire @@ -48093,8 +40414,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3381 type: HVWire @@ -48104,8 +40423,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3382 type: HVWire @@ -48115,8 +40432,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3383 type: HVWire @@ -48126,8 +40441,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3384 type: HVWire @@ -48137,8 +40450,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3385 type: HVWire @@ -48148,8 +40459,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3386 type: HVWire @@ -48159,8 +40468,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3387 type: HVWire @@ -48170,8 +40477,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3388 type: HVWire @@ -48181,8 +40486,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3389 type: HVWire @@ -48192,8 +40495,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3390 type: HVWire @@ -48203,8 +40504,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3391 type: HVWire @@ -48214,8 +40513,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3392 type: HVWire @@ -48225,8 +40522,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3393 type: HVWire @@ -48236,8 +40531,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3394 type: HVWire @@ -48247,8 +40540,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3395 type: HVWire @@ -48258,8 +40549,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3396 type: HVWire @@ -48269,8 +40558,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3397 type: HVWire @@ -48280,8 +40567,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3398 type: HVWire @@ -48291,8 +40576,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3399 type: HVWire @@ -48302,8 +40585,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3400 type: HVWire @@ -48313,8 +40594,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3401 type: HVWire @@ -48324,8 +40603,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3402 type: HVWire @@ -48335,8 +40612,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3403 type: HVWire @@ -48346,8 +40621,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3404 type: HVWire @@ -48357,8 +40630,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3405 type: HVWire @@ -48368,8 +40639,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3406 type: HVWire @@ -48379,8 +40648,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3407 type: HVWire @@ -48390,8 +40657,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3408 type: HVWire @@ -48401,8 +40666,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3409 type: HVWire @@ -48412,8 +40675,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3410 type: HVWire @@ -48423,8 +40684,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3411 type: HVWire @@ -48434,8 +40693,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3412 type: HVWire @@ -48445,8 +40702,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3413 type: HVWire @@ -48456,8 +40711,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3414 type: HVWire @@ -48467,8 +40720,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3415 type: HVWire @@ -48478,8 +40729,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3416 type: HVWire @@ -48489,8 +40738,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3417 type: HVWire @@ -48500,8 +40747,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3418 type: HVWire @@ -48511,8 +40756,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3419 type: HVWire @@ -48522,8 +40765,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3420 type: HVWire @@ -48533,8 +40774,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3421 type: HVWire @@ -48544,8 +40783,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3422 type: HVWire @@ -48555,8 +40792,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3423 type: HVWire @@ -48566,8 +40801,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3424 type: HVWire @@ -48577,8 +40810,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3425 type: HVWire @@ -48588,8 +40819,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3426 type: HVWire @@ -48599,8 +40828,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3427 type: HVWire @@ -48610,8 +40837,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3428 type: HVWire @@ -48621,8 +40846,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3429 type: HVWire @@ -48632,8 +40855,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3430 type: HVWire @@ -48643,8 +40864,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3431 type: HVWire @@ -48654,8 +40873,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3432 type: HVWire @@ -48665,8 +40882,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3433 type: HVWire @@ -48676,8 +40891,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3434 type: HVWire @@ -48687,8 +40900,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3435 type: HVWire @@ -48698,8 +40909,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3436 type: HVWire @@ -48709,8 +40918,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3437 type: HVWire @@ -48720,8 +40927,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3438 type: HVWire @@ -48731,8 +40936,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3439 type: HVWire @@ -48742,8 +40945,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3440 type: HVWire @@ -48753,8 +40954,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3441 type: HVWire @@ -48764,8 +40963,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3442 type: HVWire @@ -48775,8 +40972,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3443 type: HVWire @@ -48786,8 +40981,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3444 type: HVWire @@ -48797,8 +40990,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3445 type: HVWire @@ -48808,8 +40999,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3446 type: HVWire @@ -48819,8 +41008,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3447 type: HVWire @@ -48830,8 +41017,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3448 type: HVWire @@ -48841,8 +41026,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3449 type: HVWire @@ -48852,8 +41035,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3450 type: HVWire @@ -48863,8 +41044,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3451 type: HVWire @@ -48874,8 +41053,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3452 type: HVWire @@ -48885,8 +41062,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3453 type: HVWire @@ -48896,8 +41071,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3454 type: HVWire @@ -48907,8 +41080,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3455 type: HVWire @@ -48918,8 +41089,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3456 type: HVWire @@ -48929,8 +41098,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3457 type: HVWire @@ -48940,8 +41107,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3458 type: HVWire @@ -48951,8 +41116,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3459 type: HVWire @@ -48962,8 +41125,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3460 type: HVWire @@ -48973,8 +41134,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3461 type: HVWire @@ -48984,8 +41143,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3462 type: HVWire @@ -48995,8 +41152,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3463 type: HVWire @@ -49006,8 +41161,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3464 type: HVWire @@ -49017,8 +41170,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3465 type: HVWire @@ -49028,8 +41179,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3466 type: HVWire @@ -49039,8 +41188,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3467 type: HVWire @@ -49050,8 +41197,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3468 type: HVWire @@ -49061,8 +41206,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3469 type: HVWire @@ -49072,8 +41215,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3470 type: HVWire @@ -49083,8 +41224,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3471 type: HVWire @@ -49094,8 +41233,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3472 type: HVWire @@ -49105,8 +41242,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3473 type: HVWire @@ -49116,8 +41251,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3474 type: HVWire @@ -49127,8 +41260,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3475 type: HVWire @@ -49138,8 +41269,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3476 type: HVWire @@ -49149,8 +41278,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3477 type: HVWire @@ -49160,8 +41287,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3478 type: HVWire @@ -49171,8 +41296,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3479 type: HVWire @@ -49182,8 +41305,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3480 type: HVWire @@ -49193,8 +41314,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3481 type: HVWire @@ -49204,8 +41323,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3482 type: HVWire @@ -49215,8 +41332,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3483 type: HVWire @@ -49226,8 +41341,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3484 type: HVWire @@ -49237,8 +41350,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3485 type: HVWire @@ -49248,8 +41359,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3486 type: HVWire @@ -49259,8 +41368,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3487 type: HVWire @@ -49270,8 +41377,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3488 type: HVWire @@ -49281,8 +41386,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3489 type: HVWire @@ -49292,8 +41395,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3490 type: HVWire @@ -49303,8 +41404,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3491 type: HVWire @@ -49314,8 +41413,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3492 type: HVWire @@ -49325,8 +41422,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3493 type: HVWire @@ -49336,8 +41431,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3494 type: HVWire @@ -49347,8 +41440,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3495 type: HVWire @@ -49358,8 +41449,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3496 type: HVWire @@ -49369,8 +41458,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3497 type: HVWire @@ -49380,8 +41467,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3498 type: HVWire @@ -49391,8 +41476,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3499 type: HVWire @@ -49402,8 +41485,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3500 type: HVWire @@ -49413,8 +41494,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3501 type: HVWire @@ -49424,8 +41503,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3502 type: HVWire @@ -49435,8 +41512,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3503 type: HVWire @@ -49446,8 +41521,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3504 type: HVWire @@ -49457,8 +41530,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3505 type: HVWire @@ -49468,8 +41539,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3506 type: HVWire @@ -49479,8 +41548,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3507 type: HVWire @@ -49490,8 +41557,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3508 type: HVWire @@ -49501,8 +41566,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3509 type: HVWire @@ -49512,8 +41575,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3510 type: HVWire @@ -49523,8 +41584,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3511 type: HVWire @@ -49534,8 +41593,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3512 type: HVWire @@ -49545,8 +41602,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3513 type: HVWire @@ -49556,8 +41611,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3514 type: HVWire @@ -49567,8 +41620,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3515 type: HVWire @@ -49578,8 +41629,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3516 type: HVWire @@ -49589,8 +41638,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3517 type: HVWire @@ -49600,8 +41647,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3518 type: HVWire @@ -49611,8 +41656,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3519 type: HVWire @@ -49622,8 +41665,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3520 type: HVWire @@ -49633,8 +41674,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3521 type: HVWire @@ -49644,8 +41683,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3522 type: HVWire @@ -49655,8 +41692,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3523 type: HVWire @@ -49666,8 +41701,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3524 type: HVWire @@ -49677,8 +41710,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3525 type: HVWire @@ -49688,8 +41719,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3526 type: HVWire @@ -49699,8 +41728,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3527 type: HVWire @@ -49710,8 +41737,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3528 type: HVWire @@ -49721,8 +41746,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3529 type: HVWire @@ -49732,8 +41755,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3530 type: HVWire @@ -49743,8 +41764,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3531 type: HVWire @@ -49754,8 +41773,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3532 type: HVWire @@ -49765,8 +41782,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3533 type: HVWire @@ -49776,8 +41791,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3534 type: HVWire @@ -49787,8 +41800,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3535 type: HVWire @@ -49798,8 +41809,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3536 type: HVWire @@ -49809,8 +41818,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3537 type: HVWire @@ -49820,8 +41827,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3538 type: HVWire @@ -49831,8 +41836,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3539 type: HVWire @@ -49842,8 +41845,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3540 type: HVWire @@ -49853,8 +41854,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3541 type: HVWire @@ -49864,8 +41863,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3542 type: HVWire @@ -49875,8 +41872,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3543 type: HVWire @@ -49886,8 +41881,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3544 type: HVWire @@ -49897,8 +41890,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3545 type: HVWire @@ -49908,8 +41899,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3546 type: HVWire @@ -49919,8 +41908,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3547 type: HVWire @@ -49930,8 +41917,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3548 type: HVWire @@ -49941,8 +41926,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3549 type: HVWire @@ -49952,8 +41935,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3550 type: HVWire @@ -49963,8 +41944,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3551 type: HVWire @@ -49974,8 +41953,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3552 type: HVWire @@ -49985,8 +41962,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3553 type: HVWire @@ -49996,8 +41971,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3554 type: HVWire @@ -50007,8 +41980,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3555 type: HVWire @@ -50018,8 +41989,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3556 type: HVWire @@ -50029,8 +41998,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3557 type: HVWire @@ -50040,8 +42007,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3558 type: HVWire @@ -50051,8 +42016,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3559 type: HVWire @@ -50062,8 +42025,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3560 type: HVWire @@ -50073,8 +42034,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3561 type: HVWire @@ -50084,8 +42043,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3562 type: HVWire @@ -50095,8 +42052,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3563 type: HVWire @@ -50106,8 +42061,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3564 type: HVWire @@ -50117,8 +42070,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3565 type: HVWire @@ -50128,8 +42079,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3566 type: HVWire @@ -50139,8 +42088,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3567 type: HVWire @@ -50150,8 +42097,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3568 type: HVWire @@ -50161,8 +42106,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3569 type: HVWire @@ -50172,8 +42115,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3570 type: HVWire @@ -50183,8 +42124,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3571 type: HVWire @@ -50194,8 +42133,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3572 type: HVWire @@ -50205,8 +42142,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3573 type: HVWire @@ -50216,8 +42151,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3574 type: HVWire @@ -50227,8 +42160,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3575 type: HVWire @@ -50238,8 +42169,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3576 type: HVWire @@ -50249,8 +42178,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3577 type: HVWire @@ -50260,8 +42187,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3578 type: HVWire @@ -50271,8 +42196,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3579 type: HVWire @@ -50282,8 +42205,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3580 type: HVWire @@ -50293,8 +42214,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3581 type: HVWire @@ -50304,8 +42223,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3582 type: HVWire @@ -50315,8 +42232,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3583 type: HVWire @@ -50326,8 +42241,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3584 type: HVWire @@ -50337,8 +42250,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3585 type: HVWire @@ -50348,8 +42259,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3586 type: HVWire @@ -50359,8 +42268,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3587 type: HVWire @@ -50370,8 +42277,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3588 type: HVWire @@ -50381,8 +42286,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3589 type: HVWire @@ -50392,8 +42295,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3590 type: HVWire @@ -50403,8 +42304,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3591 type: HVWire @@ -50414,8 +42313,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3592 type: HVWire @@ -50425,8 +42322,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3593 type: HVWire @@ -50436,8 +42331,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3594 type: HVWire @@ -50447,8 +42340,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3595 type: HVWire @@ -50458,8 +42349,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3596 type: HVWire @@ -50469,8 +42358,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3597 type: HVWire @@ -50480,8 +42367,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3598 type: HVWire @@ -50491,8 +42376,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3599 type: HVWire @@ -50502,8 +42385,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3600 type: HVWire @@ -50513,8 +42394,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3601 type: HVWire @@ -50524,8 +42403,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3602 type: HVWire @@ -50535,8 +42412,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3603 type: HVWire @@ -50546,8 +42421,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3604 type: HVWire @@ -50557,8 +42430,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3605 type: HVWire @@ -50568,8 +42439,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3606 type: HVWire @@ -50579,8 +42448,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3607 type: HVWire @@ -50590,8 +42457,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3608 type: HVWire @@ -50601,8 +42466,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3609 type: HVWire @@ -50612,8 +42475,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3610 type: HVWire @@ -50623,8 +42484,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3611 type: HVWire @@ -50634,8 +42493,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3612 type: HVWire @@ -50645,8 +42502,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3613 type: HVWire @@ -50656,8 +42511,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3614 type: HVWire @@ -50667,8 +42520,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3615 type: HVWire @@ -50678,8 +42529,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3616 type: HVWire @@ -50689,8 +42538,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3617 type: HVWire @@ -50700,8 +42547,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3618 type: HVWire @@ -50711,8 +42556,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3619 type: HVWire @@ -50722,8 +42565,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3620 type: HVWire @@ -50733,8 +42574,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3621 type: HVWire @@ -50744,8 +42583,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3622 type: HVWire @@ -50755,8 +42592,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3623 type: HVWire @@ -50766,8 +42601,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3624 type: HVWire @@ -50777,8 +42610,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3625 type: SalternSubstation @@ -50842,8 +42673,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3632 type: SalternSubstation @@ -50880,8 +42709,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3636 type: MVWire @@ -50891,8 +42718,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3637 type: MVWire @@ -50902,8 +42727,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3638 type: MVWire @@ -50913,8 +42736,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3639 type: MVWire @@ -50924,8 +42745,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3640 type: MVWire @@ -50935,8 +42754,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3641 type: MVWire @@ -50946,8 +42763,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3642 type: MVWire @@ -50957,8 +42772,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3643 type: MVWire @@ -50968,8 +42781,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3644 type: MVWire @@ -50979,8 +42790,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3645 type: MVWire @@ -50990,8 +42799,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3646 type: MVWire @@ -51001,8 +42808,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3647 type: MVWire @@ -51012,8 +42817,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3648 type: MVWire @@ -51023,8 +42826,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3649 type: MVWire @@ -51034,8 +42835,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3650 type: MVWire @@ -51045,8 +42844,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3651 type: MVWire @@ -51056,8 +42853,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3652 type: MVWire @@ -51067,8 +42862,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3653 type: MVWire @@ -51078,8 +42871,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3654 type: MVWire @@ -51089,8 +42880,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3655 type: MVWire @@ -51100,8 +42889,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3656 type: MVWire @@ -51111,8 +42898,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3657 type: MVWire @@ -51122,8 +42907,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3658 type: MVWire @@ -51133,8 +42916,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3659 type: MVWire @@ -51144,8 +42925,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3660 type: MVWire @@ -51155,8 +42934,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3661 type: MVWire @@ -51166,8 +42943,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3662 type: MVWire @@ -51177,8 +42952,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3663 type: MVWire @@ -51188,8 +42961,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3664 type: MVWire @@ -51199,8 +42970,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3665 type: MVWire @@ -51210,8 +42979,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3666 type: MVWire @@ -51221,8 +42988,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3667 type: MVWire @@ -51232,8 +42997,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3668 type: MVWire @@ -51243,8 +43006,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3669 type: MVWire @@ -51254,8 +43015,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3670 type: MVWire @@ -51265,8 +43024,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3671 type: MVWire @@ -51276,8 +43033,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3672 type: MVWire @@ -51287,8 +43042,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3673 type: MVWire @@ -51298,8 +43051,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3674 type: MVWire @@ -51309,8 +43060,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3675 type: MVWire @@ -51320,8 +43069,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3676 type: MVWire @@ -51331,8 +43078,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3677 type: MVWire @@ -51342,8 +43087,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3678 type: MVWire @@ -51353,8 +43096,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3679 type: MVWire @@ -51364,8 +43105,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3680 type: MVWire @@ -51375,8 +43114,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3681 type: MVWire @@ -51386,8 +43123,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3682 type: MVWire @@ -51397,8 +43132,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3683 type: MVWire @@ -51408,8 +43141,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3684 type: MVWire @@ -51419,8 +43150,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3685 type: MVWire @@ -51430,8 +43159,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3686 type: MVWire @@ -51441,8 +43168,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3687 type: MVWire @@ -51452,8 +43177,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3688 type: MVWire @@ -51463,8 +43186,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3689 type: MVWire @@ -51474,8 +43195,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3690 type: MVWire @@ -51485,8 +43204,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3691 type: MVWire @@ -51496,8 +43213,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3692 type: MVWire @@ -51507,8 +43222,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3693 type: MVWire @@ -51518,8 +43231,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3694 type: MVWire @@ -51529,8 +43240,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3695 type: MVWire @@ -51540,8 +43249,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3696 type: MVWire @@ -51551,8 +43258,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3697 type: MVWire @@ -51562,8 +43267,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3698 type: MVWire @@ -51573,8 +43276,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3699 type: MVWire @@ -51584,8 +43285,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3700 type: MVWire @@ -51595,8 +43294,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3701 type: MVWire @@ -51606,8 +43303,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3702 type: MVWire @@ -51617,8 +43312,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3703 type: MVWire @@ -51628,8 +43321,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3704 type: MVWire @@ -51639,8 +43330,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3705 type: MVWire @@ -51650,8 +43339,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3706 type: MVWire @@ -51661,8 +43348,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3707 type: MVWire @@ -51672,8 +43357,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3708 type: MVWire @@ -51683,8 +43366,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3709 type: MVWire @@ -51694,8 +43375,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3710 type: MVWire @@ -51705,8 +43384,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3711 type: MVWire @@ -51716,8 +43393,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3712 type: MVWire @@ -51727,8 +43402,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3713 type: MVWire @@ -51738,8 +43411,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3714 type: MVWire @@ -51749,8 +43420,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3715 type: MVWire @@ -51760,8 +43429,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3716 type: MVWire @@ -51771,8 +43438,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3717 type: MVWire @@ -51782,8 +43447,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3718 type: MVWire @@ -51793,8 +43456,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3719 type: MVWire @@ -51804,8 +43465,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3720 type: MVWire @@ -51815,8 +43474,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3721 type: MVWire @@ -51826,8 +43483,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3722 type: MVWire @@ -51837,8 +43492,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3723 type: MVWire @@ -51848,8 +43501,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3724 type: MVWire @@ -51859,8 +43510,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3725 type: MVWire @@ -51870,8 +43519,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3726 type: MVWire @@ -51881,8 +43528,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3727 type: MVWire @@ -51892,8 +43537,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3728 type: MVWire @@ -51903,8 +43546,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3729 type: MVWire @@ -51914,8 +43555,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3730 type: MVWire @@ -51925,8 +43564,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3731 type: MVWire @@ -51936,8 +43573,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3732 type: MVWire @@ -51947,8 +43582,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3733 type: MVWire @@ -51958,8 +43591,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3734 type: MVWire @@ -51969,8 +43600,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3735 type: MVWire @@ -51980,8 +43609,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3736 type: MVWire @@ -51991,8 +43618,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3737 type: MVWire @@ -52002,8 +43627,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3738 type: MVWire @@ -52013,8 +43636,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3739 type: MVWire @@ -52024,8 +43645,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3740 type: MVWire @@ -52035,8 +43654,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3741 type: MVWire @@ -52046,8 +43663,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3742 type: MVWire @@ -52057,8 +43672,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3743 type: MVWire @@ -52068,8 +43681,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3744 type: MVWire @@ -52079,8 +43690,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3745 type: MVWire @@ -52090,8 +43699,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3746 type: MVWire @@ -52101,8 +43708,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3747 type: MVWire @@ -52112,8 +43717,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3748 type: MVWire @@ -52123,8 +43726,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3749 type: MVWire @@ -52134,8 +43735,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3750 type: MVWire @@ -52145,8 +43744,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3751 type: MVWire @@ -52156,8 +43753,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3752 type: MVWire @@ -52167,8 +43762,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3753 type: MVWire @@ -52178,8 +43771,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3754 type: MVWire @@ -52189,8 +43780,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3755 type: MVWire @@ -52200,8 +43789,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3756 type: MVWire @@ -52211,8 +43798,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3757 type: MVWire @@ -52222,8 +43807,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3758 type: MVWire @@ -52233,8 +43816,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3759 type: MVWire @@ -52244,8 +43825,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3760 type: MVWire @@ -52255,8 +43834,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3761 type: MVWire @@ -52266,8 +43843,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3762 type: MVWire @@ -52277,8 +43852,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3763 type: MVWire @@ -52288,8 +43861,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3764 type: MVWire @@ -52299,8 +43870,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3765 type: MVWire @@ -52310,8 +43879,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3766 type: MVWire @@ -52321,8 +43888,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3767 type: MVWire @@ -52332,8 +43897,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3768 type: MVWire @@ -52343,8 +43906,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3769 type: MVWire @@ -52354,8 +43915,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3770 type: MVWire @@ -52365,8 +43924,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3771 type: MVWire @@ -52376,8 +43933,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3772 type: MVWire @@ -52387,8 +43942,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3773 type: MVWire @@ -52398,8 +43951,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3774 type: MVWire @@ -52409,8 +43960,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3775 type: MVWire @@ -52420,8 +43969,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3776 type: MVWire @@ -52431,8 +43978,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3777 type: MVWire @@ -52442,8 +43987,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3778 type: MVWire @@ -52453,8 +43996,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3779 type: MVWire @@ -52464,8 +44005,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3780 type: MVWire @@ -52475,8 +44014,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3781 type: MVWire @@ -52486,8 +44023,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3782 type: MVWire @@ -52497,8 +44032,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3783 type: MVWire @@ -52508,8 +44041,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3784 type: MVWire @@ -52519,8 +44050,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3785 type: MVWire @@ -52530,8 +44059,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3786 type: MVWire @@ -52541,8 +44068,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3787 type: MVWire @@ -52552,8 +44077,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3788 type: MVWire @@ -52563,8 +44086,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3789 type: MVWire @@ -52574,8 +44095,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3790 type: MVWire @@ -52585,8 +44104,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3791 type: MVWire @@ -52596,8 +44113,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3792 type: MVWire @@ -52607,8 +44122,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3793 type: MVWire @@ -52618,8 +44131,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3794 type: MVWire @@ -52629,8 +44140,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3795 type: MVWire @@ -52640,8 +44149,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3796 type: MVWire @@ -52651,8 +44158,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3797 type: MVWire @@ -52662,8 +44167,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3798 type: MVWire @@ -52673,8 +44176,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3799 type: MVWire @@ -52684,8 +44185,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3800 type: MVWire @@ -52695,8 +44194,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3801 type: MVWire @@ -52706,8 +44203,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3802 type: MVWire @@ -52717,8 +44212,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3803 type: MVWire @@ -52728,8 +44221,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3804 type: MVWire @@ -52739,8 +44230,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3805 type: MVWire @@ -52750,8 +44239,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3806 type: MVWire @@ -52761,8 +44248,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3807 type: MVWire @@ -52772,8 +44257,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3808 type: MVWire @@ -52783,8 +44266,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3809 type: MVWire @@ -52794,8 +44275,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3810 type: MVWire @@ -52805,8 +44284,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3811 type: MVWire @@ -52816,8 +44293,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3812 type: MVWire @@ -52827,8 +44302,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3813 type: MVWire @@ -52838,8 +44311,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3814 type: MVWire @@ -52849,8 +44320,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3815 type: MVWire @@ -52860,8 +44329,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3816 type: MVWire @@ -52871,8 +44338,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3817 type: MVWire @@ -52882,8 +44347,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3818 type: MVWire @@ -52893,8 +44356,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3819 type: MVWire @@ -52904,8 +44365,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3820 type: MVWire @@ -52915,8 +44374,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3821 type: MVWire @@ -52926,8 +44383,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3822 type: MVWire @@ -52937,8 +44392,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3823 type: MVWire @@ -52948,8 +44401,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3824 type: MVWire @@ -52959,8 +44410,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3825 type: MVWire @@ -52970,8 +44419,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3826 type: MVWire @@ -52981,8 +44428,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3827 type: MVWire @@ -52992,8 +44437,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3828 type: MVWire @@ -53003,8 +44446,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3829 type: MVWire @@ -53014,8 +44455,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3830 type: MVWire @@ -53025,8 +44464,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3831 type: MVWire @@ -53036,8 +44473,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3832 type: MVWire @@ -53047,8 +44482,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3833 type: MVWire @@ -53058,8 +44491,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3834 type: MVWire @@ -53069,8 +44500,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3835 type: MVWire @@ -53080,8 +44509,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3836 type: MVWire @@ -53091,8 +44518,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3837 type: MVWire @@ -53102,8 +44527,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3838 type: MVWire @@ -53113,8 +44536,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3839 type: MVWire @@ -53124,8 +44545,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3840 type: MVWire @@ -53135,8 +44554,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3841 type: MVWire @@ -53146,8 +44563,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3842 type: MVWire @@ -53157,8 +44572,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3843 type: MVWire @@ -53168,8 +44581,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3844 type: MVWire @@ -53179,8 +44590,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3845 type: MVWire @@ -53190,8 +44599,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3846 type: MVWire @@ -53201,8 +44608,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3847 type: MVWire @@ -53212,8 +44617,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3848 type: MVWire @@ -53223,8 +44626,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3849 type: MVWire @@ -53234,8 +44635,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3850 type: MVWire @@ -53245,8 +44644,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3851 type: MVWire @@ -53256,8 +44653,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3852 type: MVWire @@ -53267,8 +44662,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3853 type: MVWire @@ -53278,8 +44671,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3854 type: MVWire @@ -53289,8 +44680,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3855 type: MVWire @@ -53300,8 +44689,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3856 type: MVWire @@ -53311,8 +44698,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3857 type: MVWire @@ -53322,8 +44707,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3858 type: MVWire @@ -53333,8 +44716,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3859 type: MVWire @@ -53344,8 +44725,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3860 type: MVWire @@ -53355,8 +44734,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3861 type: MVWire @@ -53366,8 +44743,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3862 type: MVWire @@ -53377,8 +44752,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3863 type: MVWire @@ -53388,8 +44761,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3864 type: MVWire @@ -53399,8 +44770,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3865 type: MVWire @@ -53410,8 +44779,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3866 type: MVWire @@ -53421,8 +44788,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3867 type: MVWire @@ -53432,8 +44797,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3868 type: MVWire @@ -53443,8 +44806,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3869 type: MVWire @@ -53454,8 +44815,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3870 type: MVWire @@ -53465,8 +44824,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3871 type: MVWire @@ -53476,8 +44833,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3872 type: MVWire @@ -53487,8 +44842,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3873 type: MVWire @@ -53498,8 +44851,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3874 type: MVWire @@ -53509,8 +44860,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3875 type: MVWire @@ -53520,8 +44869,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3876 type: MVWire @@ -53531,8 +44878,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3877 type: MVWire @@ -53542,8 +44887,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3878 type: MVWire @@ -53553,8 +44896,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3879 type: MVWire @@ -53564,8 +44905,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3880 type: MVWire @@ -53575,8 +44914,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3881 type: MVWire @@ -53586,8 +44923,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3882 type: MVWire @@ -53597,8 +44932,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3883 type: MVWire @@ -53608,8 +44941,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3884 type: MVWire @@ -53619,8 +44950,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3885 type: MVWire @@ -53630,8 +44959,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3886 type: MVWire @@ -53641,8 +44968,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3887 type: MVWire @@ -53652,8 +44977,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3888 type: MVWire @@ -53663,8 +44986,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3889 type: solid_wall @@ -53673,9 +44994,6 @@ entities: pos: 23.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3890 type: PoweredSmallLight components: @@ -53683,9 +45001,6 @@ entities: pos: 22.528679,-9.003884 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -53698,8 +45013,6 @@ entities: rot: 1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3892 type: AirlockMaintMedLocked @@ -53708,9 +45021,6 @@ entities: pos: 23.5,-10.5 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3893 type: AirlockMaintSecLocked components: @@ -53718,9 +45028,6 @@ entities: pos: -16.5,16.5 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3894 type: AirlockMaintCommandLocked components: @@ -53728,9 +45035,6 @@ entities: pos: 12.5,22.5 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3895 type: EmergencyLight components: @@ -53917,7 +45221,7 @@ entities: - parent: 857 pos: -39.802197,11.207858 type: Transform - - startingCharge: 27971.018 + - startingCharge: 28187.668 type: Battery - uid: 3913 type: EmergencyLight @@ -54035,8 +45339,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3924 type: ApcExtensionCable @@ -54046,8 +45348,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3925 type: HVWire @@ -54057,8 +45357,6 @@ entities: rot: -1.5707963267948966 rad type: Transform - deadThreshold: 100 - flags: - - None type: Destructible - uid: 3926 type: SalternGenerator @@ -54080,9 +45378,6 @@ entities: - parent: 857 pos: -13.924418,16.541348 type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -54094,9 +45389,6 @@ entities: pos: -1.4929452,19.970068 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -54108,9 +45400,6 @@ entities: pos: -15.494916,16.030584 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -54122,9 +45411,6 @@ entities: pos: -15.494916,16.030584 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -54136,9 +45422,6 @@ entities: pos: -15.494916,15.968084 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot @@ -54205,9 +45488,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -54228,9 +45508,6 @@ entities: pos: 46.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3941 type: Table components: @@ -54238,9 +45515,6 @@ entities: pos: 48.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3942 type: Table components: @@ -54248,9 +45522,6 @@ entities: pos: 47.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3943 type: Table components: @@ -54258,9 +45529,6 @@ entities: pos: 49.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3944 type: Table components: @@ -54268,9 +45536,6 @@ entities: pos: 50.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 3945 type: HVWireStack components: @@ -54336,9 +45601,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -54377,9 +45639,6 @@ entities: pos: -22.00058,-5.6251965 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - containers: light_bulb: type: Content.Server.GameObjects.ContainerSlot diff --git a/Resources/Maps/stationstation.yml b/Resources/Maps/stationstation.yml index 99af47d155..c6bbc5225c 100644 --- a/Resources/Maps/stationstation.yml +++ b/Resources/Maps/stationstation.yml @@ -11,62 +11,25 @@ tilemap: 4: floor_asteroid_coarse_sand_dug 5: floor_asteroid_sand 6: floor_asteroid_tile - 7: floor_carpet - 8: floor_dark - 9: floor_elevator_shaft - 10: floor_freezer - 11: floor_gold - 12: floor_green_circuit - 13: floor_hull_center0 - 14: floor_hull_center1 - 15: floor_hull_center10 - 16: floor_hull_center11 - 17: floor_hull_center12 - 18: floor_hull_center13 - 19: floor_hull_center14 - 20: floor_hull_center15 - 21: floor_hull_center16 - 22: floor_hull_center17 - 23: floor_hull_center18 - 24: floor_hull_center19 - 25: floor_hull_center2 - 26: floor_hull_center20 - 27: floor_hull_center21 - 28: floor_hull_center22 - 29: floor_hull_center23 - 30: floor_hull_center24 - 31: floor_hull_center25 - 32: floor_hull_center26 - 33: floor_hull_center27 - 34: floor_hull_center28 - 35: floor_hull_center29 - 36: floor_hull_center3 - 37: floor_hull_center30 - 38: floor_hull_center31 - 39: floor_hull_center32 - 40: floor_hull_center33 - 41: floor_hull_center34 - 42: floor_hull_center35 - 43: floor_hull_center4 - 44: floor_hull_center5 - 45: floor_hull_center6 - 46: floor_hull_center7 - 47: floor_hull_center8 - 48: floor_hull_center9 - 49: floor_hydro - 50: floor_lino - 51: floor_mono - 52: floor_reinforced - 53: floor_rock_vault - 54: floor_showroom - 55: floor_snow - 56: floor_steel - 57: floor_steel_dirty - 58: floor_techmaint - 59: floor_white - 60: floor_wood - 61: plating - 62: underplating + 7: floor_dark + 8: floor_elevator_shaft + 9: floor_freezer + 10: floor_gold + 11: floor_green_circuit + 12: floor_hydro + 13: floor_lino + 14: floor_mono + 15: floor_reinforced + 16: floor_rock_vault + 17: floor_showroom + 18: floor_snow + 19: floor_steel + 20: floor_steel_dirty + 21: floor_techmaint + 22: floor_white + 23: floor_wood + 24: plating + 25: underplating grids: - settings: chunksize: 16 @@ -74,29 +37,29 @@ grids: snapsize: 1 chunks: - ind: "-1,0" - tiles: OAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPgAAAD4AAAA+AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAADgAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: EwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAGQAAABkAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAAAAAAEwAAABMAAAATAAAAAAAAAAAAAAAAAAAAAAAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAAAAAABMAAAATAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-1,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA6AAAAOgAAAD4AAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABkAAAAVAAAAFQAAABkAAAAVAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAGQAAABkAAAAZAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAVAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAZAAAAGQAAABkAAAAVAAAAFQAAABUAAAAVAAAAFQAAABUAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAFQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAZAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAGQAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAZAAAAFQAAABkAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAAA== - ind: "-1,1" tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "0,1" - tiles: AAAAAD4AAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOAAAAAAAAAA+AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAAAAAAAPgAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA+AAAAAAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAAAAAAAA+AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA6AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAPgAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA7AAAAAAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOwAAAAAAAAA+AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA6AAAAOgAAADoAAAA+AAAAOgAAADoAAAA+AAAAPgAAADsAAAAAAAAAPgAAADgAAAA4AAAAPgAAADoAAAA+AAAAOgAAADoAAAA6AAAAPgAAADoAAAA6AAAAPgAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA6AAAAPgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAOgAAAD4AAAA+AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADoAAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA6AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAEwAAAAAAAAAZAAAAEwAAABMAAAAZAAAAFQAAABkAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAAAAAAGQAAABMAAAATAAAAGQAAABUAAAAZAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAAAAAABkAAAATAAAAEwAAABkAAAAVAAAAGQAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAAAAAAAAZAAAAEwAAABMAAAAZAAAAFQAAABkAAAAVAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAGQAAABMAAAATAAAAGQAAABUAAAAZAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAAAAAABkAAAATAAAAEwAAABkAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAFgAAAAAAAAAZAAAAEwAAABMAAAAZAAAAFQAAABkAAAAVAAAAFQAAABUAAAAZAAAAFQAAABUAAAAZAAAAGQAAABYAAAAAAAAAGQAAABMAAAATAAAAGQAAABUAAAAZAAAAFQAAABUAAAAVAAAAGQAAABUAAAAVAAAAGQAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAABUAAAAVAAAAFQAAABkAAAAVAAAAFQAAABkAAAAZAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABYAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABUAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAVAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "0,0" - tiles: OAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAOgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOwAAAD4AAAA+AAAAOAAAADgAAAA+AAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAADsAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA7AAAAOAAAADgAAAA4AAAAOAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOwAAADgAAAA4AAAAOAAAADgAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA4AAAAOAAAADgAAAA4AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOAAAADgAAAA4AAAAOAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAADgAAAA4AAAAOAAAADgAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA+AAAAPgAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAA7AAAAPgAAAD4AAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA7AAAAOwAAAD4AAAA6AAAAOAAAADgAAAA6AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAOwAAADsAAAA+AAAAPgAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA4AAAAAAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAAAAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAOwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== + tiles: EwAAABkAAAATAAAAEwAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAFgAAABkAAAAZAAAAEwAAABMAAAAZAAAAFQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAAAAAABkAAAAWAAAAFgAAABYAAAATAAAAEwAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAAWAAAAEwAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFgAAABMAAAATAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAATAAAAEwAAABMAAAATAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAEwAAABMAAAATAAAAEwAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWAAAAFgAAABMAAAATAAAAEwAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABYAAAAWAAAAGQAAABkAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAWAAAAFgAAABkAAAAVAAAAEwAAABMAAAAVAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAVAAAAFgAAABYAAAAZAAAAGQAAABMAAAATAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAATAAAAAAAAABkAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAAAAAAAAZAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAAAAAAGQAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAAAAAABkAAAATAAAAEwAAABkAAAAVAAAAGQAAABkAAAAZAAAAFgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAA== - ind: "0,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAD4AAAA6AAAAOgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA+AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA+AAAAPgAAADoAAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAOgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAADgAAAA4AAAAOAAAADgAAAA+AAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA6AAAAOgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAOgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABkAAAAVAAAAFQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAVAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABUAAAAVAAAAFQAAABUAAAAZAAAAFQAAABUAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAABUAAAAVAAAAFQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAZAAAAGQAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAAZAAAAGQAAABUAAAAVAAAAGQAAABkAAAAZAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAEwAAABkAAAATAAAAEwAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAAAAAABkAAAAWAAAAFgAAABMAAAATAAAAEwAAABMAAAAZAAAAFQAAABUAAAAVAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAFgAAABYAAAATAAAAEwAAABMAAAATAAAAGQAAABUAAAAVAAAAFQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABYAAAAWAAAAEwAAABMAAAATAAAAEwAAABkAAAAVAAAAFQAAABUAAAAZAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAFgAAAA== - ind: "1,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAA7AAAAPgAAAD4AAAA+AAAAOwAAAD4AAAA+AAAAPgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABYAAAAWAAAAGQAAABkAAAAZAAAAFgAAABkAAAAZAAAAGQAAAA== - ind: "-2,0" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAAA== - ind: "1,0" - tiles: OwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAAAAAAAOwAAAD4AAAA+AAAAPgAAADsAAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA+AAAAOwAAAD4AAAA7AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAA== + tiles: FgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAAAAAAFgAAABkAAAAZAAAAGQAAABYAAAAZAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAZAAAAFgAAABkAAAAWAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAABYAAAAWAAAAFgAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAWAAAAFgAAABYAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAEwAAABMAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEwAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAAAAAAAAAAA== - ind: "2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAABkAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "1,1" - tiles: OAAAADgAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: EwAAABMAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAGQAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== entities: - uid: 0 type: GlassStack @@ -113,9 +76,6 @@ entities: pos: 8.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 2 type: LightTube components: @@ -131,9 +91,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -141,7 +98,7 @@ entities: type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 4 - type: CableStack1 + type: ApcExtensionCableStack1 components: - parent: 216 pos: 10.577456,21.424059 @@ -155,9 +112,6 @@ entities: pos: 9.5,18.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - uid: 6 type: ChairOfficeLight components: @@ -165,18 +119,12 @@ entities: pos: 9.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 7 type: Chair components: - parent: 216 pos: 12.5,17.5 type: Transform - - flags: - - None - type: Destructible - uid: 8 type: solid_wall components: @@ -184,9 +132,6 @@ entities: pos: 8.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 9 type: solid_wall components: @@ -194,9 +139,6 @@ entities: pos: 8.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 10 type: solid_wall components: @@ -204,9 +146,6 @@ entities: pos: 8.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 11 type: Table components: @@ -214,9 +153,6 @@ entities: pos: 13.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 12 type: Table components: @@ -224,9 +160,6 @@ entities: pos: 11.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 13 type: Table components: @@ -234,9 +167,6 @@ entities: pos: 10.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 14 type: Table components: @@ -244,9 +174,6 @@ entities: pos: 9.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 15 type: Table components: @@ -254,9 +181,6 @@ entities: pos: 8.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 16 type: Autolathe components: @@ -329,6 +253,8 @@ entities: - parent: 216 pos: 8.5,18.5 type: Transform + - deadThreshold: 100 + type: BreakableConstruction - uid: 21 type: ResearchAndDevelopmentServer components: @@ -354,9 +280,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -386,9 +309,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -403,9 +323,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -434,9 +351,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -458,9 +372,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -483,9 +394,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -508,9 +416,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -526,9 +431,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -558,9 +460,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -583,9 +482,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -599,9 +495,6 @@ entities: pos: 9.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 44 type: Airlock components: @@ -609,9 +502,6 @@ entities: pos: 7.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 45 type: Airlock components: @@ -619,9 +509,6 @@ entities: pos: 5.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 46 type: AirlockScience components: @@ -629,9 +516,6 @@ entities: pos: 16.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 47 type: AirlockScience components: @@ -639,9 +523,6 @@ entities: pos: 16.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 48 type: AirlockScience components: @@ -649,9 +530,6 @@ entities: pos: 14.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 49 type: AirlockScienceGlass components: @@ -659,9 +537,6 @@ entities: pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 50 type: solid_wall components: @@ -669,9 +544,6 @@ entities: pos: 1.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 51 type: solid_wall components: @@ -679,9 +551,6 @@ entities: pos: 1.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 52 type: solid_wall components: @@ -689,9 +558,6 @@ entities: pos: 1.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 53 type: solid_wall components: @@ -699,9 +565,6 @@ entities: pos: 1.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 54 type: solid_wall components: @@ -709,9 +572,6 @@ entities: pos: 1.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 55 type: solid_wall components: @@ -719,9 +579,6 @@ entities: pos: 1.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 56 type: solid_wall components: @@ -729,9 +586,6 @@ entities: pos: 1.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 57 type: solid_wall components: @@ -739,9 +593,6 @@ entities: pos: 1.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 58 type: solid_wall components: @@ -749,9 +600,6 @@ entities: pos: 1.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 59 type: Catwalk components: @@ -780,9 +628,6 @@ entities: pos: 7.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 63 type: solid_wall components: @@ -790,9 +635,6 @@ entities: pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 64 type: solid_wall components: @@ -800,9 +642,6 @@ entities: pos: 7.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 65 type: solid_wall components: @@ -810,9 +649,6 @@ entities: pos: 7.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 66 type: solid_wall components: @@ -820,9 +656,6 @@ entities: pos: 4.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 67 type: solid_wall components: @@ -830,9 +663,6 @@ entities: pos: 4.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 68 type: solid_wall components: @@ -840,9 +670,6 @@ entities: pos: 4.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 69 type: solid_wall components: @@ -850,9 +677,6 @@ entities: pos: 10.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 70 type: solid_wall components: @@ -860,9 +684,6 @@ entities: pos: 10.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 71 type: solid_wall components: @@ -870,9 +691,6 @@ entities: pos: 10.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 72 type: solid_wall components: @@ -880,9 +698,6 @@ entities: pos: 4.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 73 type: solid_wall components: @@ -890,9 +705,6 @@ entities: pos: 8.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 74 type: solid_wall components: @@ -900,9 +712,6 @@ entities: pos: 9.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 75 type: solid_wall components: @@ -910,9 +719,6 @@ entities: pos: 10.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 76 type: solid_wall components: @@ -920,9 +726,6 @@ entities: pos: 11.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 77 type: solid_wall components: @@ -930,9 +733,6 @@ entities: pos: 12.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 78 type: solid_wall components: @@ -940,9 +740,6 @@ entities: pos: 13.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 79 type: solid_wall components: @@ -950,9 +747,6 @@ entities: pos: 18.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 80 type: solid_wall components: @@ -960,9 +754,6 @@ entities: pos: 18.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 81 type: solid_wall components: @@ -970,9 +761,6 @@ entities: pos: 18.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 82 type: solid_wall components: @@ -980,9 +768,6 @@ entities: pos: 18.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 83 type: solid_wall components: @@ -990,9 +775,6 @@ entities: pos: 18.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 84 type: solid_wall components: @@ -1000,9 +782,6 @@ entities: pos: 18.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 85 type: solid_wall components: @@ -1010,9 +789,6 @@ entities: pos: 14.5,28.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 86 type: solid_wall components: @@ -1020,9 +796,6 @@ entities: pos: 14.5,27.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 87 type: solid_wall components: @@ -1030,9 +803,6 @@ entities: pos: 14.5,26.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 88 type: solid_wall components: @@ -1040,9 +810,6 @@ entities: pos: 14.5,25.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 89 type: solid_wall components: @@ -1050,9 +817,6 @@ entities: pos: 14.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 90 type: solid_wall components: @@ -1060,9 +824,6 @@ entities: pos: 13.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 91 type: solid_wall components: @@ -1070,9 +831,6 @@ entities: pos: 12.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 92 type: solid_wall components: @@ -1080,9 +838,6 @@ entities: pos: 11.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 93 type: solid_wall components: @@ -1090,9 +845,6 @@ entities: pos: 10.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 94 type: solid_wall components: @@ -1100,9 +852,6 @@ entities: pos: 9.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 95 type: solid_wall components: @@ -1110,9 +859,6 @@ entities: pos: 8.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 96 type: solid_wall components: @@ -1120,9 +866,6 @@ entities: pos: 14.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 97 type: solid_wall components: @@ -1130,9 +873,6 @@ entities: pos: 14.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 98 type: solid_wall components: @@ -1140,9 +880,6 @@ entities: pos: 7.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 99 type: solid_wall components: @@ -1150,9 +887,6 @@ entities: pos: 6.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 100 type: solid_wall components: @@ -1160,9 +894,6 @@ entities: pos: 28.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 101 type: solid_wall components: @@ -1170,9 +901,6 @@ entities: pos: 27.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 102 type: solid_wall components: @@ -1180,9 +908,6 @@ entities: pos: 26.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 103 type: solid_wall components: @@ -1190,9 +915,6 @@ entities: pos: 25.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 104 type: solid_wall components: @@ -1200,9 +922,6 @@ entities: pos: 24.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 105 type: solid_wall components: @@ -1210,9 +929,6 @@ entities: pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 106 type: solid_wall components: @@ -1220,9 +936,6 @@ entities: pos: 22.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 107 type: solid_wall components: @@ -1230,9 +943,6 @@ entities: pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 108 type: solid_wall components: @@ -1240,9 +950,6 @@ entities: pos: 20.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 109 type: solid_wall components: @@ -1250,9 +957,6 @@ entities: pos: 19.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 110 type: solid_wall components: @@ -1260,9 +964,6 @@ entities: pos: 18.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 111 type: solid_wall components: @@ -1270,9 +971,6 @@ entities: pos: 18.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 112 type: solid_wall components: @@ -1280,9 +978,6 @@ entities: pos: 18.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 113 type: solid_wall components: @@ -1290,9 +985,6 @@ entities: pos: 18.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 114 type: solid_wall components: @@ -1300,9 +992,6 @@ entities: pos: 18.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 115 type: solid_wall components: @@ -1310,9 +999,6 @@ entities: pos: 18.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 116 type: solid_wall components: @@ -1320,9 +1006,6 @@ entities: pos: 18.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 117 type: solid_wall components: @@ -1330,9 +1013,6 @@ entities: pos: 18.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 118 type: solid_wall components: @@ -1340,9 +1020,6 @@ entities: pos: 17.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 119 type: solid_wall components: @@ -1350,9 +1027,6 @@ entities: pos: 17.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 120 type: solid_wall components: @@ -1360,9 +1034,6 @@ entities: pos: 15.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 121 type: solid_wall components: @@ -1370,9 +1041,6 @@ entities: pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 122 type: solid_wall components: @@ -1380,9 +1048,6 @@ entities: pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 123 type: solid_wall components: @@ -1390,9 +1055,6 @@ entities: pos: 14.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 124 type: solid_wall components: @@ -1400,9 +1062,6 @@ entities: pos: 14.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 125 type: solid_wall components: @@ -1410,9 +1069,6 @@ entities: pos: 15.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 126 type: solid_wall components: @@ -1420,9 +1076,6 @@ entities: pos: 14.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 127 type: solid_wall components: @@ -1430,9 +1083,6 @@ entities: pos: 13.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 128 type: solid_wall components: @@ -1440,9 +1090,6 @@ entities: pos: 12.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 129 type: solid_wall components: @@ -1450,9 +1097,6 @@ entities: pos: 11.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 130 type: solid_wall components: @@ -1460,9 +1104,6 @@ entities: pos: 10.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 131 type: solid_wall components: @@ -1470,9 +1111,6 @@ entities: pos: 8.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 132 type: solid_wall components: @@ -1480,9 +1118,6 @@ entities: pos: 7.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 133 type: solid_wall components: @@ -1490,9 +1125,6 @@ entities: pos: 7.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 134 type: solid_wall components: @@ -1500,9 +1132,6 @@ entities: pos: 7.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 135 type: solid_wall components: @@ -1510,9 +1139,6 @@ entities: pos: 7.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 136 type: solid_wall components: @@ -1520,9 +1146,6 @@ entities: pos: 7.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 137 type: solid_wall components: @@ -1530,9 +1153,6 @@ entities: pos: 4.5,15.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 138 type: solid_wall components: @@ -1540,9 +1160,6 @@ entities: pos: 4.5,16.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 139 type: solid_wall components: @@ -1550,9 +1167,6 @@ entities: pos: 4.5,17.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 140 type: solid_wall components: @@ -1560,9 +1174,6 @@ entities: pos: 4.5,18.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 141 type: solid_wall components: @@ -1570,9 +1181,6 @@ entities: pos: 4.5,19.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 142 type: solid_wall components: @@ -1580,9 +1188,6 @@ entities: pos: 4.5,20.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 143 type: solid_wall components: @@ -1590,9 +1195,6 @@ entities: pos: 4.5,21.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 144 type: solid_wall components: @@ -1600,9 +1202,6 @@ entities: pos: 4.5,22.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 145 type: solid_wall components: @@ -1610,9 +1209,6 @@ entities: pos: 4.5,23.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 146 type: solid_wall components: @@ -1620,9 +1216,6 @@ entities: pos: 4.5,24.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 147 type: LockerChemistry components: @@ -1634,9 +1227,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -1652,9 +1242,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -1670,9 +1257,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -1688,9 +1272,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -1706,9 +1287,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -1724,9 +1302,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -1810,9 +1385,6 @@ entities: pos: 33.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 162 type: Table components: @@ -1820,9 +1392,6 @@ entities: pos: 33.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 163 type: Table components: @@ -1830,9 +1399,6 @@ entities: pos: 33.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 164 type: Table components: @@ -1840,9 +1406,6 @@ entities: pos: 33.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 165 type: Table components: @@ -1850,9 +1413,6 @@ entities: pos: 33.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 166 type: SpawnPointLatejoin components: @@ -1919,9 +1479,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -1935,6 +1492,8 @@ entities: pos: 22.5,-5.5 rot: 1.5707963267948966 rad type: Transform + - deadThreshold: 100 + type: BreakableConstruction - uid: 175 type: MedkitFilled components: @@ -1968,9 +1527,6 @@ entities: pos: 1.5,-3.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Breakable - uid: 178 type: VendingMachineMedical components: @@ -1978,9 +1534,6 @@ entities: pos: 25.5,-5.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Breakable - uid: 179 type: VendingMachineMedical components: @@ -1988,9 +1541,6 @@ entities: pos: 27.5,-5.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Breakable - uid: 180 type: VendingMachineMedical components: @@ -1998,9 +1548,6 @@ entities: pos: 29.5,3.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Breakable - uid: 181 type: LightTube components: @@ -2017,9 +1564,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2042,9 +1586,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2067,9 +1608,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2083,9 +1621,6 @@ entities: pos: 6.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 188 type: solid_wall components: @@ -2093,9 +1628,6 @@ entities: pos: 5.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 189 type: Table components: @@ -2103,9 +1635,6 @@ entities: pos: 24.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 190 type: Table components: @@ -2113,9 +1642,6 @@ entities: pos: 23.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 191 type: LightTube components: @@ -2132,9 +1658,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2157,9 +1680,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2181,9 +1701,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2197,9 +1714,6 @@ entities: pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 198 type: LightTube components: @@ -2216,9 +1730,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2241,9 +1752,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2266,9 +1774,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2282,9 +1787,6 @@ entities: pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 205 type: solid_wall components: @@ -2292,9 +1794,6 @@ entities: pos: 8.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 206 type: Airlock components: @@ -2302,9 +1801,6 @@ entities: pos: 13.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 207 type: Airlock components: @@ -2312,9 +1808,6 @@ entities: pos: 4.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 208 type: Airlock components: @@ -2322,9 +1815,6 @@ entities: pos: 1.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 209 type: Poweredlight components: @@ -2334,9 +1824,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2350,9 +1837,6 @@ entities: pos: 8.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 211 type: Beaker components: @@ -2387,9 +1871,6 @@ entities: pos: 26.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 215 type: AirlockMedicalGlass components: @@ -2397,9 +1878,6 @@ entities: pos: 20.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 216 components: - parent: null @@ -2514,9 +1992,6 @@ entities: pos: -7.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 227 type: solid_wall components: @@ -2524,9 +1999,6 @@ entities: pos: -7.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 228 type: solid_wall components: @@ -2534,9 +2006,6 @@ entities: pos: -7.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 229 type: solid_wall components: @@ -2544,9 +2013,6 @@ entities: pos: -7.5,-2.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 230 type: solid_wall components: @@ -2554,9 +2020,6 @@ entities: pos: -7.5,-3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 231 type: solid_wall components: @@ -2564,9 +2027,6 @@ entities: pos: 0.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 232 type: solid_wall components: @@ -2574,9 +2034,6 @@ entities: pos: -0.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 233 type: solid_wall components: @@ -2584,9 +2041,6 @@ entities: pos: 3.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 234 type: solid_wall components: @@ -2594,9 +2048,6 @@ entities: pos: 4.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 235 type: solid_wall components: @@ -2604,9 +2055,6 @@ entities: pos: -7.5,-10.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 236 type: solid_wall components: @@ -2614,9 +2062,6 @@ entities: pos: -7.5,-11.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 237 type: solid_wall components: @@ -2624,9 +2069,6 @@ entities: pos: -7.5,-12.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 238 type: solid_wall components: @@ -2634,9 +2076,6 @@ entities: pos: -7.5,-13.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 239 type: solid_wall components: @@ -2644,9 +2083,6 @@ entities: pos: 2.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 240 type: solid_wall components: @@ -2654,9 +2090,6 @@ entities: pos: 1.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 241 type: solid_wall components: @@ -2664,9 +2097,6 @@ entities: pos: -1.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 242 type: PoweredSmallLight components: @@ -2676,9 +2106,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2701,9 +2128,6 @@ entities: pos: 16.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 245 type: PoweredSmallLight components: @@ -2713,9 +2137,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -2736,9 +2157,6 @@ entities: pos: 15.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 248 type: solid_wall components: @@ -2746,9 +2164,6 @@ entities: pos: -7.5,-9.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 249 type: solid_wall components: @@ -2756,9 +2171,6 @@ entities: pos: -10.5,-7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 250 type: AirlockEngineering components: @@ -2766,9 +2178,6 @@ entities: pos: -12.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 251 type: solid_wall components: @@ -2776,9 +2185,6 @@ entities: pos: -10.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 252 type: solid_wall components: @@ -2786,9 +2192,6 @@ entities: pos: -10.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 253 type: solid_wall components: @@ -2796,9 +2199,6 @@ entities: pos: -10.5,-3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 254 type: solid_wall components: @@ -2806,9 +2206,6 @@ entities: pos: -10.5,-2.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 255 type: solid_wall components: @@ -2816,9 +2213,6 @@ entities: pos: -10.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 256 type: solid_wall components: @@ -2826,9 +2220,6 @@ entities: pos: -3.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 257 type: solid_wall components: @@ -2836,9 +2227,6 @@ entities: pos: 1.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 258 type: solid_wall components: @@ -2846,9 +2234,6 @@ entities: pos: 0.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 259 type: solid_wall components: @@ -2856,9 +2241,6 @@ entities: pos: -0.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 260 type: solid_wall components: @@ -2866,9 +2248,6 @@ entities: pos: -1.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 261 type: solid_wall components: @@ -2876,9 +2255,6 @@ entities: pos: -2.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 262 type: solid_wall components: @@ -2886,9 +2262,6 @@ entities: pos: -3.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 263 type: solid_wall components: @@ -2896,9 +2269,6 @@ entities: pos: -4.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 264 type: solid_wall components: @@ -2906,9 +2276,6 @@ entities: pos: -5.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 265 type: solid_wall components: @@ -2916,9 +2283,6 @@ entities: pos: -6.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 266 type: solid_wall components: @@ -2926,9 +2290,6 @@ entities: pos: 4.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 267 type: solid_wall components: @@ -2936,9 +2297,6 @@ entities: pos: 5.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 268 type: solid_wall components: @@ -2946,9 +2304,6 @@ entities: pos: 6.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 269 type: solid_wall components: @@ -2956,9 +2311,6 @@ entities: pos: -7.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 270 type: solid_wall components: @@ -2966,9 +2318,6 @@ entities: pos: -2.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 271 type: solid_wall components: @@ -2976,9 +2325,6 @@ entities: pos: -6.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 272 type: solid_wall components: @@ -2986,9 +2332,6 @@ entities: pos: -5.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 273 type: solid_wall components: @@ -2996,9 +2339,6 @@ entities: pos: -4.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 274 type: solid_wall components: @@ -3006,9 +2346,6 @@ entities: pos: 6.5,-10.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 275 type: solid_wall components: @@ -3016,9 +2353,6 @@ entities: pos: 6.5,-11.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 276 type: solid_wall components: @@ -3026,9 +2360,6 @@ entities: pos: 6.5,-12.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 277 type: solid_wall components: @@ -3036,9 +2367,6 @@ entities: pos: 6.5,-13.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 278 type: solid_wall components: @@ -3046,9 +2374,6 @@ entities: pos: 6.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 279 type: solid_wall components: @@ -3056,9 +2381,6 @@ entities: pos: 5.5,-14.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 280 type: solid_wall components: @@ -3066,9 +2388,6 @@ entities: pos: -7.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 281 type: solid_wall components: @@ -3076,9 +2395,6 @@ entities: pos: -7.5,-7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 282 type: solid_wall components: @@ -3086,9 +2402,6 @@ entities: pos: -8.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 283 type: solid_wall components: @@ -3096,9 +2409,6 @@ entities: pos: -9.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 284 type: solid_wall components: @@ -3106,9 +2416,6 @@ entities: pos: -10.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 285 type: solid_wall components: @@ -3116,9 +2423,6 @@ entities: pos: -7.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 286 type: Catwalk components: @@ -3140,9 +2444,6 @@ entities: pos: 5.5,-7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 289 type: solid_wall components: @@ -3150,9 +2451,6 @@ entities: pos: 5.5,-9.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 290 type: solid_wall components: @@ -3160,9 +2458,6 @@ entities: pos: 6.5,-9.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 291 type: solid_wall components: @@ -3170,9 +2465,6 @@ entities: pos: 6.5,-7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 292 type: Catwalk components: @@ -3196,9 +2488,6 @@ entities: pos: 7.5,-9.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 295 type: AirlockExternal components: @@ -3206,9 +2495,6 @@ entities: pos: 7.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 296 type: AirlockExternal components: @@ -3216,9 +2502,6 @@ entities: pos: 5.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 297 type: AirlockEngineering components: @@ -3226,9 +2509,6 @@ entities: pos: -7.5,-6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 298 type: AirlockEngineering components: @@ -3236,9 +2516,6 @@ entities: pos: 3.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 299 type: AirlockEngineering components: @@ -3246,9 +2523,6 @@ entities: pos: 2.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 300 type: solid_wall components: @@ -3256,9 +2530,6 @@ entities: pos: 6.5,-6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 301 type: solid_wall components: @@ -3266,9 +2537,6 @@ entities: pos: 6.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 302 type: Table components: @@ -3276,9 +2544,6 @@ entities: pos: -3.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 303 type: Table components: @@ -3286,9 +2551,6 @@ entities: pos: -2.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 304 type: Table components: @@ -3296,9 +2558,6 @@ entities: pos: -1.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 305 type: Table components: @@ -3306,9 +2565,6 @@ entities: pos: -0.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 306 type: LightTube components: @@ -3327,9 +2583,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container @@ -3343,9 +2596,6 @@ entities: pos: 23.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 309 type: Table components: @@ -3353,9 +2603,6 @@ entities: pos: 23.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 310 type: Catwalk components: @@ -3377,9 +2624,6 @@ entities: pos: 1.5,14.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 313 type: solid_wall components: @@ -3387,9 +2631,6 @@ entities: pos: 1.5,13.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 314 type: solid_wall components: @@ -3397,9 +2638,6 @@ entities: pos: 1.5,12.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 315 type: solid_wall components: @@ -3407,9 +2645,6 @@ entities: pos: -7.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 316 type: solid_wall components: @@ -3417,9 +2652,6 @@ entities: pos: -6.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 317 type: solid_wall components: @@ -3427,9 +2659,6 @@ entities: pos: -5.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 318 type: solid_wall components: @@ -3437,9 +2666,6 @@ entities: pos: -4.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 319 type: solid_wall components: @@ -3447,9 +2673,6 @@ entities: pos: -3.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 320 type: solid_wall components: @@ -3457,9 +2680,6 @@ entities: pos: -2.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 321 type: solid_wall components: @@ -3467,9 +2687,6 @@ entities: pos: -1.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 322 type: solid_wall components: @@ -3477,9 +2694,6 @@ entities: pos: -0.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 323 type: solid_wall components: @@ -3487,9 +2701,6 @@ entities: pos: 0.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 324 type: solid_wall components: @@ -3497,9 +2708,6 @@ entities: pos: 1.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 325 type: solid_wall components: @@ -3507,9 +2715,6 @@ entities: pos: 1.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 326 type: solid_wall components: @@ -3517,9 +2722,6 @@ entities: pos: 4.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 327 type: Catwalk components: @@ -3541,9 +2743,6 @@ entities: pos: 12.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 330 type: solid_wall components: @@ -3551,9 +2750,6 @@ entities: pos: 11.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 331 type: solid_wall components: @@ -3561,9 +2757,6 @@ entities: pos: 10.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 332 type: solid_wall components: @@ -3571,9 +2764,6 @@ entities: pos: 9.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 333 type: solid_wall components: @@ -3581,9 +2771,6 @@ entities: pos: 8.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 334 type: solid_wall components: @@ -3591,9 +2778,6 @@ entities: pos: 7.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 335 type: solid_wall components: @@ -3601,9 +2785,6 @@ entities: pos: 6.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 336 type: solid_wall components: @@ -3611,9 +2792,6 @@ entities: pos: 5.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 337 type: solid_wall components: @@ -3621,9 +2799,6 @@ entities: pos: 4.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 338 type: solid_wall components: @@ -3631,9 +2806,6 @@ entities: pos: 5.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 339 type: solid_wall components: @@ -3641,9 +2813,6 @@ entities: pos: 6.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 340 type: solid_wall components: @@ -3651,9 +2820,6 @@ entities: pos: 7.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 341 type: solid_wall components: @@ -3661,9 +2827,6 @@ entities: pos: 8.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 342 type: solid_wall components: @@ -3671,9 +2834,6 @@ entities: pos: 9.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 343 type: solid_wall components: @@ -3681,9 +2841,6 @@ entities: pos: 10.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 344 type: solid_wall components: @@ -3691,9 +2848,6 @@ entities: pos: 11.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 345 type: solid_wall components: @@ -3701,9 +2855,6 @@ entities: pos: 12.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 346 type: MetalStack components: @@ -3786,9 +2937,6 @@ entities: pos: -3.5,-10.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 356 type: Table components: @@ -3796,9 +2944,6 @@ entities: pos: -2.5,-10.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 357 type: Table components: @@ -3806,9 +2951,6 @@ entities: pos: -1.5,-10.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 358 type: Table components: @@ -3816,9 +2958,6 @@ entities: pos: -0.5,-10.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 359 type: solid_wall components: @@ -3826,9 +2965,6 @@ entities: pos: -7.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 360 type: SpawnPointLatejoin components: @@ -3856,9 +2992,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container @@ -3904,9 +3037,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container @@ -3950,6 +3080,8 @@ entities: - cargo.flashlight - cargo.Medkit type: GalacticMarket + - deadThreshold: 100 + type: BreakableConstruction - uid: 370 type: ComputerSupplyOrdering components: @@ -3962,6 +3094,8 @@ entities: - cargo.flashlight - cargo.Medkit type: GalacticMarket + - deadThreshold: 100 + type: BreakableConstruction - uid: 371 type: Table components: @@ -3969,9 +3103,6 @@ entities: pos: -4.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 372 type: Table components: @@ -3979,9 +3110,6 @@ entities: pos: -1.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 373 type: Table components: @@ -3989,9 +3117,6 @@ entities: pos: -2.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 374 type: Table components: @@ -3999,9 +3124,6 @@ entities: pos: -3.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 375 type: GravityGenerator components: @@ -4009,9 +3131,6 @@ entities: pos: 6.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Breakable - uid: 376 type: Catwalk components: @@ -4033,9 +3152,6 @@ entities: pos: 13.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 379 type: solid_wall components: @@ -4043,9 +3159,6 @@ entities: pos: 14.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 380 type: solid_wall components: @@ -4053,9 +3166,6 @@ entities: pos: 13.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 381 type: solid_wall components: @@ -4063,9 +3173,6 @@ entities: pos: 13.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 382 type: solid_wall components: @@ -4073,9 +3180,6 @@ entities: pos: 13.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 383 type: PowerCellSmallStandard components: @@ -4181,11 +3285,8 @@ entities: pos: -11.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Breakable - uid: 398 - type: CableStack1 + type: ApcExtensionCableStack1 components: - parent: 216 pos: 10.561831,21.767809 @@ -4199,9 +3300,6 @@ entities: pos: 13.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 400 type: solid_wall components: @@ -4209,9 +3307,6 @@ entities: pos: 13.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 401 type: GlassStack components: @@ -4227,9 +3322,6 @@ entities: pos: -6.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 403 type: Table components: @@ -4237,9 +3329,6 @@ entities: pos: -5.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 404 type: Table components: @@ -4247,9 +3336,6 @@ entities: pos: -4.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 405 type: Table components: @@ -4257,9 +3343,6 @@ entities: pos: -3.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 406 type: Table components: @@ -4267,9 +3350,6 @@ entities: pos: -2.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 407 type: Table components: @@ -4277,9 +3357,6 @@ entities: pos: -1.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 408 type: Table components: @@ -4287,9 +3364,6 @@ entities: pos: -0.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 409 type: Table components: @@ -4297,9 +3371,6 @@ entities: pos: 0.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 410 type: Table components: @@ -4307,9 +3378,6 @@ entities: pos: 1.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 411 type: Table components: @@ -4317,9 +3385,6 @@ entities: pos: -4.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 412 type: Table components: @@ -4327,9 +3392,6 @@ entities: pos: -3.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 413 type: Table components: @@ -4337,9 +3399,6 @@ entities: pos: -2.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 414 type: Table components: @@ -4347,9 +3406,6 @@ entities: pos: -1.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 415 type: Table components: @@ -4357,9 +3413,6 @@ entities: pos: -0.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 416 type: AirlockMedicalGlass components: @@ -4367,9 +3420,6 @@ entities: pos: 26.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 417 type: AirlockMedicalGlass components: @@ -4377,9 +3427,6 @@ entities: pos: 28.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 418 type: Catwalk components: @@ -4394,9 +3441,6 @@ entities: pos: 13.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 420 type: solid_wall components: @@ -4404,9 +3448,6 @@ entities: pos: 25.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 421 type: solid_wall components: @@ -4414,9 +3455,6 @@ entities: pos: 23.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 422 type: solid_wall components: @@ -4424,9 +3462,6 @@ entities: pos: 17.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 423 type: solid_wall components: @@ -4434,9 +3469,6 @@ entities: pos: -10.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 424 type: solid_wall components: @@ -4444,9 +3476,6 @@ entities: pos: -10.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 425 type: Airlock components: @@ -4454,9 +3483,6 @@ entities: pos: -9.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 426 type: LightTube components: @@ -4473,9 +3499,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -4489,9 +3512,6 @@ entities: pos: -3.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 429 type: ChairOfficeDark components: @@ -4499,9 +3519,6 @@ entities: pos: 0.5,-6.5 rot: 1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 430 type: Poweredlight components: @@ -4511,9 +3528,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -4536,9 +3550,6 @@ entities: pos: -1.5,-9.5 rot: 1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 433 type: ChairOfficeLight components: @@ -4546,9 +3557,6 @@ entities: pos: -3.5,-2.5 rot: 1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 434 type: ChairOfficeLight components: @@ -4556,9 +3564,6 @@ entities: pos: -2.5,-2.5 rot: 1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 435 type: ChairOfficeLight components: @@ -4566,9 +3571,6 @@ entities: pos: -2.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 436 type: Stool components: @@ -4576,9 +3578,6 @@ entities: pos: -2.5,-6.5 rot: 1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 437 type: LightBulb components: @@ -4597,9 +3596,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -4611,9 +3607,6 @@ entities: pos: 18.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 440 type: solid_wall components: @@ -4621,9 +3614,6 @@ entities: pos: 19.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 441 type: solid_wall components: @@ -4631,9 +3621,6 @@ entities: pos: 21.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 442 type: solid_wall components: @@ -4641,9 +3628,6 @@ entities: pos: 22.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 443 type: solid_wall components: @@ -4651,9 +3635,6 @@ entities: pos: 22.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 444 type: solid_wall components: @@ -4661,9 +3642,6 @@ entities: pos: 22.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 445 type: solid_wall components: @@ -4671,9 +3649,6 @@ entities: pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 446 type: solid_wall components: @@ -4681,9 +3656,6 @@ entities: pos: 22.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 447 type: solid_wall components: @@ -4691,9 +3663,6 @@ entities: pos: 22.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 448 type: solid_wall components: @@ -4701,9 +3670,6 @@ entities: pos: 22.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 449 type: solid_wall components: @@ -4711,9 +3677,6 @@ entities: pos: 21.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 450 type: solid_wall components: @@ -4721,9 +3684,6 @@ entities: pos: 22.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 451 type: LargeBeaker components: @@ -4831,9 +3791,6 @@ entities: pos: 4.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 466 type: PoweredSmallLight components: @@ -4842,9 +3799,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -4858,9 +3812,6 @@ entities: pos: 7.5,-7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 468 type: ToolboxElectricalFilled components: @@ -5108,9 +4059,6 @@ entities: pos: -10.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 487 type: solid_wall components: @@ -5118,9 +4066,6 @@ entities: pos: -11.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 488 type: solid_wall components: @@ -5128,9 +4073,6 @@ entities: pos: -10.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 489 type: solid_wall components: @@ -5138,9 +4080,6 @@ entities: pos: -9.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 490 type: solid_wall components: @@ -5148,9 +4087,6 @@ entities: pos: -8.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 491 type: solid_wall components: @@ -5158,9 +4094,6 @@ entities: pos: -7.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 492 type: solid_wall components: @@ -5168,9 +4101,6 @@ entities: pos: -8.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 493 type: solid_wall components: @@ -5178,9 +4108,6 @@ entities: pos: -5.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 494 type: solid_wall components: @@ -5188,9 +4115,6 @@ entities: pos: -6.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 495 type: solid_wall components: @@ -5198,9 +4122,6 @@ entities: pos: -7.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 496 type: solid_wall components: @@ -5208,9 +4129,6 @@ entities: pos: -0.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 497 type: solid_wall components: @@ -5218,9 +4136,6 @@ entities: pos: 0.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 498 type: solid_wall components: @@ -5228,9 +4143,6 @@ entities: pos: 1.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 499 type: solid_wall components: @@ -5238,9 +4150,6 @@ entities: pos: 1.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 500 type: solid_wall components: @@ -5248,9 +4157,6 @@ entities: pos: 1.5,-3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 501 type: solid_wall components: @@ -5258,9 +4164,6 @@ entities: pos: 4.5,-3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 502 type: WardrobeScience components: @@ -5272,9 +4175,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -5286,9 +4186,6 @@ entities: pos: 4.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 504 type: solid_wall components: @@ -5296,9 +4193,6 @@ entities: pos: 4.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 505 type: solid_wall components: @@ -5306,9 +4200,6 @@ entities: pos: 4.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 506 type: solid_wall components: @@ -5316,9 +4207,6 @@ entities: pos: 4.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 507 type: solid_wall components: @@ -5326,9 +4214,6 @@ entities: pos: 4.5,2.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 508 type: solid_wall components: @@ -5336,9 +4221,6 @@ entities: pos: 4.5,3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 509 type: solid_wall components: @@ -5346,9 +4228,6 @@ entities: pos: 4.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 510 type: solid_wall components: @@ -5356,9 +4235,6 @@ entities: pos: 4.5,5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 511 type: solid_wall components: @@ -5366,9 +4242,6 @@ entities: pos: 4.5,6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 512 type: solid_wall components: @@ -5376,9 +4249,6 @@ entities: pos: 4.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 513 type: solid_wall components: @@ -5386,9 +4256,6 @@ entities: pos: 4.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 514 type: solid_wall components: @@ -5396,9 +4263,6 @@ entities: pos: 1.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 515 type: solid_wall components: @@ -5406,9 +4270,6 @@ entities: pos: 0.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 516 type: solid_wall components: @@ -5416,9 +4277,6 @@ entities: pos: -0.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 517 type: solid_wall components: @@ -5426,9 +4284,6 @@ entities: pos: -1.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 518 type: solid_wall components: @@ -5436,9 +4291,6 @@ entities: pos: -2.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 519 type: solid_wall components: @@ -5446,9 +4298,6 @@ entities: pos: -3.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 520 type: solid_wall components: @@ -5456,9 +4305,6 @@ entities: pos: -4.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 521 type: solid_wall components: @@ -5466,9 +4312,6 @@ entities: pos: -5.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 522 type: solid_wall components: @@ -5476,9 +4319,6 @@ entities: pos: -6.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 523 type: solid_wall components: @@ -5486,9 +4326,6 @@ entities: pos: -7.5,8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 524 type: solid_wall components: @@ -5496,9 +4333,6 @@ entities: pos: -7.5,7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 525 type: solid_wall components: @@ -5506,9 +4340,6 @@ entities: pos: -7.5,6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 526 type: solid_wall components: @@ -5516,9 +4347,6 @@ entities: pos: -7.5,5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 527 type: GlovesLeather components: @@ -5573,9 +4401,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -5598,9 +4423,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -5629,9 +4451,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -5652,9 +4471,6 @@ entities: pos: -15.5,2.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 540 type: solid_wall components: @@ -5662,9 +4478,6 @@ entities: pos: -15.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 541 type: solid_wall components: @@ -5672,9 +4485,6 @@ entities: pos: -15.5,3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 542 type: solid_wall components: @@ -5682,9 +4492,6 @@ entities: pos: -14.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 543 type: solid_wall components: @@ -5692,9 +4499,6 @@ entities: pos: -12.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 544 type: solid_wall components: @@ -5702,9 +4506,6 @@ entities: pos: -15.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 545 type: solid_wall components: @@ -5712,9 +4513,6 @@ entities: pos: -14.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 546 type: solid_wall components: @@ -5722,9 +4520,6 @@ entities: pos: -11.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 547 type: solid_wall components: @@ -5732,9 +4527,6 @@ entities: pos: -14.5,5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 548 type: solid_wall components: @@ -5742,9 +4534,6 @@ entities: pos: -14.5,6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 549 type: solid_wall components: @@ -5752,9 +4541,6 @@ entities: pos: -12.5,6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 550 type: solid_wall components: @@ -5762,9 +4548,6 @@ entities: pos: -12.5,5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 551 type: solid_wall components: @@ -5772,9 +4555,6 @@ entities: pos: -16.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 552 type: solid_wall components: @@ -5782,9 +4562,6 @@ entities: pos: -16.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 553 type: solid_wall components: @@ -5792,9 +4569,6 @@ entities: pos: -16.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 554 type: solid_wall components: @@ -5802,9 +4576,6 @@ entities: pos: -16.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 555 type: solid_wall components: @@ -5812,9 +4583,6 @@ entities: pos: -16.5,-2.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 556 type: solid_wall components: @@ -5822,9 +4590,6 @@ entities: pos: -16.5,-3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 557 type: solid_wall components: @@ -5832,9 +4597,6 @@ entities: pos: -16.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 558 type: solid_wall components: @@ -5842,9 +4604,6 @@ entities: pos: -16.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 559 type: solid_wall components: @@ -5852,9 +4611,6 @@ entities: pos: -16.5,-6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 560 type: solid_wall components: @@ -5862,9 +4618,6 @@ entities: pos: -16.5,-7.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 561 type: solid_wall components: @@ -5872,9 +4625,6 @@ entities: pos: -16.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 562 type: solid_wall components: @@ -5882,9 +4632,6 @@ entities: pos: -15.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 563 type: solid_wall components: @@ -5892,9 +4639,6 @@ entities: pos: -14.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 564 type: solid_wall components: @@ -5902,9 +4646,6 @@ entities: pos: -13.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 565 type: solid_wall components: @@ -5912,9 +4653,6 @@ entities: pos: -12.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 566 type: solid_wall components: @@ -5922,9 +4660,6 @@ entities: pos: -11.5,-8.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 567 type: AirlockExternal components: @@ -5932,9 +4667,6 @@ entities: pos: -13.5,4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 568 type: AirlockExternal components: @@ -5942,9 +4674,6 @@ entities: pos: -13.5,6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 569 type: AirlockEngineering components: @@ -5952,9 +4681,6 @@ entities: pos: -13.5,1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 570 type: Table components: @@ -5962,9 +4688,6 @@ entities: pos: -15.5,-5.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 571 type: Table components: @@ -5972,9 +4695,6 @@ entities: pos: -15.5,-1.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 572 type: solid_wall components: @@ -5982,9 +4702,6 @@ entities: pos: 23.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 573 type: solid_wall components: @@ -5992,9 +4709,6 @@ entities: pos: 24.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 574 type: solid_wall components: @@ -6002,9 +4716,6 @@ entities: pos: 25.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 575 type: Table components: @@ -6012,9 +4723,6 @@ entities: pos: -15.5,-0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 576 type: Catwalk components: @@ -6047,9 +4755,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -6065,9 +4770,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -6083,9 +4785,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -6101,9 +4800,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -6119,9 +4815,6 @@ entities: type: Collidable - IsPlaceable: False type: PlaceableSurface - - flags: - - None - type: Destructible - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container @@ -6142,9 +4835,6 @@ entities: pos: -10.5,-6.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 586 type: Autolathe components: @@ -6217,9 +4907,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6242,9 +4929,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6266,9 +4950,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6290,9 +4971,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6314,9 +4992,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6339,9 +5014,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6356,7 +5028,7 @@ entities: - anchored: False type: Collidable - uid: 601 - type: CableStack1 + type: ApcExtensionCableStack1 components: - parent: 216 pos: -15.5,-0.5 @@ -6365,7 +5037,7 @@ entities: - anchored: False type: Collidable - uid: 602 - type: CableStack1 + type: ApcExtensionCableStack1 components: - parent: 216 pos: -15.5,-0.5 @@ -6380,9 +5052,6 @@ entities: pos: 26.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 604 type: solid_wall components: @@ -6390,9 +5059,6 @@ entities: pos: 27.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 605 type: Catwalk components: @@ -6416,9 +5082,6 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight - - flags: - - None - type: Destructible - containers: light_bulb: entities: @@ -6457,9 +5120,6 @@ entities: pos: 7.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 612 type: solid_wall components: @@ -6467,9 +5127,6 @@ entities: pos: 8.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 613 type: solid_wall components: @@ -6477,9 +5134,6 @@ entities: pos: 28.5,11.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 614 type: solid_wall components: @@ -6487,9 +5141,6 @@ entities: pos: 28.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 615 type: solid_wall components: @@ -6497,9 +5148,6 @@ entities: pos: 28.5,9.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 616 type: solid_wall components: @@ -6507,9 +5155,6 @@ entities: pos: 28.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 617 type: solid_wall components: @@ -6517,9 +5162,6 @@ entities: pos: 28.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 618 type: solid_wall components: @@ -6527,9 +5169,6 @@ entities: pos: 28.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 619 type: solid_wall components: @@ -6537,9 +5176,6 @@ entities: pos: 28.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 620 type: solid_wall components: @@ -6547,9 +5183,6 @@ entities: pos: 26.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 621 type: solid_wall components: @@ -6557,9 +5190,6 @@ entities: pos: 26.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 622 type: solid_wall components: @@ -6567,9 +5197,6 @@ entities: pos: 25.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 623 type: solid_wall components: @@ -6577,9 +5204,6 @@ entities: pos: 26.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 624 type: solid_wall components: @@ -6587,9 +5211,6 @@ entities: pos: 27.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 625 type: Table components: @@ -6597,9 +5218,6 @@ entities: pos: -15.5,-4.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 626 type: Table components: @@ -6607,9 +5225,6 @@ entities: pos: -15.5,-3.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 627 type: Table components: @@ -6617,11 +5232,8 @@ entities: pos: -15.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Destructible - uid: 628 - type: CableStack1 + type: ApcExtensionCableStack1 components: - parent: 216 pos: -15.5,0.5 @@ -6630,7 +5242,7 @@ entities: - anchored: False type: Collidable - uid: 629 - type: CableStack1 + type: ApcExtensionCableStack1 components: - parent: 216 pos: -15.5,0.5 @@ -6672,9 +5284,6 @@ entities: pos: -11.5,0.5 rot: -1.5707963267949 rad type: Transform - - flags: - - None - type: Breakable - uid: 634 type: Table components: @@ -6682,9 +5291,6 @@ entities: pos: 18.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 635 type: Table components: @@ -6692,9 +5298,6 @@ entities: pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 636 type: Table components: @@ -6702,9 +5305,6 @@ entities: pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 637 type: Table components: @@ -6712,9 +5312,6 @@ entities: pos: 18.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 638 type: Table components: @@ -6722,9 +5319,6 @@ entities: pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 639 type: Table components: @@ -6732,9 +5326,6 @@ entities: pos: 18.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 640 type: Table components: @@ -6742,9 +5333,6 @@ entities: pos: 22.5,8.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 641 type: Table components: @@ -6752,9 +5340,6 @@ entities: pos: 24.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 642 type: ChairOfficeLight components: @@ -6762,9 +5347,6 @@ entities: pos: 19.5,4.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - uid: 643 type: ChairOfficeLight components: @@ -6772,9 +5354,6 @@ entities: pos: 20.5,5.5 rot: 1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 644 type: ChairOfficeLight components: @@ -6782,9 +5361,6 @@ entities: pos: 23.5,8.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - uid: 645 type: ChairOfficeLight components: @@ -6792,36 +5368,24 @@ entities: pos: 24.5,5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 646 type: Chair components: - parent: 216 pos: 14.5,6.5 type: Transform - - flags: - - None - type: Destructible - uid: 647 type: Chair components: - parent: 216 pos: 14.5,8.5 type: Transform - - flags: - - None - type: Destructible - uid: 648 type: Chair components: - parent: 216 pos: 14.5,7.5 type: Transform - - flags: - - None - type: Destructible - uid: 649 type: chem_dispenser components: @@ -6839,9 +5403,6 @@ entities: pos: 23.5,7.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 651 type: Catwalk components: @@ -6856,9 +5417,6 @@ entities: pos: 25.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 653 type: Table components: @@ -6866,9 +5424,6 @@ entities: pos: 23.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 654 type: Table components: @@ -6876,9 +5431,6 @@ entities: pos: 24.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 655 type: Table components: @@ -6886,9 +5438,6 @@ entities: pos: 26.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 656 type: Table components: @@ -6896,9 +5445,6 @@ entities: pos: 27.5,10.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 657 type: ComputerMedicalRecords components: @@ -6906,6 +5452,8 @@ entities: pos: 21.5,5.5 rot: 3.141592653589793 rad type: Transform + - deadThreshold: 100 + type: BreakableConstruction - uid: 658 type: MedicalScanner components: @@ -6913,9 +5461,6 @@ entities: pos: 18.5,-1.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - containers: MedicalScanner-bodyContainer: type: Content.Server.GameObjects.ContainerSlot @@ -6927,9 +5472,6 @@ entities: pos: 18.5,-5.5 rot: 3.141592653589793 rad type: Transform - - flags: - - None - type: Destructible - containers: MedicalScanner-bodyContainer: type: Content.Server.GameObjects.ContainerSlot @@ -6941,9 +5483,6 @@ entities: pos: 13.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 661 type: Table components: @@ -6951,9 +5490,6 @@ entities: pos: 13.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 662 type: Table components: @@ -6961,9 +5497,6 @@ entities: pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 663 type: solid_wall components: @@ -6971,9 +5504,6 @@ entities: pos: 22.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 664 type: solid_wall components: @@ -6981,9 +5511,6 @@ entities: pos: 17.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 665 type: solid_wall components: @@ -6991,9 +5518,6 @@ entities: pos: 18.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 666 type: solid_wall components: @@ -7001,9 +5525,6 @@ entities: pos: 20.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 667 type: solid_wall components: @@ -7011,9 +5532,6 @@ entities: pos: 21.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 668 type: solid_wall components: @@ -7021,9 +5539,6 @@ entities: pos: 19.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 669 type: solid_wall components: @@ -7031,9 +5546,6 @@ entities: pos: 14.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 670 type: solid_wall components: @@ -7041,9 +5553,6 @@ entities: pos: 13.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 671 type: solid_wall components: @@ -7051,9 +5560,6 @@ entities: pos: 12.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 672 type: solid_wall components: @@ -7061,9 +5567,6 @@ entities: pos: 12.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 673 type: solid_wall components: @@ -7071,9 +5574,6 @@ entities: pos: 12.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 674 type: solid_wall components: @@ -7081,9 +5581,6 @@ entities: pos: 12.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 675 type: solid_wall components: @@ -7091,9 +5588,6 @@ entities: pos: 12.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 676 type: solid_wall components: @@ -7101,9 +5595,6 @@ entities: pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 677 type: solid_wall components: @@ -7111,9 +5602,6 @@ entities: pos: 14.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 678 type: solid_wall components: @@ -7121,9 +5609,6 @@ entities: pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 679 type: solid_wall components: @@ -7131,9 +5616,6 @@ entities: pos: 13.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 680 type: solid_wall components: @@ -7141,9 +5623,6 @@ entities: pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 681 type: solid_wall components: @@ -7151,9 +5630,6 @@ entities: pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 682 type: solid_wall components: @@ -7161,9 +5637,6 @@ entities: pos: 13.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 683 type: solid_wall components: @@ -7171,9 +5644,6 @@ entities: pos: 13.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 684 type: solid_wall components: @@ -7181,9 +5651,6 @@ entities: pos: 14.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 685 type: solid_wall components: @@ -7191,9 +5658,6 @@ entities: pos: 15.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 686 type: solid_wall components: @@ -7201,9 +5665,6 @@ entities: pos: 16.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 687 type: solid_wall components: @@ -7211,9 +5672,6 @@ entities: pos: 17.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 688 type: solid_wall components: @@ -7221,9 +5679,6 @@ entities: pos: 18.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 689 type: solid_wall components: @@ -7231,9 +5686,6 @@ entities: pos: 19.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 690 type: solid_wall components: @@ -7241,9 +5693,6 @@ entities: pos: 20.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 691 type: solid_wall components: @@ -7251,9 +5700,6 @@ entities: pos: 21.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 692 type: solid_wall components: @@ -7261,9 +5707,6 @@ entities: pos: 22.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 693 type: solid_wall components: @@ -7271,9 +5714,6 @@ entities: pos: 23.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 694 type: solid_wall components: @@ -7281,9 +5721,6 @@ entities: pos: 24.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 695 type: solid_wall components: @@ -7291,9 +5728,6 @@ entities: pos: 25.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 696 type: solid_wall components: @@ -7301,9 +5735,6 @@ entities: pos: 26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 697 type: solid_wall components: @@ -7311,9 +5742,6 @@ entities: pos: 26.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 698 type: solid_wall components: @@ -7321,9 +5749,6 @@ entities: pos: 26.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 699 type: solid_wall components: @@ -7331,9 +5756,6 @@ entities: pos: 27.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 700 type: solid_wall components: @@ -7341,9 +5763,6 @@ entities: pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 701 type: solid_wall components: @@ -7351,9 +5770,6 @@ entities: pos: 29.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 702 type: solid_wall components: @@ -7361,9 +5777,6 @@ entities: pos: 30.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 703 type: solid_wall components: @@ -7371,9 +5784,6 @@ entities: pos: 31.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 704 type: solid_wall components: @@ -7381,9 +5791,6 @@ entities: pos: 32.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 705 type: solid_wall components: @@ -7391,9 +5798,6 @@ entities: pos: 33.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 706 type: solid_wall components: @@ -7401,9 +5805,6 @@ entities: pos: 34.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 707 type: solid_wall components: @@ -7411,9 +5812,6 @@ entities: pos: 34.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 708 type: solid_wall components: @@ -7421,9 +5819,6 @@ entities: pos: 34.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 709 type: solid_wall components: @@ -7431,9 +5826,6 @@ entities: pos: 34.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 710 type: solid_wall components: @@ -7441,9 +5833,6 @@ entities: pos: 34.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 711 type: solid_wall components: @@ -7451,9 +5840,6 @@ entities: pos: 34.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 712 type: solid_wall components: @@ -7461,9 +5847,6 @@ entities: pos: 34.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 713 type: solid_wall components: @@ -7471,9 +5854,6 @@ entities: pos: 33.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 714 type: solid_wall components: @@ -7481,9 +5861,6 @@ entities: pos: 32.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 715 type: solid_wall components: @@ -7491,9 +5868,6 @@ entities: pos: 31.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 716 type: solid_wall components: @@ -7501,9 +5875,6 @@ entities: pos: 30.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 717 type: solid_wall components: @@ -7511,9 +5882,6 @@ entities: pos: 29.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 718 type: solid_wall components: @@ -7521,9 +5889,6 @@ entities: pos: 30.5,0.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 719 type: solid_wall components: @@ -7531,9 +5896,6 @@ entities: pos: 30.5,1.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 720 type: solid_wall components: @@ -7541,9 +5903,6 @@ entities: pos: 30.5,2.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 721 type: solid_wall components: @@ -7551,9 +5910,6 @@ entities: pos: 30.5,3.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 722 type: solid_wall components: @@ -7561,9 +5917,6 @@ entities: pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 723 type: solid_wall components: @@ -7571,9 +5924,6 @@ entities: pos: 29.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 724 type: solid_wall components: @@ -7581,9 +5931,6 @@ entities: pos: 28.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible - uid: 725 type: solid_wall components: @@ -7591,7 +5938,4 @@ entities: pos: 27.5,4.5 rot: -1.5707963267948966 rad type: Transform - - flags: - - None - type: Destructible ... diff --git a/Resources/Prototypes/Catalog/Fills/crate.yml b/Resources/Prototypes/Catalog/Fills/crate.yml index 9bc3d24ea5..1ad1159e74 100644 --- a/Resources/Prototypes/Catalog/Fills/crate.yml +++ b/Resources/Prototypes/Catalog/Fills/crate.yml @@ -92,4 +92,4 @@ components: - type: StorageFill contents: - - name: CableStack1 + - name: ApcExtensionCableStack1 diff --git a/Resources/Prototypes/Catalog/LatheRecipes/sheet.yml b/Resources/Prototypes/Catalog/LatheRecipes/sheet.yml index ae279888d0..90916bc1c8 100644 --- a/Resources/Prototypes/Catalog/LatheRecipes/sheet.yml +++ b/Resources/Prototypes/Catalog/LatheRecipes/sheet.yml @@ -1,6 +1,6 @@ - type: latheRecipe id: MetalStack - icon: Objects/Materials/materials.rsi/sheet_metal.png + icon: Objects/Materials/sheets.rsi/metal.png result: SteelSheet1 completetime: 500 materials: @@ -8,7 +8,7 @@ - type: latheRecipe id: GlassStack - icon: Objects/Materials/materials.rsi/sheet_glass.png + icon: Objects/Materials/sheets.rsi/glass.png result: GlassSheet1 completetime: 500 materials: diff --git a/Resources/Prototypes/Catalog/LatheRecipes/tools.yml b/Resources/Prototypes/Catalog/LatheRecipes/tools.yml index c9abbfc02f..3edc7ec351 100644 --- a/Resources/Prototypes/Catalog/LatheRecipes/tools.yml +++ b/Resources/Prototypes/Catalog/LatheRecipes/tools.yml @@ -39,8 +39,8 @@ - type: latheRecipe id: CableStack name: cable coil - icon: Objects/Tools/cable_coil.png - result: CableStack1 + icon: /Textures/Objects/Tools/cables.rsi/coil-30.png + result: ApcExtensionCableStack1 completetime: 500 materials: steel: 50 diff --git a/Resources/Prototypes/Catalog/VendingMachines/youtool.yml b/Resources/Prototypes/Catalog/VendingMachines/youtool.yml index 25e0c9f951..c461843f54 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/youtool.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/youtool.yml @@ -5,7 +5,7 @@ animationDuration: 1.1 spriteName: youtool startingInventory: - CableStack1: 10 + ApcExtensionCableStack1: 10 Crowbar: 5 Welder: 3 Wirecutter: 5 diff --git a/Resources/Prototypes/Catalog/cargo_products.yml b/Resources/Prototypes/Catalog/cargo_products.yml index dabcd52877..6a0c13c19a 100644 --- a/Resources/Prototypes/Catalog/cargo_products.yml +++ b/Resources/Prototypes/Catalog/cargo_products.yml @@ -116,7 +116,7 @@ name: "glass crate" id: cargo.glass description: "50 sheets of glass." - icon: Objects/Materials/sheet_glass.png + icon: Objects/Materials/sheets.rsi/glass.png product: CrateGlass cost: 50 category: Engineering @@ -126,7 +126,7 @@ name: "cable crate" id: cargo.cable description: "50 coils of cable." - icon: Objects/Tools/cable_coil.png + icon: /Textures/Objects/Tools/cables.rsi/coil-30.png product: CrateCable cost: 50 category: Engineering diff --git a/Resources/Prototypes/Entities/Constructible/Furniture/storage.yml b/Resources/Prototypes/Entities/Constructible/Furniture/storage.yml index dd89159891..efbd7f979d 100644 --- a/Resources/Prototypes/Entities/Constructible/Furniture/storage.yml +++ b/Resources/Prototypes/Entities/Constructible/Furniture/storage.yml @@ -21,7 +21,7 @@ - type: Destructible deadThreshold: 30 destroySound: /Audio/Effects/metalbreak.ogg - spawnOnDestroy: MetalSheet1 + spawnOnDestroy: SteelSheet1 resistances: metallicResistances - type: entity @@ -47,5 +47,5 @@ - type: Destructible deadThreshold: 30 destroySound: /Audio/Effects/metalbreak.ogg - spawnOnDestroy: MetalSheet1 + spawnOnDestroy: SteelSheet1 resistances: metallicResistances diff --git a/Resources/Prototypes/Entities/Constructible/Power/AME/ame_structure.yml b/Resources/Prototypes/Entities/Constructible/Power/AME/ame_structure.yml index 1d96a45042..eaa9fafe2c 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/AME/ame_structure.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/AME/ame_structure.yml @@ -24,7 +24,7 @@ - type: Destructible maxHP: 500 resistances: metallicResistances - spawnondestroy: AMEPart + spawnOnDestroy: AMEPart - type: SnapGrid offset: Center - type: Airtight diff --git a/Resources/Prototypes/Entities/Constructible/Power/chem_master.yml b/Resources/Prototypes/Entities/Constructible/Power/chem_master.yml index e232174202..eb6a4e6ac3 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/chem_master.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/chem_master.yml @@ -26,7 +26,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: true @@ -67,7 +66,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: true @@ -75,7 +73,7 @@ offset: Center - type: Destructible deadThreshold: 25 - spawnOnDestroy: MetalSheet1 + spawnOnDestroy: SteelSheet1 - type: UserInterface interfaces: - key: enum.ChemMasterUiKey.Key diff --git a/Resources/Prototypes/Entities/Constructible/Power/cloning_machine.yml b/Resources/Prototypes/Entities/Constructible/Power/cloning_machine.yml index 23a7f6623d..21a6d90854 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/cloning_machine.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/cloning_machine.yml @@ -23,7 +23,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: true diff --git a/Resources/Prototypes/Entities/Constructible/Power/computers.yml b/Resources/Prototypes/Entities/Constructible/Power/computers.yml index de8e629ee4..fb9b3315b0 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/computers.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/computers.yml @@ -1,15 +1,76 @@ - type: entity + id: ComputerFrame + name: computer frame + components: + - type: Collidable + mass: 25 + anchored: false + shapes: + - !type:PhysShapeAabb + bounds: "-0.5,-0.25,0.5,0.25" + layer: + - Impassable + - MobImpassable + - VaultImpassable + - Opaque + mask: + - Impassable + - MobImpassable + - VaultImpassable + - type: Clickable + - type: InteractionOutline + - type: Anchorable + - type: Construction + graph: computer + node: frameUnsecured + - type: Sprite + sprite: "Constructible/Misc/stock_parts.rsi" + state: "0" + +- type: entity + id: ComputerBroken + name: broken computer + description: This computer has seen better days. + abstract: true # We don't want this to show up in the entity spawner menu. + components: + - type: Collidable + mass: 25 + anchored: true + shapes: + - !type:PhysShapeAabb + bounds: "-0.5,-0.25,0.5,0.25" + layer: + - Impassable + - MobImpassable + - VaultImpassable + - Opaque + mask: + - Impassable + - MobImpassable + - VaultImpassable + - type: Clickable + - type: InteractionOutline + - type: Anchorable + - type: Construction + graph: computer + node: monitorBroken + - type: Sprite + sprite: "Constructible/Power/computers.rsi" + state: "broken" + +- type: entity id: ComputerBase name: computer abstract: true components: - - type: Physics - mass: 25 - anchored: true - type: Clickable - type: InteractionOutline + - type: Construction + graph: computer + node: computer - type: Collidable - IsScrapingFloor: true + mass: 25 + anchored: true shapes: - !type:PhysShapeAabb bounds: "-0.5,-0.25,0.5,0.25" @@ -22,10 +83,11 @@ - Impassable - MobImpassable - VaultImpassable - - type: Computer - type: PowerReceiver - type: Anchorable + - type: BreakableConstruction + node: monitorBroken - type: Sprite sprite: Constructible/Power/computers.rsi diff --git a/Resources/Prototypes/Entities/Constructible/Power/lathe.yml b/Resources/Prototypes/Entities/Constructible/Power/lathe.yml index 1d2323705b..c4f3f78934 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/lathe.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/lathe.yml @@ -14,7 +14,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: true @@ -68,7 +67,7 @@ - Screwdriver - Welder - Wrench - - CableStack1 + - CableStack - Crowbar - Multitool - type: Appearance @@ -116,7 +115,7 @@ - Screwdriver - Welder - Wrench - - CableStack1 + - CableStack - Crowbar - Multitool - type: UserInterface diff --git a/Resources/Prototypes/Entities/Constructible/Power/medical_scanner.yml b/Resources/Prototypes/Entities/Constructible/Power/medical_scanner.yml index 2445b86910..6c348d0578 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/medical_scanner.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/medical_scanner.yml @@ -25,7 +25,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: true diff --git a/Resources/Prototypes/Entities/Constructible/Power/microwave.yml b/Resources/Prototypes/Entities/Constructible/Power/microwave.yml index d378acd7f9..cddf073c59 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/microwave.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/microwave.yml @@ -30,7 +30,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Sprite netsync: false sprite: Constructible/Power/microwave.rsi diff --git a/Resources/Prototypes/Entities/Constructible/Power/reagent_dispenser_base.yml b/Resources/Prototypes/Entities/Constructible/Power/reagent_dispenser_base.yml index c4181eca5f..600da7b70e 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/reagent_dispenser_base.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/reagent_dispenser_base.yml @@ -14,7 +14,6 @@ - Impassable - MobImpassable - VaultImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: true diff --git a/Resources/Prototypes/Entities/Constructible/Power/wires.yml b/Resources/Prototypes/Entities/Constructible/Power/wires.yml index 187a2a5f6a..e6253d3c07 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/wires.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/wires.yml @@ -42,7 +42,7 @@ wireType: HighVoltage - type: Destructible resistances: metallicResistances - spawnondestroy: HVWireStack1 + spawnOnDestroy: HVWireStack1 - type: entity parent: WireBase @@ -69,7 +69,7 @@ wireType: MediumVoltage - type: Destructible resistances: metallicResistances - spawnondestroy: MVWireStack1 + spawnOnDestroy: MVWireStack1 - type: entity parent: WireBase @@ -98,4 +98,4 @@ wireType: Apc - type: Destructible resistances: metallicResistances - spawnondestroy: ApcExtensionCableStack1 + spawnOnDestroy: ApcExtensionCableStack1 diff --git a/Resources/Prototypes/Entities/Constructible/Storage/Closets/closet.yml b/Resources/Prototypes/Entities/Constructible/Storage/Closets/closet.yml index db66f57b5a..d86f2e2f2c 100644 --- a/Resources/Prototypes/Entities/Constructible/Storage/Closets/closet.yml +++ b/Resources/Prototypes/Entities/Constructible/Storage/Closets/closet.yml @@ -33,7 +33,6 @@ - MobImpassable - VaultImpassable - SmallImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: false diff --git a/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/base_tank.yml b/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/base_tank.yml index 8769f3eab0..cb1c7974dc 100644 --- a/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/base_tank.yml +++ b/Resources/Prototypes/Entities/Constructible/Storage/StorageTanks/base_tank.yml @@ -21,7 +21,6 @@ - MobImpassable - VaultImpassable - SmallImpassable - IsScrapingFloor: true - type: Physics mass: 15 Anchored: false diff --git a/Resources/Prototypes/Entities/Constructible/Storage/crate_base.yml b/Resources/Prototypes/Entities/Constructible/Storage/crate_base.yml index 9c17746086..844c18ebd0 100644 --- a/Resources/Prototypes/Entities/Constructible/Storage/crate_base.yml +++ b/Resources/Prototypes/Entities/Constructible/Storage/crate_base.yml @@ -26,7 +26,6 @@ - Opaque - MobImpassable - SmallImpassable - IsScrapingFloor: true - type: Physics mass: 25 anchored: false diff --git a/Resources/Prototypes/Entities/Constructible/Walls/girder.yml b/Resources/Prototypes/Entities/Constructible/Walls/girder.yml index ce23cd39b3..718717c993 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/girder.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/girder.yml @@ -5,6 +5,10 @@ components: - type: Clickable - type: InteractionOutline + - type: Anchorable + - type: Construction + graph: girder + node: girder - type: Sprite sprite: Constructible/Structures/Walls/solid.rsi state: wall_girder diff --git a/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml b/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml index 43e8df9870..f21a70ecf4 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/low_wall.yml @@ -9,6 +9,7 @@ components: - type: Clickable - type: RCDDeconstructWhitelist + - type: CanBuildWindowOnTop - type: InteractionOutline - type: Sprite netsync: false @@ -24,7 +25,8 @@ layer: - VaultImpassable - SmallImpassable - - type: Destructible + - type: BreakableConstruction + node: start deadThreshold: 100 resistances: metallicResistances - type: SnapGrid @@ -33,6 +35,9 @@ - type: LowWall key: walls base: metal_ + - type: Construction + graph: lowWall + node: lowWall - type: entity id: LowWallOverlay diff --git a/Resources/Prototypes/Entities/Constructible/Walls/walls.yml b/Resources/Prototypes/Entities/Constructible/Walls/walls.yml index c4697594a7..521fceece1 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/walls.yml @@ -25,10 +25,6 @@ - MobImpassable - VaultImpassable - SmallImpassable - - type: Destructible - deadThreshold: 500 - spawnOnDestroy: Girder - resistances: metallicResistances - type: Occluder sizeX: 32 sizeY: 32 @@ -239,14 +235,20 @@ - type: Icon sprite: Constructible/Structures/Walls/solid.rsi state: rgeneric - - type: Destructible + - type: Construction + graph: girder + node: reinforcedWall + - type: BreakableConstruction deadThreshold: 600 - spawnOnDestroy: Girder + node: girder resistances: metallicResistances - type: ReinforcedWall key: walls base: solid reinforcedBase: reinf_over + - type: Appearance + visuals: + - type: ReinforcedWallVisualizer # Riveting - type: entity @@ -308,11 +310,14 @@ - type: Sprite color: "#889192" sprite: Constructible/Structures/Walls/solid.rsi + - type: Construction + graph: girder + node: wall - type: Icon sprite: Constructible/Structures/Walls/solid.rsi - - type: Destructible + - type: BreakableConstruction deadThreshold: 300 - spawnOnDestroy: Girder + node: girder destroySound: /Audio/Effects/metalbreak.ogg resistances: metallicResistances - type: IconSmooth diff --git a/Resources/Prototypes/Entities/Constructible/Walls/windows.yml b/Resources/Prototypes/Entities/Constructible/Walls/windows.yml index aafd31d87e..6d78166447 100644 --- a/Resources/Prototypes/Entities/Constructible/Walls/windows.yml +++ b/Resources/Prototypes/Entities/Constructible/Walls/windows.yml @@ -34,6 +34,9 @@ - type: Airtight - type: Window base: window + - type: Construction + graph: window + node: window - type: entity id: ReinforcedWindow @@ -50,6 +53,9 @@ resistances: metallicResistances - type: Window base: rwindow + - type: Construction + graph: window + node: reinforcedWindow - type: entity id: PhoronWindow @@ -66,3 +72,6 @@ resistances: metallicResistances - type: Window base: pwindow + - type: Construction + graph: window + node: phoronWindow diff --git a/Resources/Prototypes/Entities/Objects/Misc/computer_circuitboards.yml b/Resources/Prototypes/Entities/Objects/Misc/computer_circuitboards.yml new file mode 100644 index 0000000000..71396f6a7a --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/computer_circuitboards.yml @@ -0,0 +1,66 @@ +- type: entity + id: BaseComputerCircuitboard + parent: BaseItem + name: circuit board + abstract: true + components: + - type: ComputerBoard + - type: Sprite + sprite: Constructible/Misc/module.rsi + state: id_mod + +- type: entity + id: SupplyComputerCircuitboard + parent: BaseComputerCircuitboard + name: supply computer circuit board + components: + - type: ComputerBoard + prototype: ComputerSupplyOrdering + +- type: entity + id: SupplyRequestComputerCircuitboard + parent: BaseComputerCircuitboard + name: supply request computer circuit board + components: + - type: ComputerBoard + prototype: ComputerSupplyRequest + +- type: entity + id: ResearchComputerCircuitboard + parent: BaseComputerCircuitboard + name: R&D computer circuit board + components: + - type: ComputerBoard + prototype: ComputerResearchAndDevelopment + +- type: entity + id: IDComputerCircuitboard + parent: BaseComputerCircuitboard + name: ID card terminal circuit board + components: + - type: ComputerBoard + prototype: ComputerId + +- type: entity + id: BodyScannerComputerCircuitboard + parent: BaseComputerCircuitboard + name: body scanner computer circuit board + components: + - type: ComputerBoard + prototype: computerBodyScanner + +- type: entity + id: CommsComputerCircuitboard + parent: BaseComputerCircuitboard + name: communications computer circuit board + components: + - type: ComputerBoard + prototype: ComputerComms + +- type: entity + id: SolarControlComputerCircuitboard + parent: BaseComputerCircuitboard + name: solar control computer circuit board + components: + - type: ComputerBoard + prototype: ComputerSolarControl diff --git a/Resources/Prototypes/Entities/Objects/Power/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Power/cable_coils.yml index bfcda8a034..9176df929c 100644 --- a/Resources/Prototypes/Entities/Objects/Power/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Power/cable_coils.yml @@ -4,10 +4,10 @@ # ability to have applied colors yet in GUIs. -Swept - type: entity + id: CableStack abstract: true parent: BaseItem - id: CableStack1 - name: cable stack 1 + name: cable stack suffix: Full components: - type: Stack @@ -20,9 +20,10 @@ - type: Clickable - type: entity - parent: CableStack1 id: HVWireStack + parent: CableStack name: HV Wire Coil + suffix: Full components: - type: Sprite state: coilhv-30 @@ -34,23 +35,22 @@ blockingWireType: HighVoltage - type: entity - parent: CableStack1 - id: MVWireStack - name: MV Wire Coil + parent: HVWireStack + id: HVWireStack1 + suffix: 1 components: - - type: Sprite - state: coilmv-30 - - type: Item - size: 10 - HeldPrefix: coilmv - - type: WirePlacer - wirePrototypeID: MVWire - blockingWireType: MediumVoltage + - type: Sprite + state: coilhv-10 + - type: Item + size: 3 + - type: Stack + count: 1 - type: entity - parent: CableStack1 + parent: CableStack id: ApcExtensionCableStack name: Apc Extension Cable Coil + suffix: Full components: - type: Sprite state: coillv-30 @@ -62,37 +62,40 @@ blockingWireType: Apc - type: entity - parent: HVWireStack - id: HVWireStack1 + parent: ApcExtensionCableStack + id: ApcExtensionCableStack1 suffix: 1 components: - - type: Sprite - state: coilhv-10 - - type: Item - size: 3 - - type: Stack - count: 1 + - type: Sprite + state: coillv-10 + - type: Item + size: 3 + - type: Stack + count: 1 + +- type: entity + parent: CableStack + id: MVWireStack + name: MV Wire Coil + suffix: Full + components: + - type: Sprite + state: coilmv-30 + - type: Item + size: 10 + HeldPrefix: coilmv + - type: WirePlacer + wirePrototypeID: MVWire + blockingWireType: MediumVoltage - type: entity parent: MVWireStack id: MVWireStack1 suffix: 1 components: - - type: Sprite - state: coilmv-10 - - type: Item - size: 3 - - type: Stack - count: 1 - -- type: entity - parent: ApcExtensionCableStack - id: ApcExtensionCableStack1 - suffix: 1 - components: - - type: Sprite - state: coillv-10 - - type: Item - size: 3 - - type: Stack - count: 1 + - type: Sprite + state: coilmv-10 + - type: Item + size: 3 + - type: Stack + count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index 034f7ff7f7..370acf56ac 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -113,7 +113,6 @@ bounds: "-0.25,-0.25,0.25,0.25" mask: [Impassable] layer: [Clickable] - IsScrapingFloor: true - type: entity name: recharger @@ -143,7 +142,6 @@ bounds: "-0.25,-0.25,0.25,0.25" mask: [Impassable] layer: [Clickable] - IsScrapingFloor: true - type: entity name: wall recharger @@ -172,4 +170,3 @@ bounds: "-0.25,-0.25,0.25,0.25" mask: [Impassable] layer: [Clickable] - IsScrapingFloor: true diff --git a/Resources/Prototypes/Entities/Objects/Specific/janitor.yml b/Resources/Prototypes/Entities/Objects/Specific/janitor.yml index 7bf50902fc..e7fe78d9ec 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/janitor.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/janitor.yml @@ -43,7 +43,6 @@ - Opaque layer: - Opaque - IsScrapingFloor: true - type: Physics mass: 5 anchored: false @@ -74,7 +73,6 @@ bounds: "-0.25,-0.25,0.25,0.25" mask: - Impassable - IsScrapingFloor: true - type: Physics mass: 5 anchored: false diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml index 7d3d9016ee..0f9289b1f0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/spear.yml @@ -7,8 +7,6 @@ sprite: Objects/Weapons/Melee/spear.rsi state: spear - - - type: MeleeWeapon range: 1.5 arcwidth: 0 @@ -19,6 +17,10 @@ sprite: Objects/Weapons/Melee/spear.rsi prefix: inhand + - type: Construction + graph: spear + node: spear + - type: ItemCooldown - type: MeleeWeaponAnimation diff --git a/Resources/Prototypes/Entities/Objects/materials.yml b/Resources/Prototypes/Entities/Objects/materials.yml index a7edaea2f4..91be161812 100644 --- a/Resources/Prototypes/Entities/Objects/materials.yml +++ b/Resources/Prototypes/Entities/Objects/materials.yml @@ -12,6 +12,7 @@ name: steel sheet id: MetalStack parent: MaterialStack + suffix: Full components: - type: Material materials: @@ -28,16 +29,19 @@ - type: entity id: SteelSheet1 - name: steel sheet 1 + name: steel sheet parent: MetalStack + suffix: 1 components: - type: Stack + stacktype: enum.StackType.Metal count: 1 - type: entity name: glass sheet id: GlassStack parent: MaterialStack + suffix: Full components: - type: Material materials: @@ -54,16 +58,48 @@ - type: entity id: GlassSheet1 - name: glass sheet 1 + name: glass sheet parent: GlassStack + suffix: 1 components: - type: Stack + stacktype: enum.StackType.Glass count: 1 +- type: entity + name: plasteel sheet + id: PlasteelStack + parent: MaterialStack + suffix: Full + components: + - type: Material + materials: + - key: enum.MaterialKeys.Stack + mat: plasteel + - type: Stack + stacktype: enum.StackType.Plasteel + - type: Sprite + sprite: Objects/Materials/sheets.rsi + state: plasteel + - type: Item + sprite: Objects/Materials/sheets.rsi + HeldPrefix: plasteel + +- type: entity + id: PlasteelSheet1 + name: plasteel sheet + parent: PlasteelStack + suffix: 1 + components: + - type: Stack + stacktype: enum.StackType.Plasteel + count: 1 + - type: entity name: gold bar id: GoldStack parent: MaterialStack + suffix: Full components: - type: Material materials: @@ -79,6 +115,7 @@ id: GoldStack1 name: gold bar 1 parent: GoldStack + suffix: 1 components: - type: Sprite sprite: Objects/Materials/materials.rsi @@ -99,6 +136,7 @@ name: phoron sheet id: PhoronStack parent: MaterialStack + suffix: Full components: - type: Material materials: @@ -115,8 +153,9 @@ - type: entity id: PhoronStack1 - name: phoron sheet 1 + name: phoron sheet parent: PhoronStack + suffix: 1 components: - type: Stack count: 1 diff --git a/Resources/Prototypes/Entities/item_base.yml b/Resources/Prototypes/Entities/item_base.yml index 33fb7b38d1..f1ddad9d3c 100644 --- a/Resources/Prototypes/Entities/item_base.yml +++ b/Resources/Prototypes/Entities/item_base.yml @@ -15,7 +15,6 @@ bounds: "-0.25,-0.25,0.25,0.25" layer: - Clickable - IsScrapingFloor: true - type: Physics mass: 5 - type: Sprite diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/computer.yml b/Resources/Prototypes/Recipes/Construction/Graphs/computer.yml new file mode 100644 index 0000000000..4ee1146fd2 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/computer.yml @@ -0,0 +1,148 @@ +- type: constructionGraph + id: computer + start: start + graph: + - node: start + edges: + - to: frameUnsecured + completed: + - !type:SetAnchor + value: false + steps: + - material: Metal + amount: 5 + + - node: frameUnsecured + actions: + - !type:SpriteStateChange + state: "0" + entity: ComputerFrame + edges: + - to: boardUnsecured + conditions: + - !type:EntityAnchored {} + steps: + - component: ComputerBoard + store: board + name: a computer circuit board + icon: + sprite: "Constructible/Misc/module.rsi" + state: "id_mod" + + - to: start + conditions: + - !type:EntityAnchored + anchored: false + completed: + - !type:SpawnPrototype + prototype: SteelSheet1 + amount: 5 + - !type:DeleteEntity {} + steps: + - tool: Welding + doAfter: 2 + + - node: boardUnsecured + actions: + - !type:SpriteStateChange + state: "1" + edges: + - to: missingWires + conditions: + - !type:EntityAnchored {} + steps: + - tool: Screwing + + - to: frameUnsecured + conditions: + - !type:EntityAnchored { } + completed: + - !type:EmptyContainer + container: board + - !type:SpriteStateChange + state: 0 + steps: + - tool: Prying + + - node: missingWires + actions: + - !type:SpriteStateChange + state: "2" + edges: + - to: monitorMissing + conditions: + - !type:EntityAnchored {} + steps: + - material: Cable + amount: 5 + + - to: boardUnsecured + conditions: + - !type:EntityAnchored { } + steps: + - tool: Screwing + + - node: monitorMissing + entity: ComputerFrame + actions: + - !type:SetAnchor { } + - !type:SpriteStateChange + state: "3" + edges: + - to: monitorUnsecured + conditions: + - !type:EntityAnchored {} + steps: + - material: Glass + amount: 2 + + - to: missingWires + conditions: + - !type:EntityAnchored { } + steps: + - tool: Cutting + + - node: monitorUnsecured + actions: + - !type:SpriteStateChange + state: "4" + entity: ComputerFrame + edges: + - to: computer + conditions: + - !type:EntityAnchored {} + completed: + - !type:BuildComputer + container: board + steps: + - tool: Screwing + + - to: monitorMissing + conditions: + - !type:EntityAnchored { } + completed: + - !type:SpawnPrototype + prototype: GlassSheet1 + amount: 2 + steps: + - tool: Prying + + - node: computer + edges: + - to: monitorUnsecured + steps: + - tool: Screwing + + - node: monitorBroken + entity: ComputerBroken + edges: + - to: monitorMissing + conditions: + - !type:EntityAnchored {} + completed: + - !type:SpawnPrototype + prototype: GlassSheet1 # TODO: Replace with glass shard. + amount: 1 + steps: + - tool: Prying + doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/girder.yml b/Resources/Prototypes/Recipes/Construction/Graphs/girder.yml new file mode 100644 index 0000000000..b1fff3816a --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/girder.yml @@ -0,0 +1,138 @@ +- type: constructionGraph + id: girder + start: start + graph: + - node: start + edges: + - to: girder + completed: + - !type:SnapToGrid { } + steps: + - material: Metal + amount: 2 + doAfter: 1 + + - node: girder + entity: Girder + actions: + - !type:SpriteChange + specifier: + sprite: /Textures/Constructible/Structures/Walls/solid.rsi + state: wall_girder + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SteelSheet1 + amount: 2 + - !type:DeleteEntity {} + conditions: + - !type:EntityAnchored + anchored: false + steps: + - tool: Screwing + doAfter: 2 + + - to: wall + completed: + - !type:SnapToGrid {} + conditions: + - !type:EntityAnchored {} + steps: + - material: Metal + amount: 2 + + - to: reinforcedGirder + completed: + - !type:SnapToGrid { } + conditions: + - !type:EntityAnchored {} + steps: + - material: Plasteel + amount: 2 + + - node: wall + entity: solid_wall + edges: + - to: girder + completed: + - !type:SpawnPrototype + prototype: SteelSheet1 + amount: 2 + steps: + - tool: Welding + doAfter: 2 + + - node: reinforcedGirder + actions: + - !type:SpriteChange + specifier: + sprite: /Textures/Constructible/Structures/Walls/solid.rsi + state: reinforced_wall_girder + edges: + - to: reinforcedWall + completed: + - !type:SnapToGrid { } + conditions: + - !type:EntityAnchored { } + steps: + - material: Plasteel + amount: 2 + doAfter: 1 + + - to: girder + completed: + - !type:SnapToGrid { } + conditions: + - !type:EntityAnchored { } + steps: + - tool: Welding + doAfter: 2 + + - node: reinforcedWall + entity: reinforced_wall + edges: + - to: girder + steps: + - tool: Cutting + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.ReinforcedWallVisuals.DeconstructionStage" + data: 5 + - tool: Screwing + doAfter: 1 + - tool: Welding + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.ReinforcedWallVisuals.DeconstructionStage" + data: 4 + - tool: Prying + doAfter: 1 + - tool: Anchoring + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.ReinforcedWallVisuals.DeconstructionStage" + data: 3 + - tool: Welding + doAfter: 2 + completed: + - !type:VisualizerDataInt + key: "enum.ReinforcedWallVisuals.DeconstructionStage" + data: 2 + - tool: Prying + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.ReinforcedWallVisuals.DeconstructionStage" + data: 1 + - tool: Screwing + doAfter: 1 + completed: + - !type:VisualizerDataInt + key: "enum.ReinforcedWallVisuals.DeconstructionStage" + data: 0 + - tool: Cutting + doAfter: 1 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/low_wall.yml b/Resources/Prototypes/Recipes/Construction/Graphs/low_wall.yml new file mode 100644 index 0000000000..acf1aa6ddf --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/low_wall.yml @@ -0,0 +1,33 @@ +- type: constructionGraph + id: lowWall + start: start + graph: + - node: start + conditions: + - !type:ComponentInTile + value: false + component: Window + actions: + - !type:SpawnPrototype + prototype: SteelSheet1 + amount: 3 + - !type:DeleteEntity { } + edges: + - to: lowWall + steps: + - material: Metal + amount: 3 + doAfter: 5 + + - node: lowWall + entity: LowWall + edges: + - to: start + conditions: + # We fail the condition if there are any windows on the tile. + - !type:ComponentInTile + hasEntity: false + component: Window + steps: + - tool: Welding + doAfter: 5 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/spear.yml b/Resources/Prototypes/Recipes/Construction/Graphs/spear.yml new file mode 100644 index 0000000000..09f500905f --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/spear.yml @@ -0,0 +1,17 @@ +- type: constructionGraph + id: spear + start: start + graph: + - node: start + edges: + - to: spear + steps: + - material: Metal + amount: 2 + doAfter: 2 + - material: Glass + amount: 2 + doAfter: 2 + + - node: spear + entity: Spear diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/window.yml b/Resources/Prototypes/Recipes/Construction/Graphs/window.yml new file mode 100644 index 0000000000..12c4d9a11a --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/window.yml @@ -0,0 +1,93 @@ +- type: constructionGraph + id: window + start: start + graph: + - node: start + edges: + - to: phoronWindow + steps: + - material: Metal + amount: 2 + doAfter: 2 + - material: Glass + amount: 2 + - material: Phoron + amount: 2 + doAfter: 3 + + - to: reinforcedWindow + steps: + - material: Metal + amount: 2 + doAfter: 2 + - material: Glass + amount: 2 + doAfter: 2 + + - to: window + steps: + - material: Glass + amount: 2 + doAfter: 3 + + - node: window + entity: Window + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: GlassSheet1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + + - node: reinforcedWindow + entity: ReinforcedWindow + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: GlassSheet1 + amount: 2 + - !type:SpawnPrototype + prototype: MetalSheet1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 1 + - tool: Prying + doAfter: 2 + - tool: Screwing + doAfter: 1 + - tool: Anchoring + doAfter: 2 + + - node: phoronWindow + entity: PhoronWindow + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: GlassSheet1 + amount: 2 + - !type:SpawnPrototype + prototype: MetalSheet1 + amount: 2 + - !type:SpawnPrototype + prototype: PhoronSheet1 + amount: 2 + - !type:DeleteEntity {} + steps: + - tool: Screwing + doAfter: 2 + - tool: Prying + doAfter: 3 + - tool: Screwing + doAfter: 2 + - tool: Anchoring + doAfter: 3 diff --git a/Resources/Prototypes/Recipes/Construction/conveyor.yml b/Resources/Prototypes/Recipes/Construction/conveyor.yml deleted file mode 100644 index 2cc45dee55..0000000000 --- a/Resources/Prototypes/Recipes/Construction/conveyor.yml +++ /dev/null @@ -1,19 +0,0 @@ -- type: construction - name: conveyor belt - id: ConveyorBelt - category: Machines/Conveyor - keywords: [conveyor, belt] - placementMode: SnapgridCenter - description: A conveyor belt, commonly used to transport large numbers of items elsewhere quite quickly. - icon: - sprite: Constructible/Power/conveyor.rsi - state: conveyor_stopped_cw - result: ConveyorBelt - steps: - - material: Metal - amount: 1 - icon: - sprite: Constructible/Power/conveyor.rsi - state: conveyor_stopped_cw - - material: Cable - amount: 1 diff --git a/Resources/Prototypes/Recipes/Construction/kitchen.yml b/Resources/Prototypes/Recipes/Construction/kitchen.yml deleted file mode 100644 index 75a4504c10..0000000000 --- a/Resources/Prototypes/Recipes/Construction/kitchen.yml +++ /dev/null @@ -1,18 +0,0 @@ -- type: construction - name: meat spike - id: KitchenSpike - category: Items/Kitchen - keywords: [kitchen] - description: - icon: Constructible/Misc/kitchen.rsi/spike.png - result: KitchenSpike - objectType: Structure - steps: - # Replace with Metal Rods whenever - # also this should be done with a Welding tool if that is specifiable - - material: Metal - amount: 3 - reverse: - # logic here: BOLT_TURNING -> Wrench -> Anchoring - tool: Anchoring - diff --git a/Resources/Prototypes/Recipes/Construction/machines.yml b/Resources/Prototypes/Recipes/Construction/machines.yml index f9e29725dc..33f90541d3 100644 --- a/Resources/Prototypes/Recipes/Construction/machines.yml +++ b/Resources/Prototypes/Recipes/Construction/machines.yml @@ -1,25 +1,12 @@ - type: construction - name: wall light - id: WallLight - keywords: [fixture, lamp] + name: computer + id: Computer + graph: computer + startNode: start + targetNode: computer category: Machines - description: A simple wall-mounted light fixture. - placementMode: SnapgridBorder - canBuildInImpassable: true + placementMode: SnapgridCenter + canBuildInImpassable: false icon: - sprite: Constructible/Lighting/lighting.rsi - state: on - result: Poweredlight - steps: - - material: Metal - amount: 1 - icon: - sprite: Constructible/Lighting/lighting.rsi - state: construct - - material: Cable - amount: 1 - icon: - sprite: Constructible/Lighting/lighting.rsi - state: empty - - material: Glass - amount: 1 + sprite: Constructible/Misc/stock_parts.rsi + state: 4 diff --git a/Resources/Prototypes/Recipes/Construction/misc.yml b/Resources/Prototypes/Recipes/Construction/misc.yml deleted file mode 100644 index 96fe94099f..0000000000 --- a/Resources/Prototypes/Recipes/Construction/misc.yml +++ /dev/null @@ -1,29 +0,0 @@ -- type: construction - name: skub - id: skub - category: Items/Misc - keywords: [misc] - description: In the end, there is only Skub. - icon: Objects/Misc/skub.rsi/icon.png - result: Skub - objectType: Item - steps: - - material: Metal - amount: 1 - -- type: construction - id: ExtinguisherCabinet - name: extinguisher cabinet - category: Items/Misc - keywords: [misc] - placementMode: SnapgridCenter - canBuildInImpassable: true - description: A small wall mounted cabinet designed to hold a fire extinguisher. - icon: Constructible/Misc/extinguisher_cabinet.rsi/extinguisher_closed.png - result: ExtinguisherCabinet - steps: - - material: Metal - amount: 2 - icon: - sprite: Constructible/Misc/extinguisher_cabinet.rsi - state: extinguisher_closed diff --git a/Resources/Prototypes/Recipes/Construction/power.yml b/Resources/Prototypes/Recipes/Construction/power.yml deleted file mode 100644 index d28789b046..0000000000 --- a/Resources/Prototypes/Recipes/Construction/power.yml +++ /dev/null @@ -1,57 +0,0 @@ -- type: construction - name: SMES - id: smes - category: Machines/Power - keywords: [battery, cell, storage] - placementMode: SnapgridCenter - description: A SMES is a large battery capable of connecting directly to a power grid. - icon: - sprite: Constructible/Power/smes.rsi - state: smes - result: SMES - steps: - - material: Metal - amount: 2 - icon: - sprite: Constructible/Power/smes.rsi - state: smes - - - material: Cable - amount: 2 - -- type: construction - name: generator - id: generator - category: Machines/Power - placementMode: SnapgridCenter - description: A portable generator capable of producing power from thin air. - icon: Constructible/Power/generator.png - result: Generator - steps: - - material: Metal - amount: 2 - icon: Constructible/Power/generator.png - - - material: Cable - amount: 2 - -- type: construction - name: APC - id: APC - category: Machines/Power - placementMode: SnapgridCenter - description: Provides power from the grid wirelessly to other machines in the area. - canBuildInImpassable: true - icon: - sprite: Constructible/Power/apc.rsi - state: apc0 - result: APC - steps: - - material: Metal - amount: 2 - icon: - sprite: Constructible/Power/apc.rsi - state: apcmaint - - - material: Cable - amount: 2 diff --git a/Resources/Prototypes/Recipes/Construction/structures.yml b/Resources/Prototypes/Recipes/Construction/structures.yml index 8f5aed8c8a..c1c17bbeef 100644 --- a/Resources/Prototypes/Recipes/Construction/structures.yml +++ b/Resources/Prototypes/Recipes/Construction/structures.yml @@ -1,97 +1,105 @@ - type: construction + name: girder + id: girder + graph: girder + startNode: start + targetNode: girder + category: Structures + description: A large structural assembly made out of metal. + icon: + sprite: /Textures/Constructible/Structures/Walls/solid.rsi + state: wall_girder + objectType: Structure + placementMode: SnapgridCenter + +- type: construction name: wall id: wall + graph: girder + startNode: start + targetNode: wall category: Structures description: Keeps the air in and the greytide out. icon: sprite: Constructible/Structures/Walls/solid.rsi state: full objectType: Structure - result: solid_wall placementMode: SnapgridCenter - steps: - - material: Metal - amount: 2 - icon: Constructible/Structures/Walls/wall_girder.png - reverse: - tool: Anchoring - - material: Metal - amount: 2 - reverse: - tool: Anchoring - type: construction - name: table - id: Table + name: reinforced wall + id: reinforcedWall + graph: girder + startNode: start + targetNode: reinforcedWall category: Structures + description: Keeps the air in and the greytide out. icon: - sprite: Constructible/Structures/Tables/generic.rsi - state: plain_preview - result: Table - placementMode: SnapgridCenter - steps: - - material: Metal - amount: 2 - -- type: construction - name: window - id: Window - category: Structures - description: Clear. - icon: - sprite: Constructible/Structures/Windows/window.rsi - state: full + sprite: Constructible/Structures/Walls/solid.rsi + state: rgeneric objectType: Structure - result: Window placementMode: SnapgridCenter - steps: - - material: Glass - amount: 2 - reverse: - tool: Screwing - type: construction name: low wall id: LowWall + graph: lowWall + startNode: start + targetNode: lowWall category: Structures description: A low wall used for mounting windows. + conditions: + - !type:NoWindowsInTile { } icon: sprite: Constructible/Structures/Walls/low_wall.rsi state: metal objectType: Structure - result: LowWall placementMode: SnapgridCenter - steps: - - material: Metal - amount: 2 - icon: Constructible/Structures/Walls/wall_girder.png - reverse: - tool: Anchoring - - - material: Metal - amount: 2 - reverse: - tool: Anchoring - type: construction - name: rein window - id: ReinforcedWindow + name: window + id: Window + graph: window + startNode: start + targetNode: window category: Structures - description: Clear but tough. + description: Clear. Must be built on top of a low wall. + conditions: + - !type:LowWallInTile {} + icon: + sprite: Constructible/Structures/Windows/window.rsi + state: full + objectType: Structure + placementMode: SnapgridCenter + +- type: construction + name: reinforced window + id: ReinforcedWindow + graph: window + startNode: start + targetNode: reinforcedWindow + category: Structures + description: Clear but tough. Must be built on top of a low wall. + conditions: + - !type:LowWallInTile {} icon: sprite: Constructible/Structures/Windows/reinforced_window.rsi state: full objectType: Structure - result: ReinforcedWindow placementMode: SnapgridCenter - steps: - - material: Glass - amount: 2 - reverse: - tool: Anchoring -# Should be replaced with Metal Rods when someone puts them in. - - material: Metal - amount: 2 - reverse: - # Should be replaced with Wirecutter when someone makes it work. - tool: Anchoring + +- type: construction + name: phoron window + id: PhoronWindow + graph: window + startNode: start + targetNode: phoronWindow + category: Structures + description: Clear and even tougher, with an orange tint. Must be built on top of a low wall. + conditions: + - !type:LowWallInTile {} + icon: + sprite: Constructible/Structures/Windows/phoron_window.rsi + state: full + objectType: Structure + placementMode: SnapgridCenter diff --git a/Resources/Prototypes/Recipes/Construction/weapons.yml b/Resources/Prototypes/Recipes/Construction/weapons.yml index fcdf4bfd50..4ccda3b552 100644 --- a/Resources/Prototypes/Recipes/Construction/weapons.yml +++ b/Resources/Prototypes/Recipes/Construction/weapons.yml @@ -1,25 +1,10 @@ - type: construction name: crude spear id: spear + graph: spear + startNode: start + targetNode: spear category: Items/Weapons - keywords: [melee] description: A crude spear for when you need to put holes in somebody. icon: Objects/Weapons/Melee/spear.rsi/spear.png - result: Spear objectType: Item - steps: - - material: Metal - amount: 1 - reverse: - tool: Screwing - - - material: Cable - amount: 3 - reverse: - tool: Screwing - - # Should probably use a shard but y'know. - - material: Glass - amount: 1 - reverse: - tool: Screwing diff --git a/Resources/Prototypes/materials.yml b/Resources/Prototypes/materials.yml index 4b622b58a7..0cd57bf107 100644 --- a/Resources/Prototypes/materials.yml +++ b/Resources/Prototypes/materials.yml @@ -2,36 +2,45 @@ id: steel name: steel color: gray - icon: Objects/Materials/sheet_metal.png + icon: Objects/Materials/sheets.rsi/metal.png density: 7700 - electricresistivity: 6.9e-7 - thermalconductivity: 18 - specificheat: 500 + electricResistivity: 6.9e-7 + thermalConductivity: 18 + specificHeat: 500 - type: material id: glass name: glass color: '#e8f0ff33' - icon: Objects/Materials/sheet_glass.png + icon: Objects/Materials/sheets.rsi/glass.png density: 2500 - electricresistivity: 1.0e+13 - thermalconductivity: 0.9 - specificheat: 840 + electricResistivity: 1.0e+13 + thermalConductivity: 0.9 + specificHeat: 840 - type: material id: gold name: gold icon: Objects/Materials/goldbar_single.png density: 10000 - electricresistivity: 8.0e-9 - thermalconductivity: 30 - specificheat: 1000 + electricResistivity: 8.0e-9 + thermalConductivity: 30 + specificHeat: 1000 - type: material id: phoron name: phoron icon: Objects/Materials/phoron_sheet.png density: 200 - electricresistivity: 2.1e-1 - thermalconductivity: 80 - specificheat: 2000 + electricResistivity: 2.1e-1 + thermalConductivity: 80 + specificHeat: 2000 + +- type: material + id: plasteel + name: plasteel + icon: Objects/Materials/sheet_plasteel.png + density: 15400 # literally arbitrary values... + electricResistivity: 6.9e-7 + thermalConductivity: 18 + specificHeat: 200 diff --git a/Resources/Textures/Constructible/Misc/module.rsi/abductor_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/abductor_mod.png new file mode 100644 index 0000000000..b1dcc033b4 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/abductor_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/airalarm_electronics.png b/Resources/Textures/Constructible/Misc/module.rsi/airalarm_electronics.png new file mode 100644 index 0000000000..ead1f22b30 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/airalarm_electronics.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/ash_plating.png b/Resources/Textures/Constructible/Misc/module.rsi/ash_plating.png new file mode 100644 index 0000000000..a3d27f28cb Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/ash_plating.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/beaker_holder.png b/Resources/Textures/Constructible/Misc/module.rsi/beaker_holder.png new file mode 100644 index 0000000000..31c06ea0b4 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/beaker_holder.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/blank_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/blank_mod.png new file mode 100644 index 0000000000..f5082434a0 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/blank_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/bluespacearray.png b/Resources/Textures/Constructible/Misc/module.rsi/bluespacearray.png new file mode 100644 index 0000000000..768d435244 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/bluespacearray.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/boris.png b/Resources/Textures/Constructible/Misc/module.rsi/boris.png new file mode 100644 index 0000000000..eb0ea143d3 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/boris.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/boris_recharging.png b/Resources/Textures/Constructible/Misc/module.rsi/boris_recharging.png new file mode 100644 index 0000000000..ed0be6ff3b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/boris_recharging.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/card_mini.png b/Resources/Textures/Constructible/Misc/module.rsi/card_mini.png new file mode 100644 index 0000000000..61775eac29 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/card_mini.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/card_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/card_mod.png new file mode 100644 index 0000000000..5b095130b3 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/card_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cargodisk.png b/Resources/Textures/Constructible/Misc/module.rsi/cargodisk.png new file mode 100644 index 0000000000..c9a1437422 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cargodisk.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cart_connector.png b/Resources/Textures/Constructible/Misc/module.rsi/cart_connector.png new file mode 100644 index 0000000000..85b5730ed9 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cart_connector.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cddrive.png b/Resources/Textures/Constructible/Misc/module.rsi/cddrive.png new file mode 100644 index 0000000000..f543a2f040 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cddrive.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cell.png b/Resources/Textures/Constructible/Misc/module.rsi/cell.png new file mode 100644 index 0000000000..606a48fd9d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cell.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cell_con.png b/Resources/Textures/Constructible/Misc/module.rsi/cell_con.png new file mode 100644 index 0000000000..0e34a852de Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cell_con.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cell_con_micro.png b/Resources/Textures/Constructible/Misc/module.rsi/cell_con_micro.png new file mode 100644 index 0000000000..a63b08c136 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cell_con_micro.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cell_micro.png b/Resources/Textures/Constructible/Misc/module.rsi/cell_micro.png new file mode 100644 index 0000000000..8d418f625a Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cell_micro.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cell_mini.png b/Resources/Textures/Constructible/Misc/module.rsi/cell_mini.png new file mode 100644 index 0000000000..5ab1069ab2 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cell_mini.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/charger_APC.png b/Resources/Textures/Constructible/Misc/module.rsi/charger_APC.png new file mode 100644 index 0000000000..a1a9b8c26d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/charger_APC.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/charger_lambda.png b/Resources/Textures/Constructible/Misc/module.rsi/charger_lambda.png new file mode 100644 index 0000000000..d73b43c392 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/charger_lambda.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/charger_pda.png b/Resources/Textures/Constructible/Misc/module.rsi/charger_pda.png new file mode 100644 index 0000000000..c4e974fda3 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/charger_pda.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/charger_wire.png b/Resources/Textures/Constructible/Misc/module.rsi/charger_wire.png new file mode 100644 index 0000000000..c74c5be502 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/charger_wire.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/clock_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/clock_mod.png new file mode 100644 index 0000000000..48a83e5c4e Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/clock_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/command.png b/Resources/Textures/Constructible/Misc/module.rsi/command.png new file mode 100644 index 0000000000..f298933188 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/command.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cpu.png b/Resources/Textures/Constructible/Misc/module.rsi/cpu.png new file mode 100644 index 0000000000..feb4524421 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cpu.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cpu_adv.png b/Resources/Textures/Constructible/Misc/module.rsi/cpu_adv.png new file mode 100644 index 0000000000..c1eb03f4c1 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cpu_adv.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cpu_super.png b/Resources/Textures/Constructible/Misc/module.rsi/cpu_super.png new file mode 100644 index 0000000000..061d2658a7 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cpu_super.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cpuboard.png b/Resources/Textures/Constructible/Misc/module.rsi/cpuboard.png new file mode 100644 index 0000000000..e177e9391d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cpuboard.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cpuboard_adv.png b/Resources/Textures/Constructible/Misc/module.rsi/cpuboard_adv.png new file mode 100644 index 0000000000..171e08d34a Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cpuboard_adv.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cpuboard_super.png b/Resources/Textures/Constructible/Misc/module.rsi/cpuboard_super.png new file mode 100644 index 0000000000..edd46f51b7 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cpuboard_super.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade.png b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade.png new file mode 100644 index 0000000000..f473939685 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade1.png b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade1.png new file mode 100644 index 0000000000..42df1f3286 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade1.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade2.png b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade2.png new file mode 100644 index 0000000000..39e66b7648 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade2.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade3.png b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade3.png new file mode 100644 index 0000000000..3459722d84 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade3.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade4.png b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade4.png new file mode 100644 index 0000000000..ec9addb0ab Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade4.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade5.png b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade5.png new file mode 100644 index 0000000000..6e1fe51b4e Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/cyborg_upgrade5.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk0.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk0.png new file mode 100644 index 0000000000..17bff72a1a Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk0.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk1.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk1.png new file mode 100644 index 0000000000..d08fe04bce Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk1.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk2.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk2.png new file mode 100644 index 0000000000..1ae22b7e2c Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk2.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk3.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk3.png new file mode 100644 index 0000000000..ed2b16e8eb Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk3.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk4.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk4.png new file mode 100644 index 0000000000..0363ce17ef Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk4.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk5.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk5.png new file mode 100644 index 0000000000..363b671557 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk5.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk6.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk6.png new file mode 100644 index 0000000000..a8444b79be Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk6.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk_gene.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk_gene.png new file mode 100644 index 0000000000..ce19a7236d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk_gene.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/datadisk_hydro.png b/Resources/Textures/Constructible/Misc/module.rsi/datadisk_hydro.png new file mode 100644 index 0000000000..e77f266db3 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/datadisk_hydro.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/depositbox.png b/Resources/Textures/Constructible/Misc/module.rsi/depositbox.png new file mode 100644 index 0000000000..702a498d4b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/depositbox.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/door_electronics.png b/Resources/Textures/Constructible/Misc/module.rsi/door_electronics.png new file mode 100644 index 0000000000..680ba22fd8 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/door_electronics.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/engineering.png b/Resources/Textures/Constructible/Misc/module.rsi/engineering.png new file mode 100644 index 0000000000..0f96870255 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/engineering.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/flopdrive.png b/Resources/Textures/Constructible/Misc/module.rsi/flopdrive.png new file mode 100644 index 0000000000..7dbfc8c5bc Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/flopdrive.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/generic.png b/Resources/Textures/Constructible/Misc/module.rsi/generic.png new file mode 100644 index 0000000000..3068a820c1 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/generic.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/harddisk.png b/Resources/Textures/Constructible/Misc/module.rsi/harddisk.png new file mode 100644 index 0000000000..8aad3085c5 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/harddisk.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/harddisk_micro.png b/Resources/Textures/Constructible/Misc/module.rsi/harddisk_micro.png new file mode 100644 index 0000000000..4687556c41 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/harddisk_micro.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/harddisk_mini.png b/Resources/Textures/Constructible/Misc/module.rsi/harddisk_mini.png new file mode 100644 index 0000000000..817c19120e Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/harddisk_mini.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/holodisk.png b/Resources/Textures/Constructible/Misc/module.rsi/holodisk.png new file mode 100644 index 0000000000..79435e8b2f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/holodisk.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/id_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/id_mod.png new file mode 100644 index 0000000000..b5bb99ab51 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/id_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/mainboard.png b/Resources/Textures/Constructible/Misc/module.rsi/mainboard.png new file mode 100644 index 0000000000..f27dd5a11c Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/mainboard.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/mcontroller.png b/Resources/Textures/Constructible/Misc/module.rsi/mcontroller.png new file mode 100644 index 0000000000..43d5087eb0 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/mcontroller.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/medical.png b/Resources/Textures/Constructible/Misc/module.rsi/medical.png new file mode 100644 index 0000000000..5ccb845656 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/medical.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/meta.json b/Resources/Textures/Constructible/Misc/module.rsi/meta.json new file mode 100644 index 0000000000..e253c76bfc --- /dev/null +++ b/Resources/Textures/Constructible/Misc/module.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA 3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0", "states": [{"name": "abductor_mod", "directions": 1, "delays": [[1.0]]}, {"name": "airalarm_electronics", "directions": 1, "delays": [[1.0]]}, {"name": "ash_plating", "directions": 1, "delays": [[1.0]]}, {"name": "beaker_holder", "directions": 1, "delays": [[1.0]]}, {"name": "blank_mod", "directions": 1, "delays": [[1.0]]}, {"name": "bluespacearray", "directions": 1, "delays": [[1.0]]}, {"name": "boris", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "boris_recharging", "directions": 1, "delays": [[1.0, 1.0]]}, {"name": "card_mini", "directions": 1, "delays": [[1.0]]}, {"name": "card_mod", "directions": 1, "delays": [[1.0]]}, {"name": "cargodisk", "directions": 1, "delays": [[1.0]]}, {"name": "cart_connector", "directions": 1, "delays": [[1.0]]}, {"name": "cddrive", "directions": 1, "delays": [[1.0]]}, {"name": "cell", "directions": 1, "delays": [[1.0]]}, {"name": "cell_con", "directions": 1, "delays": [[1.0]]}, {"name": "cell_con_micro", "directions": 1, "delays": [[1.0]]}, {"name": "cell_micro", "directions": 1, "delays": [[1.0]]}, {"name": "cell_mini", "directions": 1, "delays": [[1.0]]}, {"name": "charger_APC", "directions": 1, "delays": [[1.0]]}, {"name": "charger_lambda", "directions": 1, "delays": [[1.0]]}, {"name": "charger_pda", "directions": 1, "delays": [[1.0]]}, {"name": "charger_wire", "directions": 1, "delays": [[1.0]]}, {"name": "clock_mod", "directions": 1, "delays": [[0.6, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "command", "directions": 1, "delays": [[1.0]]}, {"name": "cpu", "directions": 1, "delays": [[1.0]]}, {"name": "cpu_adv", "directions": 1, "delays": [[1.0]]}, {"name": "cpu_super", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "cpuboard", "directions": 1, "delays": [[1.0]]}, {"name": "cpuboard_adv", "directions": 1, "delays": [[1.0]]}, {"name": "cpuboard_super", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "cyborg_upgrade", "directions": 1, "delays": [[1.0]]}, {"name": "cyborg_upgrade1", "directions": 1, "delays": [[1.0]]}, {"name": "cyborg_upgrade2", "directions": 1, "delays": [[1.0]]}, {"name": "cyborg_upgrade3", "directions": 1, "delays": [[1.0]]}, {"name": "cyborg_upgrade4", "directions": 1, "delays": [[1.0]]}, {"name": "cyborg_upgrade5", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk0", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk1", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk2", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk3", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk4", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk5", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk6", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk_gene", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk_hydro", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "depositbox", "directions": 1, "delays": [[1.0]]}, {"name": "door_electronics", "directions": 1, "delays": [[1.0]]}, {"name": "engineering", "directions": 1, "delays": [[1.0]]}, {"name": "flopdrive", "directions": 1, "delays": [[1.0]]}, {"name": "generic", "directions": 1, "delays": [[1.0]]}, {"name": "harddisk", "directions": 1, "delays": [[1.0]]}, {"name": "harddisk_micro", "directions": 1, "delays": [[1.0]]}, {"name": "harddisk_mini", "directions": 1, "delays": [[1.0]]}, {"name": "holodisk", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "id_mod", "directions": 1, "delays": [[1.0]]}, {"name": "mainboard", "directions": 1, "delays": [[1.0]]}, {"name": "mcontroller", "directions": 1, "delays": [[1.0]]}, {"name": "medical", "directions": 1, "delays": [[1.0]]}, {"name": "net_wired", "directions": 1, "delays": [[1.0]]}, {"name": "nucleardisk", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "power_mod", "directions": 1, "delays": [[1.0]]}, {"name": "printer", "directions": 1, "delays": [[1.0]]}, {"name": "printer_mini", "directions": 1, "delays": [[1.0]]}, {"name": "prizevendor", "directions": 1, "delays": [[1.0]]}, {"name": "radio", "directions": 1, "delays": [[1.0]]}, {"name": "radio_micro", "directions": 1, "delays": [[1.0]]}, {"name": "radio_mini", "directions": 1, "delays": [[1.0]]}, {"name": "ram", "directions": 1, "delays": [[1.0]]}, {"name": "rndmajordisk", "directions": 1, "delays": [[1.0]]}, {"name": "science", "directions": 1, "delays": [[1.0]]}, {"name": "secmodschematic", "directions": 1, "delays": [[1.0]]}, {"name": "security", "directions": 1, "delays": [[1.0]]}, {"name": "selfrepair_off", "directions": 1, "delays": [[1.0]]}, {"name": "selfrepair_on", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1]]}, {"name": "service", "directions": 1, "delays": [[1.0]]}, {"name": "servo", "directions": 1, "delays": [[1.0]]}, {"name": "ssd", "directions": 1, "delays": [[1.0]]}, {"name": "ssd_large", "directions": 1, "delays": [[1.0]]}, {"name": "ssd_micro", "directions": 1, "delays": [[1.0]]}, {"name": "ssd_mini", "directions": 1, "delays": [[1.0]]}, {"name": "std_mod", "directions": 1, "delays": [[1.0]]}, {"name": "supply", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Constructible/Misc/module.rsi/net_wired.png b/Resources/Textures/Constructible/Misc/module.rsi/net_wired.png new file mode 100644 index 0000000000..cf46509930 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/net_wired.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/nucleardisk.png b/Resources/Textures/Constructible/Misc/module.rsi/nucleardisk.png new file mode 100644 index 0000000000..059ffc942e Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/nucleardisk.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/power_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/power_mod.png new file mode 100644 index 0000000000..a1a9b8c26d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/power_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/printer.png b/Resources/Textures/Constructible/Misc/module.rsi/printer.png new file mode 100644 index 0000000000..aa9ab1f5f5 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/printer.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/printer_mini.png b/Resources/Textures/Constructible/Misc/module.rsi/printer_mini.png new file mode 100644 index 0000000000..e9f49e9bc7 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/printer_mini.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/prizevendor.png b/Resources/Textures/Constructible/Misc/module.rsi/prizevendor.png new file mode 100644 index 0000000000..fa0573126c Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/prizevendor.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/radio.png b/Resources/Textures/Constructible/Misc/module.rsi/radio.png new file mode 100644 index 0000000000..b36012518b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/radio.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/radio_micro.png b/Resources/Textures/Constructible/Misc/module.rsi/radio_micro.png new file mode 100644 index 0000000000..d4c6e60b3d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/radio_micro.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/radio_mini.png b/Resources/Textures/Constructible/Misc/module.rsi/radio_mini.png new file mode 100644 index 0000000000..ef9a808a7f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/radio_mini.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/ram.png b/Resources/Textures/Constructible/Misc/module.rsi/ram.png new file mode 100644 index 0000000000..743e58a077 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/ram.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/rndmajordisk.png b/Resources/Textures/Constructible/Misc/module.rsi/rndmajordisk.png new file mode 100644 index 0000000000..1c7bda07a8 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/rndmajordisk.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/science.png b/Resources/Textures/Constructible/Misc/module.rsi/science.png new file mode 100644 index 0000000000..91bba039ce Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/science.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/secmodschematic.png b/Resources/Textures/Constructible/Misc/module.rsi/secmodschematic.png new file mode 100644 index 0000000000..adadde0b6d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/secmodschematic.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/security.png b/Resources/Textures/Constructible/Misc/module.rsi/security.png new file mode 100644 index 0000000000..49cda53be0 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/security.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/selfrepair_off.png b/Resources/Textures/Constructible/Misc/module.rsi/selfrepair_off.png new file mode 100644 index 0000000000..ee84c2fc04 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/selfrepair_off.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/selfrepair_on.png b/Resources/Textures/Constructible/Misc/module.rsi/selfrepair_on.png new file mode 100644 index 0000000000..348ea8ae9f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/selfrepair_on.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/service.png b/Resources/Textures/Constructible/Misc/module.rsi/service.png new file mode 100644 index 0000000000..cb2bbaa967 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/service.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/servo.png b/Resources/Textures/Constructible/Misc/module.rsi/servo.png new file mode 100644 index 0000000000..1107411dfd Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/servo.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/ssd.png b/Resources/Textures/Constructible/Misc/module.rsi/ssd.png new file mode 100644 index 0000000000..4a4b319611 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/ssd.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/ssd_large.png b/Resources/Textures/Constructible/Misc/module.rsi/ssd_large.png new file mode 100644 index 0000000000..9f2ae21f6b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/ssd_large.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/ssd_micro.png b/Resources/Textures/Constructible/Misc/module.rsi/ssd_micro.png new file mode 100644 index 0000000000..bbe0eb9488 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/ssd_micro.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/ssd_mini.png b/Resources/Textures/Constructible/Misc/module.rsi/ssd_mini.png new file mode 100644 index 0000000000..24dd35ee5a Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/ssd_mini.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/std_mod.png b/Resources/Textures/Constructible/Misc/module.rsi/std_mod.png new file mode 100644 index 0000000000..b5344aaafa Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/std_mod.png differ diff --git a/Resources/Textures/Constructible/Misc/module.rsi/supply.png b/Resources/Textures/Constructible/Misc/module.rsi/supply.png new file mode 100644 index 0000000000..f615fc2463 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/module.rsi/supply.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/0.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/0.png new file mode 100644 index 0000000000..1d141cc688 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/0.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/1.png new file mode 100644 index 0000000000..f9fb6d65dd Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/2.png new file mode 100644 index 0000000000..abe2074756 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/3.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/3.png new file mode 100644 index 0000000000..8deb3283b4 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/3.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/4.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/4.png new file mode 100644 index 0000000000..7de0bbf7bd Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/4.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_capacitor.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_capacitor.png new file mode 100644 index 0000000000..1d136394f0 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_capacitor.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_electrolite.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_electrolite.png new file mode 100644 index 0000000000..46d0b9515c Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_electrolite.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_scan_module.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_scan_module.png new file mode 100644 index 0000000000..1871b477b6 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/adv_scan_module.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/advanced_matter_bin.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/advanced_matter_bin.png new file mode 100644 index 0000000000..3edc50d99a Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/advanced_matter_bin.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/ansible_crystal.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/ansible_crystal.png new file mode 100644 index 0000000000..1d80546e18 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/ansible_crystal.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/bluespace_electrolite.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/bluespace_electrolite.png new file mode 100644 index 0000000000..3e08ba2cf5 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/bluespace_electrolite.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/bluespace_matter_bin.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/bluespace_matter_bin.png new file mode 100644 index 0000000000..90d4ed9e76 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/bluespace_matter_bin.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_0.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_0.png new file mode 100644 index 0000000000..d2d3ff5600 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_0.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_1.png new file mode 100644 index 0000000000..faae3e4cf8 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_2.png new file mode 100644 index 0000000000..4f7e92a04b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/box_2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/capacitor.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/capacitor.png new file mode 100644 index 0000000000..35e557003f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/capacitor.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/card_reader.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/card_reader.png new file mode 100644 index 0000000000..8ab0ba8df5 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/card_reader.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk0.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk0.png new file mode 100644 index 0000000000..9c48deb74b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk0.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk1.png new file mode 100644 index 0000000000..03079a2bfc Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk2.png new file mode 100644 index 0000000000..a54808387d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk3.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk3.png new file mode 100644 index 0000000000..089c064f4b Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk3.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk4.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk4.png new file mode 100644 index 0000000000..459c4e9c3f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk4.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk5.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk5.png new file mode 100644 index 0000000000..a0884cc43f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk5.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk6.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk6.png new file mode 100644 index 0000000000..cd74424372 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/datadisk6.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/electrolite.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/electrolite.png new file mode 100644 index 0000000000..55b314c5e6 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/electrolite.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/femto_mani.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/femto_mani.png new file mode 100644 index 0000000000..00e7e4276c Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/femto_mani.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/hdd1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/hdd1.png new file mode 100644 index 0000000000..c5b622c23e Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/hdd1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/hdd2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/hdd2.png new file mode 100644 index 0000000000..9efcf8fc4e Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/hdd2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/high_micro_laser.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/high_micro_laser.png new file mode 100644 index 0000000000..2bd8d3837d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/high_micro_laser.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/hyperwave_filter.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/hyperwave_filter.png new file mode 100644 index 0000000000..2cc610ad25 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/hyperwave_filter.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/matter_bin.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/matter_bin.png new file mode 100644 index 0000000000..b9257f20c7 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/matter_bin.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/meta.json b/Resources/Textures/Constructible/Misc/stock_parts.rsi/meta.json new file mode 100644 index 0000000000..474c1ebd28 --- /dev/null +++ b/Resources/Textures/Constructible/Misc/stock_parts.rsi/meta.json @@ -0,0 +1 @@ +{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA 3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0", "states": [{"name": "0", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "1", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "2", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "3", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "4", "directions": 4, "delays": [[1.0], [1.0], [1.0], [1.0]]}, {"name": "adv_capacitor", "directions": 1, "delays": [[1.0]]}, {"name": "adv_electrolite", "directions": 1, "delays": [[0.13, 0.13]]}, {"name": "adv_scan_module", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "advanced_matter_bin", "directions": 1, "delays": [[1.0]]}, {"name": "ansible_crystal", "directions": 1, "delays": [[1.0]]}, {"name": "bluespace_electrolite", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "bluespace_matter_bin", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "box_0", "directions": 1, "delays": [[1.0]]}, {"name": "box_1", "directions": 1, "delays": [[1.0]]}, {"name": "box_2", "directions": 1, "delays": [[1.0]]}, {"name": "capacitor", "directions": 1, "delays": [[1.0]]}, {"name": "card_reader", "directions": 1, "delays": [[1.0]]}, {"name": "datadisk0", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk1", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk2", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk3", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk4", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk5", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk6", "directions": 1, "delays": [[0.1, 0.1, 0.1]]}, {"name": "electrolite", "directions": 1, "delays": [[0.16, 0.16]]}, {"name": "femto_mani", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "hdd1", "directions": 1, "delays": [[1.0]]}, {"name": "hdd2", "directions": 1, "delays": [[1.0]]}, {"name": "high_micro_laser", "directions": 1, "delays": [[1.0]]}, {"name": "hyperwave_filter", "directions": 1, "delays": [[1.0]]}, {"name": "matter_bin", "directions": 1, "delays": [[1.0]]}, {"name": "micro_laser", "directions": 1, "delays": [[1.0]]}, {"name": "micro_mani", "directions": 1, "delays": [[1.0]]}, {"name": "nano_mani", "directions": 1, "delays": [[1.0]]}, {"name": "pico_mani", "directions": 1, "delays": [[1.0]]}, {"name": "quadratic_capacitor", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1]]}, {"name": "quadultra_micro_laser", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "rom1", "directions": 1, "delays": [[1.0]]}, {"name": "rom2", "directions": 1, "delays": [[1.0]]}, {"name": "romos1", "directions": 1, "delays": [[1.0]]}, {"name": "romos2", "directions": 1, "delays": [[1.0]]}, {"name": "scan_module", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "subspace_amplifier", "directions": 1, "delays": [[0.2, 0.4, 0.2, 0.4]]}, {"name": "subspace_ansible", "directions": 1, "delays": [[1.0]]}, {"name": "subspace_transmitter", "directions": 1, "delays": [[1.0]]}, {"name": "super_capacitor", "directions": 1, "delays": [[1.0]]}, {"name": "super_electrolite", "directions": 1, "delays": [[0.1, 0.1]]}, {"name": "super_matter_bin", "directions": 1, "delays": [[1.0]]}, {"name": "super_scan_module", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "treatment_disk", "directions": 1, "delays": [[1.0]]}, {"name": "triphasic_scan_module", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "ultra_high_micro_laser", "directions": 1, "delays": [[1.0]]}, {"name": "vbox_0", "directions": 1, "delays": [[1.0]]}, {"name": "vbox_1", "directions": 1, "delays": [[1.0]]}, {"name": "vbox_2", "directions": 1, "delays": [[1.0]]}, {"name": "vbox_3", "directions": 1, "delays": [[1.0]]}, {"name": "wavelength_analyzer", "directions": 1, "delays": [[1.0]]}]} \ No newline at end of file diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/micro_laser.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/micro_laser.png new file mode 100644 index 0000000000..c23eea56f8 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/micro_laser.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/micro_mani.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/micro_mani.png new file mode 100644 index 0000000000..916ab58b95 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/micro_mani.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/nano_mani.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/nano_mani.png new file mode 100644 index 0000000000..0c9b5e9782 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/nano_mani.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/pico_mani.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/pico_mani.png new file mode 100644 index 0000000000..7775adb089 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/pico_mani.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/quadratic_capacitor.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/quadratic_capacitor.png new file mode 100644 index 0000000000..040196e6ae Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/quadratic_capacitor.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/quadultra_micro_laser.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/quadultra_micro_laser.png new file mode 100644 index 0000000000..cc907fa5e2 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/quadultra_micro_laser.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/rom1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/rom1.png new file mode 100644 index 0000000000..de47c6616d Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/rom1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/rom2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/rom2.png new file mode 100644 index 0000000000..381567f5d9 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/rom2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/romos1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/romos1.png new file mode 100644 index 0000000000..ae49c5dbbd Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/romos1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/romos2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/romos2.png new file mode 100644 index 0000000000..70f4dda801 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/romos2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/scan_module.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/scan_module.png new file mode 100644 index 0000000000..b95b803d8f Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/scan_module.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_amplifier.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_amplifier.png new file mode 100644 index 0000000000..8753260bf7 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_amplifier.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_ansible.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_ansible.png new file mode 100644 index 0000000000..74874a1136 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_ansible.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_transmitter.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_transmitter.png new file mode 100644 index 0000000000..d4acc06fe9 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/subspace_transmitter.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_capacitor.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_capacitor.png new file mode 100644 index 0000000000..fae341f862 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_capacitor.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_electrolite.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_electrolite.png new file mode 100644 index 0000000000..bf7787d999 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_electrolite.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_matter_bin.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_matter_bin.png new file mode 100644 index 0000000000..29972da9eb Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_matter_bin.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_scan_module.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_scan_module.png new file mode 100644 index 0000000000..240ab514d7 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/super_scan_module.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/treatment_disk.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/treatment_disk.png new file mode 100644 index 0000000000..c8af1657dd Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/treatment_disk.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/triphasic_scan_module.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/triphasic_scan_module.png new file mode 100644 index 0000000000..d3e7d72b57 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/triphasic_scan_module.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/ultra_high_micro_laser.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/ultra_high_micro_laser.png new file mode 100644 index 0000000000..3e65d639a5 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/ultra_high_micro_laser.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_0.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_0.png new file mode 100644 index 0000000000..fe1f8a9689 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_0.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_1.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_1.png new file mode 100644 index 0000000000..37ca3117dd Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_1.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_2.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_2.png new file mode 100644 index 0000000000..16cafe9075 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_2.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_3.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_3.png new file mode 100644 index 0000000000..d5e9423e09 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/vbox_3.png differ diff --git a/Resources/Textures/Constructible/Misc/stock_parts.rsi/wavelength_analyzer.png b/Resources/Textures/Constructible/Misc/stock_parts.rsi/wavelength_analyzer.png new file mode 100644 index 0000000000..80cd910785 Binary files /dev/null and b/Resources/Textures/Constructible/Misc/stock_parts.rsi/wavelength_analyzer.png differ diff --git a/Resources/Textures/Constructible/Structures/Walls/solid.rsi/meta.json b/Resources/Textures/Constructible/Structures/Walls/solid.rsi/meta.json index e3051c375c..c1c2f1c0d9 100644 --- a/Resources/Textures/Constructible/Structures/Walls/solid.rsi/meta.json +++ b/Resources/Textures/Constructible/Structures/Walls/solid.rsi/meta.json @@ -285,6 +285,15 @@ 1 ] ] + }, + { + "name": "reinforced_wall_girder", + "directions": 1, + "delays": [ + [ + 1 + ] + ] } ] } diff --git a/Resources/Textures/Constructible/Structures/Walls/solid.rsi/reinforced_wall_girder.png b/Resources/Textures/Constructible/Structures/Walls/solid.rsi/reinforced_wall_girder.png new file mode 100644 index 0000000000..98f353ccc2 Binary files /dev/null and b/Resources/Textures/Constructible/Structures/Walls/solid.rsi/reinforced_wall_girder.png differ diff --git a/Resources/Textures/Objects/Materials/sheets.rsi/meta.json b/Resources/Textures/Objects/Materials/sheets.rsi/meta.json index 332abbb513..346fc6797b 100644 --- a/Resources/Textures/Objects/Materials/sheets.rsi/meta.json +++ b/Resources/Textures/Objects/Materials/sheets.rsi/meta.json @@ -124,6 +124,46 @@ { "name": "metal", "directions": 1 - } + }, + { + "name": "plasteel-inhand-left", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "plasteel-inhand-right", + "directions": 4, + "delays": [ + [ + 1 + ], + [ + 1 + ], + [ + 1 + ], + [ + 1 + ] + ] + }, + { + "name": "plasteel", + "directions": 1 + }, ] } diff --git a/Resources/Textures/Objects/Materials/sheets.rsi/plasteel-inhand-left.png b/Resources/Textures/Objects/Materials/sheets.rsi/plasteel-inhand-left.png new file mode 100644 index 0000000000..8c2de1101f Binary files /dev/null and b/Resources/Textures/Objects/Materials/sheets.rsi/plasteel-inhand-left.png differ diff --git a/Resources/Textures/Objects/Materials/sheets.rsi/plasteel-inhand-right.png b/Resources/Textures/Objects/Materials/sheets.rsi/plasteel-inhand-right.png new file mode 100644 index 0000000000..f44e6ef744 Binary files /dev/null and b/Resources/Textures/Objects/Materials/sheets.rsi/plasteel-inhand-right.png differ diff --git a/Resources/Textures/Objects/Materials/sheets.rsi/plasteel.png b/Resources/Textures/Objects/Materials/sheets.rsi/plasteel.png new file mode 100644 index 0000000000..4bdeb83bc2 Binary files /dev/null and b/Resources/Textures/Objects/Materials/sheets.rsi/plasteel.png differ diff --git a/SpaceStation14.sln.DotSettings b/SpaceStation14.sln.DotSettings index e9230966bf..729f14f63c 100644 --- a/SpaceStation14.sln.DotSettings +++ b/SpaceStation14.sln.DotSettings @@ -55,6 +55,7 @@ UI UTF UV + True True True True @@ -111,6 +112,7 @@ True True True + True True True True @@ -138,6 +140,7 @@ True True True + True True True True