diff --git a/Content.Server/Labels/Label/LabelSystem.cs b/Content.Server/Labels/Label/LabelSystem.cs index 3aebd50446..e0e1bf3ffc 100644 --- a/Content.Server/Labels/Label/LabelSystem.cs +++ b/Content.Server/Labels/Label/LabelSystem.cs @@ -17,6 +17,8 @@ namespace Content.Server.Labels { [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; + public const string ContainerName = "paper_label"; + public override void Initialize() { base.Initialize(); @@ -31,7 +33,7 @@ namespace Content.Server.Labels private void OnComponentInit(EntityUid uid, PaperLabelComponent component, ComponentInit args) { - _itemSlotsSystem.AddItemSlot(uid, component.Name, component.LabelSlot); + _itemSlotsSystem.AddItemSlot(uid, ContainerName, component.LabelSlot); if (!EntityManager.TryGetComponent(uid, out AppearanceComponent? appearance)) return; diff --git a/Content.Server/Storage/Components/EntityStorageComponent.cs b/Content.Server/Storage/Components/EntityStorageComponent.cs index d189ae00a3..e301ed9204 100644 --- a/Content.Server/Storage/Components/EntityStorageComponent.cs +++ b/Content.Server/Storage/Components/EntityStorageComponent.cs @@ -114,7 +114,7 @@ namespace Content.Server.Storage.Components protected override void Initialize() { base.Initialize(); - Contents = Owner.EnsureContainer(nameof(EntityStorageComponent)); + Contents = Owner.EnsureContainer(EntityStorageSystem.ContainerName); Contents.ShowContents = _showContents; Contents.OccludesLight = _occludesLight; diff --git a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs index 0102f2acb6..e72a22930c 100644 --- a/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/EntityStorageSystem.cs @@ -12,6 +12,8 @@ public sealed class EntityStorageSystem : EntitySystem { [Dependency] private readonly PopupSystem _popupSystem = default!; + public const string ContainerName = "entity_storage"; + public override void Initialize() { base.Initialize(); diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index e4583eb1e1..cc331207f7 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -22,6 +22,7 @@ namespace Content.Shared.Containers.ItemSlots public sealed class ItemSlotsSystem : EntitySystem { [Dependency] private readonly ActionBlockerSystem _actionBlockerSystem = default!; + [Dependency] private readonly SharedContainerSystem _containers = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; [Dependency] private readonly IGameTiming _gameTiming = default!; @@ -72,7 +73,7 @@ namespace Content.Shared.Containers.ItemSlots { foreach (var (id, slot) in itemSlots.Slots) { - slot.ContainerSlot = ContainerHelpers.EnsureContainer(itemSlots.Owner, id); + slot.ContainerSlot = _containers.EnsureContainer(itemSlots.Owner, id); } } @@ -83,7 +84,7 @@ namespace Content.Shared.Containers.ItemSlots public void AddItemSlot(EntityUid uid, string id, ItemSlot slot) { var itemSlots = EntityManager.EnsureComponent(uid); - slot.ContainerSlot = ContainerHelpers.EnsureContainer(itemSlots.Owner, id); + slot.ContainerSlot = _containers.EnsureContainer(itemSlots.Owner, id); if (itemSlots.Slots.ContainsKey(id)) Logger.Error($"Duplicate item slot key. Entity: {EntityManager.GetComponent(itemSlots.Owner).EntityName} ({uid}), key: {id}"); itemSlots.Slots[id] = slot; diff --git a/Content.Shared/PowerCell/SharedPowerCellSystem.cs b/Content.Shared/PowerCell/SharedPowerCellSystem.cs index 3a0d819dfb..becc8a04da 100644 --- a/Content.Shared/PowerCell/SharedPowerCellSystem.cs +++ b/Content.Shared/PowerCell/SharedPowerCellSystem.cs @@ -9,6 +9,8 @@ public abstract class SharedPowerCellSystem : EntitySystem { [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; + public const string CellSlotContainer = "cell_slot"; + public override void Initialize() { base.Initialize(); @@ -58,7 +60,7 @@ public abstract class SharedPowerCellSystem : EntitySystem private void OnCellSlotInit(EntityUid uid, PowerCellSlotComponent component, ComponentInit args) { - _itemSlotsSystem.AddItemSlot(uid, "cellslot_cell_container", component.CellSlot); + _itemSlotsSystem.AddItemSlot(uid, CellSlotContainer, component.CellSlot); if (string.IsNullOrWhiteSpace(component.CellSlot.Name) && !string.IsNullOrWhiteSpace(component.SlotName)) diff --git a/Resources/Maps/Salvage/asteroid-base.yml b/Resources/Maps/Salvage/asteroid-base.yml index 1a83ebd312..9c29e14b92 100644 --- a/Resources/Maps/Salvage/asteroid-base.yml +++ b/Resources/Maps/Salvage/asteroid-base.yml @@ -1322,10 +1322,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 162 type: Rack components: @@ -1533,10 +1530,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 196 type: ClosetMaintenanceFilledRandom components: @@ -1545,10 +1539,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 197 type: SalvageCanisterSpawner components: diff --git a/Resources/Maps/Salvage/cargo-1.yml b/Resources/Maps/Salvage/cargo-1.yml index a02ac34245..bfe3989dba 100644 --- a/Resources/Maps/Salvage/cargo-1.yml +++ b/Resources/Maps/Salvage/cargo-1.yml @@ -668,9 +668,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 54 type: WallReinforced @@ -750,10 +750,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 65 type: ConveyorBelt components: diff --git a/Resources/Maps/Salvage/medium-crashed-shuttle.yml b/Resources/Maps/Salvage/medium-crashed-shuttle.yml index e09c03a953..b7d51364c2 100644 --- a/Resources/Maps/Salvage/medium-crashed-shuttle.yml +++ b/Resources/Maps/Salvage/medium-crashed-shuttle.yml @@ -834,10 +834,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 113 type: ClosetEmergencyFilledRandom components: @@ -846,10 +843,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 114 type: SubstationWallBasic components: diff --git a/Resources/Maps/Salvage/medium-dock.yml b/Resources/Maps/Salvage/medium-dock.yml index f9ccab381f..9e131af182 100644 --- a/Resources/Maps/Salvage/medium-dock.yml +++ b/Resources/Maps/Salvage/medium-dock.yml @@ -602,10 +602,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 59 type: Bed components: @@ -722,10 +719,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 78 type: SalvageCanisterSpawner components: diff --git a/Resources/Maps/Salvage/medium-pet-hospital.yml b/Resources/Maps/Salvage/medium-pet-hospital.yml index 00d237081b..0f2f789b32 100644 --- a/Resources/Maps/Salvage/medium-pet-hospital.yml +++ b/Resources/Maps/Salvage/medium-pet-hospital.yml @@ -1257,9 +1257,7 @@ entities: - pos: 2.643423,-9.525697 parent: 0 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 87 type: Paper components: @@ -2124,10 +2122,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 200 type: WardrobeMedicalDoctorFilled components: @@ -2136,10 +2131,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 201 type: ClothingOuterWinterMed components: diff --git a/Resources/Maps/Salvage/medium-pirate.yml b/Resources/Maps/Salvage/medium-pirate.yml index fa8422ed23..4fe41d4897 100644 --- a/Resources/Maps/Salvage/medium-pirate.yml +++ b/Resources/Maps/Salvage/medium-pirate.yml @@ -732,9 +732,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 77 type: WallReinforced @@ -793,9 +793,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 86 type: DrinkShinyFlask diff --git a/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml b/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml index 9d37daff6a..5c2bd5e806 100644 --- a/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml +++ b/Resources/Maps/Salvage/medium-ruined-emergency-shuttle.yml @@ -1482,10 +1482,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 132 type: ClosetEmergencyFilledRandom components: @@ -1494,10 +1491,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 133 type: ClosetEmergencyFilledRandom components: @@ -1506,10 +1500,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 134 type: SalvageMaterialCrateSpawner components: @@ -1537,9 +1528,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 138 type: ClosetBase @@ -1549,10 +1540,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 139 type: CrateGenericSteel components: @@ -1562,9 +1550,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 140 type: SalvageCanisterSpawner diff --git a/Resources/Maps/Salvage/medium-silent-orchestra.yml b/Resources/Maps/Salvage/medium-silent-orchestra.yml index a752c48e40..8157458699 100644 --- a/Resources/Maps/Salvage/medium-silent-orchestra.yml +++ b/Resources/Maps/Salvage/medium-silent-orchestra.yml @@ -955,10 +955,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 56 type: LockerBoozeFilled components: @@ -967,10 +964,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 57 type: LockerMedicineFilled components: @@ -979,10 +973,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 58 type: MonkeyCubeWrapped components: @@ -1291,10 +1282,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 100 type: ClosetBase components: @@ -1303,10 +1291,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 101 type: ClosetBase components: @@ -1315,10 +1300,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 102 type: FoodBurgerClown components: diff --git a/Resources/Maps/Salvage/medium-vault-1.yml b/Resources/Maps/Salvage/medium-vault-1.yml index 2f4a42bcf8..358623bea8 100644 --- a/Resources/Maps/Salvage/medium-vault-1.yml +++ b/Resources/Maps/Salvage/medium-vault-1.yml @@ -862,9 +862,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17 type: WallReinforced diff --git a/Resources/Maps/Salvage/ruin-cargo-salvage.yml b/Resources/Maps/Salvage/ruin-cargo-salvage.yml index 117283a5c2..ae9d0fc2d8 100644 --- a/Resources/Maps/Salvage/ruin-cargo-salvage.yml +++ b/Resources/Maps/Salvage/ruin-cargo-salvage.yml @@ -807,10 +807,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 106 type: SignalButton components: @@ -827,10 +824,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 108 type: AirlockCargoLocked components: @@ -1201,9 +1195,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 159 type: SalvageMobSpawner75 @@ -1267,10 +1261,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 169 type: SalvageMobSpawner components: diff --git a/Resources/Maps/Salvage/small-2.yml b/Resources/Maps/Salvage/small-2.yml index dc8c03b592..ca956bd81a 100644 --- a/Resources/Maps/Salvage/small-2.yml +++ b/Resources/Maps/Salvage/small-2.yml @@ -405,10 +405,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 15 type: TableCarpet components: diff --git a/Resources/Maps/Salvage/small-3.yml b/Resources/Maps/Salvage/small-3.yml index a9870a1a54..c9936c9855 100644 --- a/Resources/Maps/Salvage/small-3.yml +++ b/Resources/Maps/Salvage/small-3.yml @@ -76,10 +76,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3 type: SalvageMaterialCrateSpawner components: @@ -106,10 +103,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7 type: ClosetLegal components: @@ -118,10 +112,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8 type: SalvageCanisterSpawner components: @@ -277,8 +268,5 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + ... diff --git a/Resources/Maps/Salvage/small-ai-survey-drone.yml b/Resources/Maps/Salvage/small-ai-survey-drone.yml index c1538fd224..9da1c0f126 100644 --- a/Resources/Maps/Salvage/small-ai-survey-drone.yml +++ b/Resources/Maps/Salvage/small-ai-survey-drone.yml @@ -597,9 +597,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 37 type: CableApcExtension @@ -732,9 +732,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 53 type: TableReinforced @@ -847,9 +847,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 67 type: LockerWeldingSuppliesFilled @@ -859,10 +859,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 68 type: ReinforcedWindow components: diff --git a/Resources/Maps/Salvage/stationstation.yml b/Resources/Maps/Salvage/stationstation.yml index c95bd6c0ad..e234bb737a 100644 --- a/Resources/Maps/Salvage/stationstation.yml +++ b/Resources/Maps/Salvage/stationstation.yml @@ -880,10 +880,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 128 type: LockerMedical components: @@ -893,10 +890,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 129 type: LockerMedical components: @@ -906,10 +900,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 130 type: LockerMedical components: @@ -919,10 +910,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 131 type: CrateMedical components: @@ -933,9 +921,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 132 type: CrateMedical @@ -947,9 +935,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 133 type: Beaker @@ -2240,9 +2228,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 267 type: Table @@ -2565,10 +2553,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 320 type: MedkitFilled components: @@ -2598,10 +2583,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 323 type: FireExtinguisher components: @@ -3045,10 +3027,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 390 type: WallSolid components: @@ -3271,18 +3250,14 @@ entities: - pos: -1.934832,-5.154238 parent: 179 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 422 type: FlashlightLantern components: - pos: -2.017696,-5.71715 parent: 179 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 423 type: Crowbar components: @@ -3496,10 +3471,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 454 type: WallSolid components: @@ -3948,10 +3920,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 525 type: ClosetToolFilled components: @@ -3961,10 +3930,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 526 type: ClosetToolFilled components: @@ -3974,10 +3940,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 527 type: ClosetToolFilled components: @@ -3987,10 +3950,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 528 type: ClosetToolFilled components: @@ -4000,10 +3960,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 529 type: SheetGlass components: diff --git a/Resources/Maps/Salvage/tick-colony.yml b/Resources/Maps/Salvage/tick-colony.yml index 69560fbc55..5c444cda16 100644 --- a/Resources/Maps/Salvage/tick-colony.yml +++ b/Resources/Maps/Salvage/tick-colony.yml @@ -659,10 +659,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 86 type: ClosetMaintenance components: @@ -671,10 +668,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 87 type: CratePlasma components: @@ -687,9 +681,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 88 type: SalvageHumanCorpse diff --git a/Resources/Maps/Salvage/wh-salvage.yml b/Resources/Maps/Salvage/wh-salvage.yml index f5fe426194..526599b69f 100644 --- a/Resources/Maps/Salvage/wh-salvage.yml +++ b/Resources/Maps/Salvage/wh-salvage.yml @@ -1251,10 +1251,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 112 type: ClosetBase components: @@ -1263,10 +1260,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 113 type: SalvageMaterialCrateSpawner components: diff --git a/Resources/Maps/atlas.yml b/Resources/Maps/atlas.yml index b6994c9ddc..2a302a5e05 100644 --- a/Resources/Maps/atlas.yml +++ b/Resources/Maps/atlas.yml @@ -264,7 +264,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 23 @@ -9091,7 +9091,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 177 type: Dresser @@ -9565,7 +9565,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 247 @@ -9764,7 +9764,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 292 - 291 @@ -9973,7 +9973,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 302 type: ComfyChair @@ -11854,7 +11854,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 485 @@ -12120,7 +12120,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 522 type: BoxFolderBlack @@ -12337,7 +12337,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 547 type: Poweredlight @@ -12782,7 +12782,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 596 type: BoxFolderYellow @@ -13549,7 +13549,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 705 @@ -14961,7 +14961,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 857 type: TableWood @@ -15393,7 +15393,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 915 @@ -15461,7 +15461,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 925 type: ChairOfficeDark @@ -15572,7 +15572,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1555 - 1206 @@ -15592,7 +15592,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 940 @@ -16049,7 +16049,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 1006 @@ -17824,7 +17824,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1203 @@ -18367,7 +18367,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1274 @@ -18427,7 +18427,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1280 type: ClosetBase @@ -18438,7 +18438,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1281 type: ContainerContainer @@ -20061,7 +20061,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1475 @@ -20323,7 +20323,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1496 @@ -20607,7 +20607,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1524 type: DisposalUnit @@ -21150,7 +21150,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1584 @@ -21169,7 +21169,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1586 @@ -21559,7 +21559,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1633 @@ -21630,7 +21630,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1511 type: ContainerContainer @@ -21661,7 +21661,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1646 type: FoodBanana @@ -21736,7 +21736,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1655 @@ -21748,7 +21748,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1656 @@ -21768,7 +21768,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1658 @@ -21841,7 +21841,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1668 @@ -27241,7 +27241,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2235 @@ -28012,7 +28012,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2336 type: MedkitBruteFilled @@ -29240,7 +29240,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -31612,7 +31612,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2705 type: ReinforcedWindow @@ -31635,7 +31635,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2708 @@ -31770,7 +31770,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -31782,7 +31782,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -31979,7 +31979,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2744 @@ -32017,7 +32017,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2749 @@ -36255,7 +36255,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3235 @@ -36785,7 +36785,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3288 @@ -38925,7 +38925,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3516 @@ -45558,7 +45558,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4124 @@ -45578,7 +45578,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4126 @@ -45640,7 +45640,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4133 @@ -45700,7 +45700,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4140 @@ -46115,7 +46115,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4193 @@ -47109,9 +47109,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4314 type: WallSolid @@ -49332,9 +49332,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4609 type: ChairOfficeDark @@ -50064,7 +50064,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5073 type: ContainerContainer @@ -53869,7 +53869,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5075 @@ -53881,7 +53881,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5076 @@ -54108,7 +54108,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5097 @@ -54120,7 +54120,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5098 @@ -54303,7 +54303,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5127 @@ -54428,7 +54428,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5138 @@ -58173,7 +58173,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5593 @@ -58358,7 +58358,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5612 @@ -60470,7 +60470,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5835 @@ -61174,7 +61174,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5913 @@ -61302,7 +61302,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5928 type: ExtinguisherCabinetFilled @@ -63078,7 +63078,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7062 type: ContainerContainer @@ -63380,7 +63380,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6197 @@ -63513,7 +63513,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6214 @@ -65147,7 +65147,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6362 type: FlashlightLantern @@ -65158,7 +65158,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6363 type: Multitool @@ -66886,7 +66886,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5115 type: ContainerContainer @@ -66911,7 +66911,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6530 @@ -67995,7 +67995,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6641 @@ -68091,7 +68091,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6656 @@ -68528,7 +68528,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6705 @@ -68596,7 +68596,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6713 type: BlastDoor @@ -71409,9 +71409,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7000 type: CrateEngineeringAMEShielding @@ -71425,9 +71425,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7001 type: CrateEngineeringAMEShielding @@ -71441,9 +71441,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7002 type: WallReinforced @@ -71629,7 +71629,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7023 @@ -71748,9 +71748,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7035 type: Table @@ -71964,7 +71964,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7061 @@ -72665,9 +72665,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7130 type: CableApcExtension @@ -72773,7 +72773,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7142 @@ -73748,7 +73748,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7256 @@ -73760,7 +73760,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7257 @@ -74622,7 +74622,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7354 diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index 2414f0a3e2..a78c3efba7 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -25221,7 +25221,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -25370,10 +25370,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 250 type: Poweredlight components: @@ -25990,7 +25987,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -26033,7 +26030,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -26317,9 +26314,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 363 type: AirlockMaintLocked components: @@ -28768,10 +28763,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 660 type: SignElectricalMed components: @@ -29494,10 +29486,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 730 type: Table components: @@ -29536,9 +29525,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 735 type: GasPipeStraight @@ -30711,9 +30700,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 877 type: GasPipeTJunction @@ -31323,9 +31312,7 @@ entities: type: HandheldLight - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 930 type: SurveillanceCameraRouterService components: @@ -36764,10 +36751,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1446 type: LockerElectricalSuppliesFilled components: @@ -36776,10 +36760,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1447 type: AirlockEngineeringLocked components: @@ -37620,9 +37601,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1541 type: CableMV components: @@ -38445,10 +38424,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1642 type: ChairOfficeDark components: @@ -38464,10 +38440,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1644 type: Table components: @@ -38494,10 +38467,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1648 type: WallReinforced components: @@ -38553,9 +38523,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1654 type: CableHV components: @@ -38939,9 +38907,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1701 type: Chair components: @@ -38956,10 +38922,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1703 type: CableMV components: @@ -39208,10 +39171,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1729 type: AirlockHeadOfSecurityGlassLocked components: @@ -40572,7 +40532,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1886 - 1885 @@ -41753,10 +41713,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1970 type: AirlockSecurityGlassLocked components: @@ -42178,10 +42135,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2009 type: ReinforcedPlasmaWindow components: @@ -42449,9 +42403,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2035 type: CableApcExtension @@ -42580,9 +42534,9 @@ entities: - folded: True type: Foldable - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2050 type: WallSolid @@ -42792,10 +42746,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2079 type: WallSolid components: @@ -42875,10 +42826,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2090 type: Poweredlight components: @@ -43410,9 +43358,7 @@ entities: type: HandheldLight - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2131 type: GasPipeStraight components: @@ -43548,9 +43494,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2146 type: MedkitAdvancedFilled components: @@ -43578,10 +43522,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2149 type: PlushieLizard components: @@ -43755,10 +43696,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2174 type: Rack components: @@ -45113,10 +45051,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2329 type: WaterTankFull components: @@ -47312,10 +47247,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2530 type: VendingMachineChemDrobe components: @@ -47879,9 +47811,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2594 type: WardrobeMixedFilled @@ -47891,10 +47823,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2595 type: SignBiohazardMed components: @@ -48125,10 +48054,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2624 type: SpawnPointChef components: @@ -48359,10 +48285,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2648 type: CableMV components: @@ -51126,10 +51049,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2963 type: AirlockMedicalLocked components: @@ -51144,10 +51064,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2965 type: WallReinforced components: @@ -51829,10 +51746,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3037 type: ClosetL3VirologyFilled components: @@ -51841,10 +51755,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3038 type: BoxSyringe components: @@ -52253,10 +52164,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3074 type: WallReinforced components: @@ -52367,9 +52275,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 3091 type: WallReinforced components: @@ -53034,10 +52940,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3170 type: SignBio components: @@ -53622,10 +53525,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3236 type: Rack components: @@ -54341,10 +54241,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3345 type: AirlockEngineeringLocked components: @@ -54499,10 +54396,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3369 type: WallReinforced components: @@ -54587,10 +54481,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3381 type: Grille components: @@ -54991,9 +54882,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3441 type: PoweredSmallLight @@ -55425,10 +55316,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3503 type: WallReinforced components: @@ -56310,9 +56198,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3601 type: ToolboxElectricalFilled @@ -56362,10 +56250,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3607 type: ClosetEmergencyFilledRandom components: @@ -56374,10 +56259,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3608 type: Rack components: @@ -57400,9 +57282,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3757 type: RandomSpawner @@ -58105,10 +57987,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3854 type: WallReinforced components: @@ -59662,10 +59541,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4008 type: AirlockMaintLocked components: @@ -59778,10 +59654,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4020 type: FirelockGlass components: @@ -60092,10 +59965,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4053 type: Rack components: @@ -60377,10 +60247,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4094 type: ClosetEmergencyFilledRandom components: @@ -60389,10 +60256,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4095 type: ClosetEmergencyFilledRandom components: @@ -60401,10 +60265,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4096 type: ClosetEmergencyFilledRandom components: @@ -60413,10 +60274,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4097 type: WelderIndustrial components: @@ -60441,10 +60299,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4100 type: ClosetMaintenanceFilledRandom components: @@ -60453,10 +60308,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4101 type: ClosetL3JanitorFilled components: @@ -60465,10 +60317,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4102 type: ClosetMaintenanceFilledRandom components: @@ -60477,10 +60326,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4103 type: ClosetTool components: @@ -60489,10 +60335,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4104 type: WallSolid components: @@ -60551,10 +60394,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4110 type: GasPipeTJunction components: @@ -61592,9 +61432,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 4235 type: LampGold components: @@ -61603,9 +61441,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 4236 type: Paper components: @@ -61648,10 +61484,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4242 type: WallSolid components: @@ -61938,9 +61771,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 4279 type: SpawnPointLawyer components: @@ -63694,10 +63525,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4514 type: DisposalTrunk components: @@ -64208,9 +64036,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 4552 type: WallReinforced components: @@ -69031,10 +68857,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5130 type: ClosetEmergencyFilledRandom components: @@ -69043,10 +68866,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5131 type: Poweredlight components: @@ -70748,10 +70568,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5321 type: ClosetFireFilled components: @@ -70760,10 +70577,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5322 type: ClosetMaintenanceFilledRandom components: @@ -70772,10 +70586,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5323 type: ClosetMaintenanceFilledRandom components: @@ -70784,10 +70595,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5324 type: BoxFolderRed components: @@ -70818,9 +70626,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5327 type: CableApcExtension components: @@ -72681,10 +72487,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5543 type: WallReinforced components: @@ -73292,9 +73095,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5612 type: FoodSnackChips components: @@ -73395,10 +73196,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5625 type: SpawnPointResearchDirector components: @@ -74861,10 +74659,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5773 type: WallReinforced components: @@ -75539,9 +75334,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5846 type: TableWood components: @@ -76396,10 +76189,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5937 type: WallSolid components: @@ -77741,10 +77531,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6056 type: PoweredSmallLight components: @@ -77818,10 +77605,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6062 type: GasPipeBend components: @@ -78639,10 +78423,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6137 type: FirelockEdge components: @@ -79404,10 +79185,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6236 type: CableHV components: @@ -79516,10 +79294,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6253 type: WallReinforced components: @@ -81199,9 +80974,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 6447 type: Rack components: @@ -81217,7 +80990,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5812 type: ContainerContainer @@ -81364,10 +81137,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6468 type: RandomPosterLegit components: @@ -81442,9 +81212,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 6480 type: CableApcExtension components: @@ -82232,9 +82000,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6583 type: SignEngineering @@ -82437,9 +82205,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 6610 type: AcousticGuitarInstrument components: @@ -84558,10 +84324,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6859 type: Catwalk components: @@ -86271,10 +86034,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7102 type: WallSolid components: @@ -87148,9 +86908,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7217 type: BoxLightMixed @@ -88934,7 +88694,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7548 - 8958 @@ -90370,9 +90130,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 7639 type: Chair components: @@ -91071,10 +90829,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7721 type: FirelockGlass components: @@ -91669,10 +91424,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7797 type: WallReinforced components: @@ -92098,9 +91850,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 7856 type: GasPipeStraight components: @@ -92975,9 +92725,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 7971 type: BoxFolderYellow components: @@ -93074,7 +92822,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 9064 - 1450 @@ -94450,10 +94198,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8151 type: TableReinforcedGlass components: @@ -95252,10 +94997,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8242 type: SpawnPointSecurityOfficer components: @@ -96461,10 +96203,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8405 type: StoolBar components: @@ -99915,9 +99654,7 @@ entities: type: HandheldLight - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8883 type: WallReinforced components: @@ -100054,10 +99791,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8897 type: DisposalPipe components: @@ -100249,10 +99983,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8920 type: WallReinforced components: @@ -101556,10 +101287,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9078 type: MaintenanceToolSpawner components: @@ -102261,7 +101989,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 21168 @@ -102274,7 +102002,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -102354,7 +102082,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -102474,7 +102202,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -102486,7 +102214,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -102516,7 +102244,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -102614,10 +102342,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9217 type: CableApcExtension components: @@ -104003,10 +103728,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9415 type: ClosetRadiationSuitFilled components: @@ -104015,10 +103737,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9416 type: ChairOfficeLight components: @@ -104642,7 +104361,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -104886,9 +104605,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 9534 type: PowerCellRecharger components: @@ -105210,10 +104927,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9573 type: LockerScienceFilled components: @@ -105222,10 +104936,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9574 type: LockerScienceFilled components: @@ -105234,10 +104945,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9575 type: Rack components: @@ -105350,10 +105058,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9590 type: PottedPlantRandom components: @@ -117452,9 +117157,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11469 type: PottedPlantRandom @@ -117548,9 +117253,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11480 type: Chair @@ -117586,10 +117291,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11485 type: ClosetBase components: @@ -117598,10 +117300,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11486 type: Rack components: @@ -118784,10 +118483,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11680 type: CrateEngineeringCableMV components: @@ -118800,9 +118496,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11681 type: trayScanner @@ -120157,7 +119853,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -120169,7 +119865,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 9214 @@ -120182,7 +119878,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -126594,7 +126290,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -126642,10 +126338,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12876 type: CableHV components: @@ -128119,10 +127812,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13100 type: BedsheetQM components: @@ -128273,9 +127963,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 13121 type: RubberStampTrader components: @@ -129200,10 +128888,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13214 type: KitchenMicrowave components: @@ -129460,10 +129145,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13245 type: OxygenCanister components: @@ -129478,10 +129160,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13247 type: LockerSalvageSpecialistFilled components: @@ -129490,10 +129169,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13248 type: AirlockSalvageGlassLocked components: @@ -130955,10 +130631,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13484 type: PoweredSmallLight components: @@ -131749,10 +131422,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13569 type: Rack components: @@ -131823,10 +131493,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13576 type: RandomPosterAny components: @@ -132017,10 +131684,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13599 type: WindowReinforcedDirectional components: @@ -133482,10 +133146,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13798 type: LockerEngineerFilled components: @@ -133494,10 +133155,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13799 type: LockerEngineerFilled components: @@ -133506,10 +133164,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13800 type: LockerEngineerFilled components: @@ -133518,10 +133173,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13801 type: WindowReinforcedDirectional components: @@ -134375,10 +134027,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13917 type: CrateScienceSecure components: @@ -134391,9 +134040,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 13918 type: Catwalk @@ -136338,9 +135987,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 14129 type: Windoor components: @@ -136739,9 +136386,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 14186 type: TableWood components: @@ -138997,9 +138642,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 14438 type: ClothingEyesGlasses components: @@ -139650,7 +139293,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 14510 @@ -141185,10 +140828,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14721 type: ClosetFireFilled components: @@ -141197,10 +140837,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14722 type: GasThermoMachineHeater components: @@ -145129,10 +144766,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15185 type: LockerAtmosphericsFilled components: @@ -145141,10 +144775,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15186 type: LockerAtmosphericsFilled components: @@ -145153,10 +144784,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15187 type: PlaqueAtmos components: @@ -147963,10 +147591,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15540 type: ClosetRadiationSuitFilled components: @@ -147975,10 +147600,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15541 type: SignRadiationMed components: @@ -147999,10 +147621,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15544 type: ClosetRadiationSuitFilled components: @@ -148011,10 +147630,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15545 type: Grille components: @@ -151983,9 +151599,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16062 type: CrateEngineeringAMEShielding @@ -151999,9 +151615,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16063 type: CrateEngineeringAMEShielding @@ -152015,9 +151631,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16064 type: AMEController @@ -152288,10 +151904,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16096 type: LockerElectricalSuppliesFilled components: @@ -152300,10 +151913,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16097 type: PosterLegitHelpOthers components: @@ -154815,10 +154425,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16455 type: ClosetRadiationSuitFilled components: @@ -154827,10 +154434,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16456 type: ParticleAcceleratorControlBoxUnfinished components: @@ -155509,9 +155113,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16553 type: ComputerSolarControl @@ -159159,9 +158763,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17024 type: SheetSteel @@ -159257,10 +158861,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17036 type: WallReinforced components: @@ -161509,9 +161110,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17386 type: DrinkWhiskeyBottleFull components: @@ -164092,9 +163691,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17676 type: MaintenanceWeaponSpawner components: @@ -164148,9 +163745,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17684 type: RandomInstruments components: @@ -164588,7 +164183,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 17739 - 17737 @@ -164981,10 +164576,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17784 type: ClosetFireFilled components: @@ -164993,10 +164585,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17785 type: Chair components: @@ -165327,9 +164916,7 @@ entities: type: HandheldLight - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17822 type: WaterCooler components: @@ -165515,10 +165102,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17845 type: MaintenanceToolSpawner components: @@ -166118,10 +165702,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17902 type: ClosetBase components: @@ -166130,10 +165711,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17903 type: OxygenCanister components: @@ -170105,7 +169683,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 18548 - 18547 @@ -170379,9 +169957,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 18476 type: DrinkFlask components: @@ -170530,10 +170106,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18493 type: OxygenCanister components: @@ -170608,10 +170181,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18505 type: Bed components: @@ -170835,9 +170405,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 18529 type: PhoneInstrument components: @@ -171337,10 +170905,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18580 type: Poweredlight components: @@ -171530,10 +171095,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18603 type: ClosetFireFilled components: @@ -171542,10 +171104,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18604 type: Rack components: @@ -172429,9 +171988,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 18692 type: GasPipeStraight @@ -176072,10 +175631,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19086 type: CarpetOrange components: @@ -176507,10 +176063,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19149 type: LockerElectricalSuppliesFilled components: @@ -176519,10 +176072,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19150 type: RadioHandheld components: @@ -176913,9 +176463,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 19194 type: PoweredSmallLight components: @@ -177703,9 +177251,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 19315 type: CableApcExtension @@ -178946,10 +178494,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19475 type: ClosetFireFilled components: @@ -178958,10 +178503,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19476 type: VendingMachineCola components: @@ -179351,9 +178893,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 19532 type: ChairOfficeDark components: @@ -180661,10 +180201,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19729 type: Rack components: @@ -180732,10 +180269,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19739 type: WelderIndustrialAdvanced components: @@ -181839,10 +181373,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19893 type: ClosetFireFilled components: @@ -181851,10 +181382,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19894 type: WallSolid components: @@ -182029,9 +181557,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 19920 type: ClothingHandsGlovesBoxingBlue components: @@ -183035,9 +182561,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 20066 type: Rack components: @@ -185234,9 +184758,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 20421 type: ChairOfficeDark @@ -191037,7 +190561,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 21241 type: ClothingMaskBreath @@ -191083,7 +190607,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 21246 type: PoweredSmallLight diff --git a/Resources/Maps/barratry.yml b/Resources/Maps/barratry.yml index ea1ee2dd40..d68759f69a 100644 --- a/Resources/Maps/barratry.yml +++ b/Resources/Maps/barratry.yml @@ -231,7 +231,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8 @@ -480,9 +480,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 39 type: GasPipeFourway @@ -855,7 +855,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 78 @@ -22184,7 +22184,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 332 @@ -23615,7 +23615,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 493 @@ -26026,7 +26026,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 862 @@ -26038,7 +26038,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 863 @@ -36391,9 +36391,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2311 type: Window @@ -37230,9 +37230,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2415 type: AirlockMaintLocked @@ -37329,9 +37329,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2429 type: CableHV @@ -37390,7 +37390,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 2437 @@ -37403,7 +37403,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 2436 @@ -38051,7 +38051,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2513 @@ -38063,7 +38063,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2514 @@ -39787,7 +39787,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2685 @@ -42235,7 +42235,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2981 @@ -43093,7 +43093,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3088 @@ -43420,7 +43420,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3135 @@ -43745,9 +43745,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3175 type: chem_dispenser @@ -43972,7 +43972,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3204 @@ -44246,7 +44246,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3241 @@ -44329,7 +44329,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3251 @@ -45118,7 +45118,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3362 @@ -45177,7 +45177,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3370 @@ -45315,7 +45315,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3388 @@ -45327,7 +45327,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3389 @@ -45477,7 +45477,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3410 @@ -45489,7 +45489,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3411 @@ -45501,7 +45501,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3412 @@ -45513,7 +45513,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3413 @@ -45704,7 +45704,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3442 @@ -45716,7 +45716,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3443 @@ -45728,7 +45728,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3444 @@ -45870,7 +45870,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3461 @@ -45937,7 +45937,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3470 type: WindoorSecure @@ -46006,7 +46006,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3479 @@ -46018,7 +46018,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3480 @@ -48484,7 +48484,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3749 @@ -48496,7 +48496,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3750 @@ -48508,7 +48508,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3751 @@ -48520,7 +48520,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3752 @@ -48858,7 +48858,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3791 @@ -49978,7 +49978,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3901 @@ -49990,7 +49990,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3902 @@ -50002,7 +50002,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3903 @@ -50193,7 +50193,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3918 @@ -50279,7 +50279,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3927 @@ -50699,9 +50699,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3971 type: CrateGenericSteel @@ -50715,9 +50715,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3972 type: CrateGenericSteel @@ -50731,9 +50731,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3973 type: Chair @@ -52054,7 +52054,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4095 @@ -52066,7 +52066,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4096 @@ -55126,9 +55126,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4377 type: Table @@ -56475,9 +56475,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4497 type: DisposalPipe @@ -57025,7 +57025,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4551 @@ -74801,7 +74801,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6091 @@ -74826,7 +74826,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6093 @@ -74947,7 +74947,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6110 @@ -74959,7 +74959,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 9301 - 6063 @@ -74973,7 +74973,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6112 @@ -75076,9 +75076,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6123 type: Chair @@ -77169,7 +77169,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6348 @@ -77460,9 +77460,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6388 type: CrateMaterialGlass @@ -77476,9 +77476,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6389 type: Table @@ -77718,7 +77718,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -77729,7 +77729,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -77740,7 +77740,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -77751,7 +77751,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -77762,7 +77762,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -77773,7 +77773,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -77939,7 +77939,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6445 @@ -78384,9 +78384,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6488 type: ChairOfficeLight @@ -79522,7 +79522,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6606 @@ -88171,7 +88171,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 7416 type: BoxHandcuff @@ -88554,9 +88554,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7457 type: SpawnMobMcGriff @@ -88589,7 +88589,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7461 @@ -91520,7 +91520,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7732 @@ -92252,7 +92252,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7801 @@ -92264,7 +92264,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7802 @@ -100400,7 +100400,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8542 @@ -105946,7 +105946,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9073 @@ -112310,9 +112310,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9647 type: ReinforcedWindow @@ -116955,7 +116955,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10009 @@ -117042,7 +117042,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10014 @@ -117657,7 +117657,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10068 @@ -118969,7 +118969,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10240 @@ -118981,7 +118981,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10241 @@ -119271,7 +119271,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10280 @@ -119283,7 +119283,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10281 @@ -119295,7 +119295,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10282 @@ -119781,7 +119781,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 12569 type: ContainerContainer @@ -120242,7 +120242,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10401 @@ -120626,7 +120626,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10453 @@ -120638,7 +120638,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10454 @@ -120650,7 +120650,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10455 @@ -120704,7 +120704,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10461 @@ -120719,9 +120719,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 10462 type: Table @@ -121393,7 +121393,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10528 @@ -121531,7 +121531,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10542 @@ -121543,7 +121543,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10543 @@ -121568,9 +121568,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 10545 type: VendingMachineSciDrobe @@ -122777,7 +122777,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10688 @@ -122789,7 +122789,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10689 @@ -122807,7 +122807,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10691 @@ -122819,7 +122819,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10692 @@ -123601,7 +123601,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10788 @@ -123613,7 +123613,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10789 @@ -124121,7 +124121,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10831 @@ -124646,9 +124646,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 10875 type: Crowbar @@ -128609,7 +128609,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11199 @@ -129645,7 +129645,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11289 type: ChairOfficeDark @@ -130256,7 +130256,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11350 @@ -130501,7 +130501,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11373 type: LampGold @@ -130512,7 +130512,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11374 type: Grille @@ -130549,7 +130549,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11379 @@ -130594,7 +130594,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11383 @@ -130938,7 +130938,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11422 @@ -131725,7 +131725,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11499 @@ -131737,7 +131737,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11500 @@ -131749,7 +131749,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11501 @@ -131761,7 +131761,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11502 @@ -131773,7 +131773,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11503 @@ -131785,7 +131785,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11504 @@ -131797,7 +131797,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11505 @@ -132573,7 +132573,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11578 @@ -132585,7 +132585,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11579 @@ -132693,7 +132693,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11593 @@ -132705,7 +132705,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11594 @@ -132717,7 +132717,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11595 @@ -132849,7 +132849,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11611 @@ -132861,7 +132861,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11612 @@ -132934,7 +132934,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11618 @@ -132946,7 +132946,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11619 @@ -132958,7 +132958,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11620 @@ -132970,7 +132970,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11621 @@ -132982,7 +132982,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11622 @@ -132994,7 +132994,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11623 @@ -134627,7 +134627,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11813 @@ -134639,7 +134639,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11814 @@ -135762,7 +135762,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11947 @@ -136992,7 +136992,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12093 @@ -137004,7 +137004,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12094 @@ -137016,7 +137016,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12095 @@ -137065,7 +137065,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12099 type: MaintenanceFluffSpawner @@ -137136,7 +137136,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12109 type: CableHV @@ -137347,7 +137347,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12133 type: SpawnMobMouse @@ -137376,7 +137376,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12137 type: SpawnMobMouse @@ -138031,7 +138031,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12226 type: RandomSpawner @@ -138142,7 +138142,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -138160,7 +138160,7 @@ entities: parent: 106 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -140097,9 +140097,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 12465 type: FirelockEdge @@ -141362,7 +141362,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12614 type: WallReinforced @@ -141628,7 +141628,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12646 @@ -141793,7 +141793,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12671 @@ -143262,7 +143262,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12869 @@ -143274,7 +143274,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12870 @@ -143286,7 +143286,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12871 @@ -143298,7 +143298,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12872 @@ -143911,7 +143911,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12929 @@ -146850,7 +146850,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13186 @@ -146862,7 +146862,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13187 @@ -147395,7 +147395,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13262 diff --git a/Resources/Maps/delta.yml b/Resources/Maps/delta.yml index 77361c61dc..86be20d2b2 100644 --- a/Resources/Maps/delta.yml +++ b/Resources/Maps/delta.yml @@ -35664,7 +35664,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 118 @@ -38420,7 +38420,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 445 type: Bed @@ -38451,7 +38451,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 449 type: LockerHeadOfPersonnelFilled @@ -38462,7 +38462,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 450 @@ -39204,7 +39204,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 507 type: CigarGold @@ -40001,7 +40001,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 578 type: CableApcExtension @@ -40484,7 +40484,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 632 @@ -40623,7 +40623,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 644 type: Bed @@ -42630,7 +42630,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 858 type: WallSolid @@ -46409,7 +46409,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1246 type: TableWood @@ -47325,9 +47325,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 1337 type: PosterLegitNanotrasenLogo @@ -47430,7 +47430,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1346 @@ -47636,7 +47636,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1367 @@ -48128,7 +48128,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1432 @@ -48206,7 +48206,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1444 @@ -48391,7 +48391,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1463 @@ -48535,7 +48535,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1479 @@ -49554,7 +49554,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1593 @@ -52516,7 +52516,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1914 @@ -52565,7 +52565,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1920 type: CableApcExtension @@ -53594,7 +53594,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2014 @@ -57147,7 +57147,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2373 @@ -57159,7 +57159,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2374 @@ -57963,7 +57963,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2443 @@ -57975,7 +57975,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2444 @@ -58754,7 +58754,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2535 @@ -58766,7 +58766,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2536 @@ -58857,7 +58857,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2544 type: Crowbar @@ -61867,7 +61867,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2910 type: PoweredSmallLight @@ -63756,7 +63756,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3106 type: CableApcStack @@ -66891,7 +66891,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3490 @@ -66905,7 +66905,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3491 @@ -68401,9 +68401,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3642 type: ClosetBase @@ -68414,7 +68414,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3643 @@ -71042,7 +71042,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71444,7 +71444,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71464,7 +71464,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71476,7 +71476,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71487,7 +71487,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71498,7 +71498,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71509,7 +71509,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71521,7 +71521,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71533,7 +71533,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71590,9 +71590,9 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3932 type: BodyBag_Folded @@ -71601,9 +71601,9 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3933 type: BodyBag_Folded @@ -71612,9 +71612,9 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3934 type: Table @@ -72084,7 +72084,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3976 @@ -72096,7 +72096,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3977 @@ -72534,7 +72534,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4037 @@ -77836,9 +77836,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4487 type: OxygenCanister @@ -77858,9 +77858,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4489 type: AirlockMedicalGlassLocked @@ -77906,7 +77906,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4494 @@ -78939,9 +78939,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4621 type: CrateFreezer @@ -78955,9 +78955,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4622 type: ClosetBase @@ -78968,7 +78968,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4623 @@ -79423,7 +79423,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4662 @@ -79435,7 +79435,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4663 @@ -80615,7 +80615,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4794 @@ -80627,7 +80627,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4795 @@ -81662,7 +81662,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4899 @@ -82145,7 +82145,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4944 @@ -82157,7 +82157,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4945 @@ -82169,7 +82169,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4946 @@ -83682,9 +83682,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5164 type: ClosetL3VirologyFilled @@ -83695,7 +83695,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5165 @@ -83707,7 +83707,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5166 @@ -85975,7 +85975,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5351 type: Bed @@ -89179,7 +89179,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5653 @@ -89191,7 +89191,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5654 @@ -89695,9 +89695,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5704 type: CrateEngineeringAMEJar @@ -89711,9 +89711,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5705 type: CrateEngineeringAMEShielding @@ -89727,9 +89727,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5706 type: SubstationBasic @@ -90157,7 +90157,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5740 @@ -90169,7 +90169,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5741 @@ -90785,7 +90785,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5821 type: WeldingFuelTankFull @@ -91248,9 +91248,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5860 type: FlashlightLantern @@ -91261,7 +91261,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5861 type: ClosetEmergencyFilledRandom @@ -91272,7 +91272,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5862 @@ -93298,7 +93298,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6167 @@ -93310,7 +93310,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6168 @@ -93458,9 +93458,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6183 type: Wrench @@ -94222,7 +94222,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6252 type: CrateGenericSteel @@ -94236,9 +94236,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6253 type: ClothingHeadHatCone @@ -94296,7 +94296,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6261 @@ -94314,7 +94314,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6263 @@ -94326,7 +94326,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6264 @@ -94338,7 +94338,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6265 @@ -94378,7 +94378,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6270 @@ -94390,7 +94390,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6271 @@ -94730,9 +94730,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6314 type: ContainmentFieldGenerator @@ -95095,7 +95095,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6362 type: ClothingHeadHelmetHardsuitEngineering @@ -95106,7 +95106,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6363 type: ClothingHeadHelmetHardsuitEngineering @@ -95117,7 +95117,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6364 type: ClothingMaskBreath @@ -95518,7 +95518,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6411 @@ -95530,7 +95530,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6412 @@ -97988,7 +97988,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6621 @@ -98000,7 +98000,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6622 @@ -100648,7 +100648,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6848 @@ -100672,7 +100672,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6851 @@ -100684,7 +100684,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6852 @@ -100696,7 +100696,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6853 @@ -100896,7 +100896,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 33518 - 33517 @@ -100942,7 +100942,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6882 type: TableWood @@ -100959,7 +100959,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6884 type: PottedPlantRandom @@ -101384,7 +101384,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6933 type: CigarGold @@ -102873,7 +102873,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7065 @@ -102885,7 +102885,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7066 @@ -103890,7 +103890,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7178 @@ -105342,7 +105342,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 30552 - 30553 @@ -107213,7 +107213,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 7516 type: DoubleEmergencyOxygenTankFilled @@ -108410,7 +108410,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 7667 type: ClothingOuterVestHazard @@ -115730,7 +115730,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8412 @@ -115742,7 +115742,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8413 @@ -115754,7 +115754,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8414 @@ -116588,7 +116588,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8482 @@ -116600,7 +116600,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8483 @@ -117636,7 +117636,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8561 @@ -117660,7 +117660,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8563 @@ -120610,7 +120610,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8880 @@ -128091,7 +128091,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9574 @@ -128103,7 +128103,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9575 @@ -128171,7 +128171,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9585 @@ -129382,7 +129382,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9746 @@ -129394,7 +129394,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9747 @@ -129466,7 +129466,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 9756 type: DrinkBottleOfNothingFull @@ -130305,7 +130305,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9839 @@ -131023,7 +131023,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9920 @@ -131035,7 +131035,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9921 @@ -131308,9 +131308,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9943 type: FoodCondimentBottleEnzyme @@ -133653,7 +133653,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10206 @@ -133859,7 +133859,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10228 @@ -135096,7 +135096,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10362 @@ -135108,7 +135108,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10363 @@ -135120,7 +135120,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 10364 @@ -135794,9 +135794,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 10457 type: Bucket @@ -137394,7 +137394,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 10675 type: FirelockElectronics @@ -139739,7 +139739,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 10929 type: CarpetOrange @@ -139875,7 +139875,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 10949 type: PottedPlantRandom @@ -139968,7 +139968,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 10956 type: PosterLegitNanotrasenLogo @@ -140853,7 +140853,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11084 type: PottedPlantRandom @@ -140882,7 +140882,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11087 type: Lamp @@ -140893,7 +140893,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11088 type: ChairOfficeDark @@ -143475,7 +143475,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11355 type: ClothingMaskBreath @@ -143497,9 +143497,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11357 type: PartRodMetal @@ -143599,7 +143599,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11369 @@ -143655,7 +143655,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11376 @@ -143670,9 +143670,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11377 type: AirlockMaintLocked @@ -143707,7 +143707,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11380 @@ -146218,9 +146218,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11618 type: Rack @@ -146260,9 +146260,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11623 type: FlashlightLantern @@ -146273,7 +146273,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11624 type: Girder @@ -146290,7 +146290,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11626 @@ -146506,7 +146506,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11645 @@ -150199,7 +150199,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11984 @@ -150214,9 +150214,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11985 type: FlashlightLantern @@ -150227,7 +150227,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11986 type: RadioHandheld @@ -150246,7 +150246,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11988 type: CableMV @@ -157139,7 +157139,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12544 @@ -157151,7 +157151,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12545 @@ -157163,7 +157163,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12546 @@ -157722,7 +157722,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12612 @@ -157734,7 +157734,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12613 @@ -157981,7 +157981,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12637 type: HandLabeler @@ -158024,7 +158024,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12642 type: PersonalAI @@ -159403,7 +159403,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12756 @@ -159415,7 +159415,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12757 @@ -160653,7 +160653,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12910 @@ -160742,9 +160742,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 12920 type: ClosetMaintenanceFilledRandom @@ -160755,7 +160755,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12921 @@ -162318,7 +162318,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13108 @@ -162330,7 +162330,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13109 @@ -162680,7 +162680,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13153 @@ -163293,7 +163293,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 13216 type: Mirror @@ -163816,9 +163816,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 13290 type: Bucket @@ -164912,7 +164912,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13442 @@ -165919,7 +165919,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13598 @@ -165931,7 +165931,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13599 @@ -165943,7 +165943,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13600 @@ -166289,7 +166289,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13632 @@ -166775,7 +166775,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13698 @@ -166787,7 +166787,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13699 @@ -166808,7 +166808,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13701 @@ -168385,7 +168385,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13906 @@ -168397,7 +168397,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13907 @@ -168409,7 +168409,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13908 @@ -168421,7 +168421,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13909 @@ -174841,7 +174841,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 14434 @@ -174853,7 +174853,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 14435 @@ -176434,7 +176434,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 14668 type: lanternextrabright @@ -176445,7 +176445,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 14669 type: ChairWood @@ -177017,7 +177017,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 14746 type: BoxFolderGrey @@ -177593,7 +177593,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 14825 type: MaterialWoodPlank @@ -177950,7 +177950,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -177962,7 +177962,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -177974,7 +177974,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -178016,7 +178016,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -178028,7 +178028,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -178040,7 +178040,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -178052,7 +178052,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -179519,7 +179519,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 14975 @@ -180951,7 +180951,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 15148 type: BoxFolderGrey @@ -180989,7 +180989,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 15152 type: d20Dice @@ -181420,7 +181420,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15212 @@ -181432,7 +181432,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15213 @@ -182956,7 +182956,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15327 @@ -183769,9 +183769,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15424 type: CrateEmergencyInternals @@ -183785,9 +183785,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15425 type: SheetGlass @@ -183842,7 +183842,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15431 @@ -183857,9 +183857,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15432 type: WallSolid @@ -184281,7 +184281,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 15470 type: Rack @@ -184920,7 +184920,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15548 @@ -187811,7 +187811,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15789 @@ -187832,9 +187832,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15791 type: MaintenanceWeaponSpawner @@ -187860,9 +187860,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15794 type: Rack @@ -188057,7 +188057,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15812 @@ -188069,7 +188069,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15813 @@ -188081,7 +188081,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15814 @@ -188093,7 +188093,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15815 @@ -191681,7 +191681,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16117 @@ -191693,7 +191693,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16118 @@ -191705,7 +191705,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16119 @@ -191751,7 +191751,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16125 @@ -192073,7 +192073,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16174 @@ -192740,7 +192740,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 16238 type: ChairOfficeDark @@ -194477,7 +194477,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16424 @@ -197100,9 +197100,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16716 type: CrateFilledSpawner @@ -197128,9 +197128,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16719 type: CrateEmergencyInternals @@ -197144,9 +197144,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16720 type: CrateFilledSpawner @@ -197166,9 +197166,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16722 type: AirlockMaintCargoLocked @@ -197401,7 +197401,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16743 @@ -197770,7 +197770,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 16784 type: PoweredSmallLight @@ -199484,9 +199484,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16961 type: CrateGenericSteel @@ -199500,9 +199500,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16962 type: WallSolid @@ -201191,7 +201191,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 17127 type: BoxFolderYellow @@ -201852,7 +201852,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17175 @@ -201893,7 +201893,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 17180 type: Poweredlight @@ -201930,9 +201930,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17183 type: CrateFilledSpawner @@ -201955,7 +201955,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17186 @@ -203633,9 +203633,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17359 type: Poweredlight @@ -203769,7 +203769,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17378 @@ -203781,7 +203781,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17379 @@ -204613,7 +204613,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 17469 type: AirlockMaintLocked @@ -204889,7 +204889,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17503 @@ -209144,7 +209144,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17881 @@ -211558,7 +211558,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18138 @@ -212111,7 +212111,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18214 @@ -212123,7 +212123,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18215 @@ -212135,7 +212135,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18216 @@ -212147,7 +212147,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18217 @@ -212159,7 +212159,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18218 @@ -212171,7 +212171,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18219 @@ -212994,7 +212994,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18298 @@ -213006,7 +213006,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18299 @@ -213018,7 +213018,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18300 @@ -213210,7 +213210,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18323 @@ -213792,7 +213792,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 18409 type: Lamp @@ -213803,7 +213803,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 18410 type: PottedPlantRandom @@ -214243,7 +214243,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 18475 type: Lamp @@ -214254,7 +214254,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 18476 type: BriefcaseBrown @@ -216283,7 +216283,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18724 @@ -217406,7 +217406,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18893 @@ -220454,7 +220454,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19177 @@ -220796,7 +220796,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19230 @@ -221142,7 +221142,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 19277 type: APCBasic @@ -221266,7 +221266,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 19292 type: PoweredSmallLight @@ -221330,7 +221330,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19296 @@ -222411,7 +222411,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19451 @@ -222435,7 +222435,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 19454 type: Rack @@ -222637,7 +222637,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19475 @@ -224039,7 +224039,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19633 @@ -224699,7 +224699,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19694 @@ -227905,7 +227905,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20086 type: BoxFolderRed @@ -228197,7 +228197,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20115 @@ -228345,7 +228345,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20136 @@ -228501,7 +228501,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 33863 type: ContainerContainer @@ -230309,7 +230309,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20330 @@ -230321,7 +230321,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20331 @@ -231099,7 +231099,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20416 @@ -231125,7 +231125,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20419 type: ComputerCriminalRecords @@ -231289,7 +231289,7 @@ entities: parent: 60 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -232417,7 +232417,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20562 @@ -232429,7 +232429,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20563 @@ -232908,7 +232908,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20607 @@ -232920,7 +232920,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20608 type: TableReinforced @@ -233288,7 +233288,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20654 type: WallReinforced @@ -233390,7 +233390,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20669 type: WallReinforced @@ -241389,7 +241389,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21743 @@ -241401,7 +241401,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21744 @@ -241517,7 +241517,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21751 @@ -257218,7 +257218,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 23522 @@ -257230,7 +257230,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 23523 @@ -257242,7 +257242,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 23524 @@ -257254,7 +257254,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 23525 @@ -278937,7 +278937,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 25251 @@ -320304,7 +320304,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 28650 @@ -320545,7 +320545,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 28669 @@ -337968,7 +337968,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 30090 type: TableWood @@ -339515,7 +339515,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 30263 type: BoxFolderGrey @@ -343751,9 +343751,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30729 type: CrateEmergencyInternals @@ -343767,9 +343767,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30730 type: ClosetToolFilled @@ -343780,7 +343780,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30731 @@ -343792,7 +343792,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30732 @@ -344474,7 +344474,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30791 @@ -344486,7 +344486,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30792 @@ -344498,7 +344498,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30793 @@ -344510,7 +344510,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30794 @@ -345021,9 +345021,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30849 type: CrateEngineeringAMEShielding @@ -345037,9 +345037,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30850 type: CrateEngineeringAMEControl @@ -345053,9 +345053,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30851 type: CableApcExtension @@ -345103,9 +345103,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30855 type: CrateEngineeringAMEJar @@ -345119,9 +345119,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 30856 type: PowerCellRecharger @@ -346391,7 +346391,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30979 @@ -346403,7 +346403,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 30980 @@ -346716,7 +346716,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31029 @@ -346824,7 +346824,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31046 @@ -346978,7 +346978,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31070 @@ -347267,7 +347267,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31106 @@ -347398,7 +347398,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31125 @@ -347470,7 +347470,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31136 @@ -347578,7 +347578,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31153 @@ -347971,7 +347971,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 31203 type: ExtinguisherCabinetFilled @@ -348365,7 +348365,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 31253 type: ClothingMaskGasSecurity @@ -348541,7 +348541,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 31273 @@ -351007,9 +351007,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 31607 type: HydroponicsToolSpade @@ -351150,7 +351150,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 31634 - 31633 @@ -351438,10 +351438,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 31663 - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 31660 type: Bookshelf @@ -356249,7 +356249,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32251 @@ -356261,7 +356261,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32252 @@ -356273,7 +356273,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32253 @@ -356285,7 +356285,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32254 @@ -356297,7 +356297,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32255 @@ -356309,7 +356309,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32256 @@ -356321,7 +356321,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32257 @@ -356333,7 +356333,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32258 @@ -358193,7 +358193,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32497 @@ -358205,7 +358205,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32498 @@ -359139,7 +359139,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 32620 type: ClosetBase @@ -359150,7 +359150,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32621 @@ -360104,7 +360104,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32750 @@ -360116,7 +360116,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32751 @@ -360128,7 +360128,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 32752 @@ -364495,7 +364495,7 @@ entities: - canCollide: False type: Physics - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] storagebase: !type:Container ents: [] @@ -366740,7 +366740,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 33303 type: PoweredSmallLight @@ -371380,9 +371380,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 33856 type: PlasticFlapsAirtightOpaque diff --git a/Resources/Maps/infiltrator.yml b/Resources/Maps/infiltrator.yml index 9e97ddaa46..6f48d828cd 100644 --- a/Resources/Maps/infiltrator.yml +++ b/Resources/Maps/infiltrator.yml @@ -5911,7 +5911,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 600 @@ -5923,7 +5923,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 601 @@ -6750,7 +6750,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 692 type: LockerSyndicatePersonal @@ -6763,7 +6763,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 693 @@ -6795,7 +6795,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 724 - 752 @@ -6815,7 +6815,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 841 - 718 @@ -6835,7 +6835,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 845 - 842 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 3460c826ed..cfba4bb8ac 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -25671,7 +25671,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 420 @@ -25683,7 +25683,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 421 @@ -25695,7 +25695,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 422 @@ -25848,9 +25848,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 443 type: AirlockMaintKitchenLocked @@ -25915,7 +25915,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 452 @@ -25935,7 +25935,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 454 @@ -26094,7 +26094,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 477 @@ -26106,7 +26106,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 478 @@ -26138,7 +26138,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 482 @@ -26262,9 +26262,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 495 type: FoodMeat @@ -26571,7 +26571,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 539 @@ -26583,7 +26583,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 540 @@ -26606,9 +26606,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 542 type: ShuttersNormal @@ -27642,7 +27642,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 673 type: FoodBanana @@ -28052,7 +28052,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 730 @@ -28256,7 +28256,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 765 - 764 @@ -28273,7 +28273,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 760 type: ContainerContainer @@ -28541,7 +28541,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 796 @@ -28620,7 +28620,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 804 type: SignDirectionalEvac @@ -30006,7 +30006,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1027 type: CarpetGreen @@ -30308,7 +30308,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1073 @@ -31833,7 +31833,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1276 @@ -31845,7 +31845,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1277 @@ -31857,7 +31857,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1278 @@ -31971,7 +31971,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1292 @@ -31983,7 +31983,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1293 @@ -31995,7 +31995,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1294 @@ -32334,7 +32334,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1347 @@ -32346,7 +32346,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1348 @@ -32358,7 +32358,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1349 @@ -33001,7 +33001,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1442 type: FirelockGlass @@ -33152,7 +33152,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1461 @@ -33540,7 +33540,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1519 type: BoxFolderBlue @@ -33697,7 +33697,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1537 type: APCBasic @@ -34351,7 +34351,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1635 type: FlashlightLantern @@ -34362,7 +34362,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1636 type: HandheldGPSBasic @@ -35175,7 +35175,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1763 @@ -35187,7 +35187,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1764 @@ -35199,7 +35199,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1765 @@ -35265,7 +35265,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1774 type: SignInterrogation @@ -36216,7 +36216,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1929 - 1931 @@ -36683,7 +36683,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1984 @@ -36949,7 +36949,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2011 @@ -37102,7 +37102,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2029 @@ -37122,7 +37122,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2031 type: Stunbaton @@ -37133,7 +37133,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2032 type: ClothingEyesGlassesSecurity @@ -37396,7 +37396,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2073 @@ -37408,7 +37408,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2074 @@ -37454,7 +37454,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2080 @@ -37466,7 +37466,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2081 @@ -37478,7 +37478,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2082 @@ -37490,7 +37490,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2083 @@ -37502,7 +37502,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2084 @@ -37606,7 +37606,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2098 type: Stunbaton @@ -37617,7 +37617,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2099 type: Stunbaton @@ -37628,7 +37628,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2100 type: WeaponTaser @@ -37847,7 +37847,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2127 @@ -38253,7 +38253,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2181 type: ChairOfficeDark @@ -38278,7 +38278,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2184 type: LampGold @@ -38289,7 +38289,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2185 type: LampGold @@ -38300,7 +38300,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2186 type: BoxFolderRed @@ -38636,7 +38636,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 2234 @@ -38753,7 +38753,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2247 @@ -38772,7 +38772,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2249 @@ -38784,7 +38784,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2250 @@ -38796,7 +38796,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2251 @@ -39692,7 +39692,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2377 @@ -39704,7 +39704,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2378 @@ -39716,7 +39716,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2379 @@ -53288,7 +53288,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3501 @@ -53425,9 +53425,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3521 type: APCBasic @@ -59808,7 +59808,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4444 type: RandomPosterLegit @@ -63508,7 +63508,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4954 type: VendingMachineCigs @@ -63740,7 +63740,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4988 @@ -63788,7 +63788,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4995 type: AirlockCaptainGlassLocked @@ -63999,7 +63999,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5024 type: ChairOfficeDark @@ -67874,7 +67874,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5615 - 5664 @@ -68343,7 +68343,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5663 @@ -68657,7 +68657,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5705 type: Fireplace @@ -68860,7 +68860,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5728 @@ -69104,7 +69104,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5745 @@ -74684,7 +74684,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6446 @@ -75539,7 +75539,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6568 @@ -76482,7 +76482,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6699 @@ -76920,7 +76920,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6753 @@ -76932,7 +76932,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6754 @@ -76944,7 +76944,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6755 @@ -76975,9 +76975,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6758 type: WeaponCapacitorRecharger @@ -77553,7 +77553,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 21256 type: ContainerContainer @@ -77827,7 +77827,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 6913 @@ -78081,7 +78081,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 6914 @@ -78094,7 +78094,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 6915 @@ -78107,7 +78107,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 6916 @@ -78591,7 +78591,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6977 @@ -78603,7 +78603,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6978 @@ -78809,7 +78809,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 7000 type: EmergencyRollerBed @@ -79412,9 +79412,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7088 type: BlastDoor @@ -79519,7 +79519,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7102 @@ -79531,7 +79531,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7103 @@ -80217,7 +80217,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7210 @@ -80229,7 +80229,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7211 @@ -80688,7 +80688,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7276 @@ -80748,7 +80748,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7282 @@ -80760,7 +80760,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7283 @@ -80789,7 +80789,7 @@ entities: removedMasks: 20 type: EntityStorage - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7284 @@ -80801,7 +80801,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7285 @@ -85504,7 +85504,7 @@ entities: parent: 30 type: Transform - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 7744 type: WallSolid @@ -89809,7 +89809,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8337 @@ -91627,7 +91627,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8607 @@ -96243,7 +96243,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9080 @@ -96255,7 +96255,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9081 @@ -96267,7 +96267,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9082 @@ -97101,7 +97101,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9201 @@ -97276,7 +97276,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9227 @@ -97288,7 +97288,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9228 @@ -97428,7 +97428,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9243 @@ -97440,7 +97440,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9244 @@ -97764,7 +97764,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9293 @@ -98736,7 +98736,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9430 @@ -98768,7 +98768,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9434 @@ -98786,7 +98786,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9436 @@ -98798,7 +98798,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9437 @@ -98870,7 +98870,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 9446 type: ChairOfficeDark @@ -99061,9 +99061,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9476 type: AMEController @@ -99086,9 +99086,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9478 type: CrateEngineeringAMEShielding @@ -99102,9 +99102,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9479 type: Table @@ -99754,9 +99754,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9579 type: SpawnPointStationEngineer @@ -99926,7 +99926,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 9329 type: ContainerContainer @@ -103482,7 +103482,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9994 @@ -103494,7 +103494,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9995 @@ -103506,7 +103506,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9996 @@ -103518,7 +103518,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9997 @@ -103530,7 +103530,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9998 @@ -113115,7 +113115,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11246 @@ -113127,7 +113127,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11247 @@ -113297,7 +113297,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11268 @@ -113566,9 +113566,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11300 type: Rack @@ -114063,7 +114063,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11363 type: ClothingShoeSlippersDuck @@ -114082,7 +114082,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 11365 type: ContainerContainer @@ -115510,7 +115510,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11569 @@ -115557,7 +115557,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11573 type: ComfyChair @@ -116015,7 +116015,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 11626 type: Grille @@ -117136,7 +117136,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11763 @@ -117148,7 +117148,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11764 @@ -117160,7 +117160,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11765 @@ -121819,9 +121819,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 12312 type: HandLabeler @@ -121848,7 +121848,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12315 @@ -125938,7 +125938,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12771 @@ -125950,7 +125950,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12772 @@ -125998,7 +125998,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12777 @@ -126179,7 +126179,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 12802 type: WallReinforced @@ -126872,7 +126872,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12882 @@ -126884,7 +126884,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12883 @@ -126917,7 +126917,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12887 @@ -129162,7 +129162,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13090 @@ -130696,7 +130696,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13341 @@ -130749,7 +130749,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13347 @@ -130867,7 +130867,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13357 @@ -131305,7 +131305,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13392 @@ -131650,7 +131650,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13447 @@ -133303,7 +133303,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 13720 @@ -146842,7 +146842,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15048 @@ -147047,7 +147047,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15075 @@ -147693,7 +147693,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15158 @@ -148160,7 +148160,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15229 @@ -148216,7 +148216,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15237 @@ -152978,7 +152978,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15970 @@ -152990,7 +152990,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 15971 @@ -153051,7 +153051,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 15979 type: RandomSpawner @@ -153247,7 +153247,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 15996 type: LampGold @@ -153258,7 +153258,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 15997 type: ClothingBeltHolster @@ -153549,7 +153549,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16040 @@ -153561,7 +153561,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16041 @@ -153573,7 +153573,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16042 @@ -153585,7 +153585,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16043 @@ -153597,7 +153597,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16044 @@ -154777,9 +154777,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16171 type: ClosetEmergencyFilledRandom @@ -154790,7 +154790,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16172 @@ -154802,7 +154802,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16173 @@ -154814,7 +154814,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 16174 type: PosterLegitCleanliness @@ -155116,7 +155116,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16213 @@ -155128,7 +155128,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16214 @@ -155196,7 +155196,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16224 @@ -155342,7 +155342,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16237 @@ -158945,9 +158945,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16814 type: ClosetEmergencyFilledRandom @@ -158958,7 +158958,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16815 @@ -158970,7 +158970,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16816 @@ -159008,7 +159008,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16821 @@ -159602,7 +159602,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 16911 type: FoodCakeBirthdaySlice @@ -159745,7 +159745,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16929 @@ -159819,7 +159819,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16939 @@ -160037,7 +160037,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16967 @@ -160049,7 +160049,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16968 @@ -160260,7 +160260,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16985 @@ -160275,9 +160275,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16986 type: Table @@ -160347,7 +160347,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16995 @@ -160359,7 +160359,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16996 @@ -160371,7 +160371,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 16997 @@ -162518,7 +162518,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17341 @@ -163443,7 +163443,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 17476 type: FoodBreadPlain @@ -163552,7 +163552,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17491 @@ -164502,7 +164502,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17623 @@ -164570,7 +164570,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -166743,7 +166743,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17953 @@ -166755,7 +166755,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 17954 @@ -166799,7 +166799,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 17959 type: FlashlightLantern @@ -166810,7 +166810,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 17960 type: AirlockGlass @@ -168121,7 +168121,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18177 @@ -174364,7 +174364,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 18786 @@ -178820,7 +178820,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 19432 type: VendingMachineGames @@ -179314,7 +179314,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 19505 type: LampGold @@ -179325,7 +179325,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 19506 type: SignSpace @@ -179563,7 +179563,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19538 @@ -179746,7 +179746,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19559 @@ -180220,7 +180220,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 19622 - 19620 @@ -180280,7 +180280,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19626 @@ -180317,9 +180317,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 19630 type: PoweredSmallLight @@ -180589,7 +180589,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19670 @@ -181504,7 +181504,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19795 @@ -181713,7 +181713,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19815 @@ -181725,7 +181725,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 19816 @@ -185158,7 +185158,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20325 @@ -186455,9 +186455,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 20468 type: CheapRollerBed @@ -186656,7 +186656,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20495 @@ -186668,7 +186668,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20496 type: SpaceCash @@ -189045,9 +189045,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 20880 type: Floodlight @@ -189058,7 +189058,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20881 type: Floodlight @@ -189069,7 +189069,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 20882 type: SheetPlasma @@ -190235,7 +190235,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21047 @@ -190499,7 +190499,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21090 @@ -190968,7 +190968,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 21159 type: PoweredSmallLight @@ -191912,7 +191912,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191924,7 +191924,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191936,7 +191936,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191948,7 +191948,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191960,7 +191960,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191972,7 +191972,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191984,7 +191984,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -191996,7 +191996,7 @@ entities: parent: 30 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -192050,7 +192050,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21256 @@ -193732,7 +193732,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21460 @@ -193744,7 +193744,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 21461 diff --git a/Resources/Maps/moose.yml b/Resources/Maps/moose.yml index 13bfd2cdfc..90c149cff9 100644 --- a/Resources/Maps/moose.yml +++ b/Resources/Maps/moose.yml @@ -230,7 +230,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 7 type: WallReinforced @@ -573,7 +573,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 56 @@ -11685,7 +11685,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 76 @@ -12007,7 +12007,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 118 type: PosterContrabandShamblersJuice @@ -13159,7 +13159,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 273 type: ComputerComms @@ -19762,7 +19762,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 975 @@ -19774,7 +19774,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 976 @@ -20129,7 +20129,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1048 - 1047 @@ -20385,7 +20385,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1049 type: Stunbaton @@ -20396,7 +20396,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1050 type: Stunbaton @@ -20407,7 +20407,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1051 type: WallSolid @@ -20624,7 +20624,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1080 @@ -20636,7 +20636,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1081 @@ -22809,7 +22809,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1297 @@ -25852,7 +25852,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1688 @@ -25870,7 +25870,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1690 @@ -27112,7 +27112,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1823 - 1824 @@ -27353,7 +27353,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1847 type: BoxFolderYellow @@ -28889,7 +28889,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2043 @@ -28901,7 +28901,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2044 @@ -30348,7 +30348,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 8896 - 8769 @@ -31372,7 +31372,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2348 @@ -31448,7 +31448,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2353 @@ -31489,7 +31489,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2358 type: ShellShotgunBeanbag @@ -32576,7 +32576,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2454 @@ -37845,7 +37845,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3010 @@ -39442,7 +39442,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -39773,7 +39773,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3212 type: BoxFolderWhite @@ -39835,7 +39835,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3219 @@ -39868,9 +39868,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3222 type: TableGlass @@ -40105,7 +40105,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3240 @@ -40117,7 +40117,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3241 @@ -40349,7 +40349,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3267 @@ -40811,7 +40811,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 3324 @@ -40849,7 +40849,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -40861,7 +40861,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -40873,7 +40873,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -40885,7 +40885,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -40897,7 +40897,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -40909,7 +40909,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -40921,7 +40921,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -41646,7 +41646,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -43873,7 +43873,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3680 @@ -43885,7 +43885,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3681 type: OxygenCanister @@ -43914,7 +43914,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3685 type: WallReinforced @@ -49082,7 +49082,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4243 type: TrashBananaPeel @@ -49390,7 +49390,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4284 @@ -49490,7 +49490,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4295 @@ -49502,7 +49502,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4296 @@ -49540,7 +49540,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 4302 - 4301 @@ -50178,7 +50178,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4385 @@ -50335,7 +50335,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4404 @@ -50355,7 +50355,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4406 type: Welder @@ -52024,7 +52024,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4558 @@ -52036,7 +52036,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4559 @@ -52137,9 +52137,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4574 type: AsteroidRock @@ -52837,7 +52837,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4661 @@ -52849,7 +52849,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4662 @@ -55698,7 +55698,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5025 type: Railing @@ -55823,7 +55823,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5044 type: Railing @@ -55876,7 +55876,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5051 type: Railing @@ -55960,7 +55960,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5062 @@ -56954,7 +56954,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5203 @@ -59280,7 +59280,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5537 @@ -60753,7 +60753,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5695 @@ -60765,7 +60765,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5696 @@ -61368,7 +61368,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5773 @@ -61380,7 +61380,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5774 @@ -61921,7 +61921,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5841 @@ -61933,7 +61933,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5842 @@ -63350,7 +63350,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6043 @@ -63642,7 +63642,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6088 type: ComfyChair @@ -63666,7 +63666,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 6096 type: ContainerContainer @@ -66430,7 +66430,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6415 @@ -67507,7 +67507,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6568 @@ -70767,7 +70767,7 @@ entities: parent: 61 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -71159,7 +71159,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7001 @@ -72481,7 +72481,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7174 @@ -74681,7 +74681,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7466 @@ -76166,7 +76166,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7690 @@ -76445,7 +76445,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7733 @@ -77698,9 +77698,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7901 type: AMEPart @@ -78820,7 +78820,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8009 @@ -79613,7 +79613,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8109 @@ -80320,7 +80320,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8191 @@ -82653,7 +82653,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8474 @@ -82686,9 +82686,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8478 type: Table @@ -82768,12 +82768,12 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 8489 - 8446 - 7901 - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8489 type: AMEPart @@ -83426,7 +83426,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8577 @@ -83469,7 +83469,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8582 @@ -83836,7 +83836,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 8638 - 8626 @@ -86807,9 +86807,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9029 type: LockerWeldingSuppliesFilled @@ -86820,7 +86820,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9030 @@ -87378,7 +87378,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9102 @@ -87452,7 +87452,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 9112 type: MagazineRifleRubber @@ -87568,7 +87568,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9126 @@ -87750,7 +87750,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9152 @@ -87762,7 +87762,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9153 @@ -87893,7 +87893,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 9166 type: Table @@ -88599,7 +88599,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 9254 type: WardrobeFormal @@ -88610,7 +88610,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9255 @@ -88622,7 +88622,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9256 @@ -88634,7 +88634,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9257 @@ -89494,7 +89494,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 9375 type: MaintenanceFluffSpawner @@ -89790,7 +89790,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9415 @@ -89814,7 +89814,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 9418 diff --git a/Resources/Maps/nss_pillar.yml b/Resources/Maps/nss_pillar.yml index 561015aae4..21ac2d9f92 100644 --- a/Resources/Maps/nss_pillar.yml +++ b/Resources/Maps/nss_pillar.yml @@ -1231,10 +1231,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 114 type: BoxBeanbag components: @@ -1386,10 +1383,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 130 components: - noRot: True @@ -21606,10 +21600,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 151 type: Table components: @@ -22093,10 +22084,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 224 type: CrateEmptySpawner components: @@ -22716,10 +22704,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 314 type: CarpetOrange components: @@ -23176,10 +23161,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 374 type: WallSolid components: @@ -25097,10 +25079,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 641 type: ReinforcedWindow components: @@ -26132,10 +26111,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 786 type: ReinforcedWindow components: @@ -26175,10 +26151,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 792 type: Chair components: @@ -26236,10 +26209,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 801 type: WallReinforced components: @@ -26683,10 +26653,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 865 type: WardrobePrisonFilled components: @@ -26695,10 +26662,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 866 type: WardrobePrisonFilled components: @@ -26707,10 +26671,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 867 type: DisposalPipe components: @@ -26758,10 +26719,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 871 type: WardrobePrisonFilled components: @@ -26770,10 +26728,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 872 type: WardrobePrisonFilled components: @@ -26782,10 +26737,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 873 type: CableMV components: @@ -28902,10 +28854,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1117 type: ChairOfficeDark components: @@ -28926,10 +28875,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1120 type: WallSolid components: @@ -29595,10 +29541,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1211 type: CrateServiceJanitorialSupplies components: @@ -29611,9 +29554,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 1212 type: MopBucket @@ -29930,10 +29873,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1256 type: WallSolid components: @@ -30392,10 +30332,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1317 type: PottedPlantRandom components: @@ -30446,10 +30383,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1322 type: Grille components: @@ -30509,10 +30443,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1328 type: LockerEvidence components: @@ -30521,10 +30452,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1329 type: LockerEvidence components: @@ -30533,10 +30461,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1330 type: ReinforcedWindow components: @@ -31699,10 +31624,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1497 type: ClosetFireFilled components: @@ -31711,10 +31633,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1498 type: Grille components: @@ -31895,10 +31814,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1525 type: Chair components: @@ -31949,10 +31865,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1532 type: Chair components: @@ -32236,10 +32149,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1562 type: Grille components: @@ -32527,10 +32437,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1606 type: ReinforcedWindow components: @@ -33297,10 +33204,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1711 type: Grille components: @@ -33364,10 +33268,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1721 type: WallReinforced components: @@ -33424,10 +33325,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1730 type: WallReinforced components: @@ -37319,10 +37217,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2209 type: CableApcExtension components: @@ -37641,9 +37536,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2255 type: ClothingBackpackDuffelSurgeryFilled @@ -37667,9 +37562,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2257 type: AirlockMedicalScienceGlassLocked @@ -37963,10 +37858,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2289 type: GasPipeStraight components: @@ -37997,10 +37889,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2292 type: WallReinforced components: @@ -39519,10 +39408,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2520 type: WallReinforced components: @@ -40236,10 +40122,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2624 type: LockerMedicalFilled components: @@ -40248,10 +40131,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2625 type: LockerMedicalFilled components: @@ -40260,10 +40140,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2626 type: TableGlass components: @@ -42415,10 +42292,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2912 type: TableWood components: @@ -45163,10 +45037,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3159 type: WallReinforced components: @@ -47005,10 +46876,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3334 type: WallReinforced components: @@ -56344,10 +56212,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4121 type: CrateChemistrySupplies components: @@ -56360,9 +56225,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4122 type: Grille @@ -57348,10 +57213,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4198 type: Poweredlight components: @@ -58335,9 +58197,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4286 type: ReinforcedWindow @@ -59660,10 +59522,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4400 type: Chair components: @@ -59788,10 +59647,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4415 type: CrateSecurityArmor components: @@ -59804,9 +59660,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4416 type: Rack @@ -62928,10 +62784,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4678 type: LockerEvidence components: @@ -62940,10 +62793,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4679 type: WallReinforced components: @@ -63879,9 +63729,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4758 type: WallReinforced @@ -64055,10 +63905,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4782 type: ClosetFireFilled components: @@ -64067,10 +63914,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4783 type: WallReinforced components: @@ -65267,10 +65111,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4903 type: Poweredlight components: @@ -65767,9 +65608,7 @@ entities: - pos: -21.539246,32.358353 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 4959 type: Catwalk components: @@ -65790,10 +65629,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4962 type: Catwalk components: @@ -65910,10 +65746,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4978 type: VendingMachineEngivend components: @@ -69403,10 +69236,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5265 type: Poweredlight components: @@ -72375,10 +72205,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5486 type: WallReinforced components: @@ -72666,10 +72493,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5528 type: Grille components: @@ -72759,9 +72583,7 @@ entities: - pos: -71.20831,-6.318183 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5540 type: TableReinforced components: @@ -73017,10 +72839,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5572 type: Catwalk components: @@ -73479,10 +73298,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5623 type: WallSolid components: @@ -73521,10 +73337,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5627 type: ReinforcedWindow components: @@ -73672,10 +73485,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5647 type: SignalSwitch components: @@ -73863,9 +73673,7 @@ entities: - pos: 40.606197,-14.3379965 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5671 type: ComputerResearchAndDevelopment components: @@ -73911,9 +73719,7 @@ entities: - pos: -17.5,13.5 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5676 type: CableApcExtension components: @@ -74162,10 +73968,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5695 type: CableApcExtension components: @@ -76262,10 +76065,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5937 type: CableApcExtension components: @@ -77377,10 +77177,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6067 type: CableHV components: @@ -88368,10 +88165,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6899 type: GasPipeStraight components: @@ -95749,10 +95543,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7450 type: Crematorium components: @@ -95761,7 +95552,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 5601 @@ -96938,10 +96729,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7554 type: ToiletDirtyWater components: @@ -99522,10 +99310,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7761 type: WallSolid components: @@ -100196,9 +99981,7 @@ entities: - pos: -9.414455,35.67238 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 7831 type: WallSolid components: @@ -100715,10 +100498,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7892 type: FoodRiceBoiled components: @@ -102557,10 +102337,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8027 type: PoweredSmallLight components: @@ -102751,9 +102528,7 @@ entities: - pos: -12.422304,-9.237135 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8046 type: ComputerId components: @@ -102793,10 +102568,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8051 type: GasPipeStraight components: @@ -102838,9 +102610,7 @@ entities: - pos: -21.257998,34.67085 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8057 type: VendingMachineSnack components: @@ -103910,10 +103680,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8152 type: Table components: @@ -106396,10 +106163,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8352 type: CableApcExtension components: @@ -109246,10 +109010,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8679 type: Protolathe components: @@ -109318,9 +109079,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8685 type: CrateEngineeringCableMV @@ -109334,9 +109095,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8686 type: CrateEngineeringCableLV @@ -109350,9 +109111,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8687 type: CrateEngineeringGear @@ -109366,9 +109127,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8688 type: CrateEngineeringGenerator @@ -109382,9 +109143,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8689 type: CrateEmergencyInflatablewall @@ -109398,9 +109159,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8690 type: CrateEngineeringSolar @@ -109414,9 +109175,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8691 type: WindoorMedicalLocked @@ -109799,9 +109560,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8737 type: ClothingHeadHelmetHardsuitSecurity components: @@ -109810,9 +109569,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8738 type: ClothingMaskBreath components: @@ -110079,10 +109836,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8773 type: WallSolid components: @@ -110816,7 +110570,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7340 - 7716 @@ -112798,10 +112552,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9074 type: WallReinforced components: @@ -113964,10 +113715,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9214 type: TableReinforced components: @@ -113988,10 +113736,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9217 type: WardrobePrison components: @@ -114000,10 +113745,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9218 type: TableReinforced components: @@ -114712,10 +114454,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9289 type: LockerSecurityFilled components: @@ -114724,10 +114463,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9290 type: ComputerCrewMonitoring components: @@ -114747,10 +114483,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9292 type: WallSolid components: @@ -114982,7 +114715,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -114994,7 +114727,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115006,7 +114739,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115018,7 +114751,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115030,7 +114763,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115042,7 +114775,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115054,7 +114787,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115066,7 +114799,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115078,7 +114811,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115090,7 +114823,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115102,7 +114835,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115114,7 +114847,7 @@ entities: parent: 130 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -115176,10 +114909,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9332 type: Poweredlight components: @@ -116608,10 +116338,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9456 type: WallSolid components: @@ -116626,10 +116353,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9458 type: ChairOfficeDark components: @@ -117575,10 +117299,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9588 type: ClosetEmergencyFilledRandom components: @@ -117587,10 +117308,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9589 type: Grille components: @@ -117773,10 +117491,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9608 type: DrinkGlass components: @@ -117996,9 +117711,7 @@ entities: - pos: -9.49258,31.688005 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 9641 type: Chair components: @@ -118585,9 +118298,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 9711 type: DisposalPipe components: @@ -120183,10 +119894,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9805 type: ClosetEmergencyFilledRandom components: @@ -120195,10 +119903,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9806 type: ReinforcedWindow components: @@ -120798,9 +120503,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 9877 type: ClothingHeadHelmetHardsuitSecurity components: @@ -120809,9 +120512,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 9878 type: ClothingMaskBreath components: @@ -121139,10 +120840,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9913 type: ClosetFireFilled components: @@ -121151,10 +120849,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9914 type: CableMV components: @@ -121203,10 +120898,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9920 type: WallSolid components: @@ -121228,10 +120920,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9923 type: ClosetEmergencyFilledRandom components: @@ -121240,10 +120929,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9924 type: ClosetFireFilled components: @@ -121252,10 +120938,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9925 type: ClosetFireFilled components: @@ -121264,10 +120947,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9926 type: ClosetFireFilled components: @@ -121276,10 +120956,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9927 type: ClosetFireFilled components: @@ -121288,10 +120965,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9928 type: ClosetEmergencyFilledRandom components: @@ -121300,10 +120974,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9929 type: ClothingOuterSuitEmergency components: @@ -121579,10 +121250,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9963 type: Catwalk components: @@ -124805,10 +124473,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10258 type: ClosetLegalFilled components: @@ -124817,10 +124482,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10259 type: ClosetRadiationSuitFilled components: @@ -124829,10 +124491,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10260 type: TwoWayLever components: @@ -124890,10 +124549,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10263 type: ClosetEmergencyFilledRandom components: @@ -124902,10 +124558,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10264 type: WallSolid components: @@ -124920,10 +124573,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10266 type: PottedPlantRandom components: @@ -131276,10 +130926,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10799 type: FirelockGlass components: @@ -132391,10 +132038,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10896 type: RandomSpawner components: @@ -136035,10 +135679,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11312 type: ClosetEmergencyFilledRandom components: @@ -136047,10 +135688,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11313 type: ClosetEmergencyFilledRandom components: @@ -136059,10 +135697,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11314 type: ClosetEmergencyFilledRandom components: @@ -136071,10 +135706,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11315 type: ClosetEmergencyFilledRandom components: @@ -136083,10 +135715,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11316 type: ClosetEmergencyFilledRandom components: @@ -136095,10 +135724,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11317 type: ClosetFireFilled components: @@ -136107,10 +135733,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11318 type: ChairRitual components: @@ -139071,9 +138694,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11604 type: PoweredSmallLight components: @@ -139785,9 +139406,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11677 type: ComputerSolarControl @@ -140460,10 +140081,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11745 type: ClosetEmergencyFilledRandom components: @@ -140472,10 +140090,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11746 type: ClosetEmergencyFilledRandom components: @@ -140484,10 +140099,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11747 type: ClosetFireFilled components: @@ -140496,10 +140108,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11748 type: ClosetFireFilled components: @@ -140508,10 +140117,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11749 type: WeldingFuelTankFull components: @@ -140618,10 +140224,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11763 type: CableApcExtension components: @@ -140640,10 +140243,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11765 type: RandomSpawner components: @@ -140927,10 +140527,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11802 type: SignToolStorage components: @@ -146599,10 +146196,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12272 type: Table components: @@ -146617,10 +146211,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12274 type: SubstationBasic components: @@ -146708,9 +146299,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 12282 type: CrateLivestock @@ -146724,9 +146315,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 12283 type: Catwalk @@ -147574,10 +147165,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12353 type: WallSolid components: @@ -147745,10 +147333,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12375 type: ChairOfficeDark components: @@ -150742,10 +150327,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12651 type: CableApcExtension components: @@ -151660,18 +151242,14 @@ entities: - pos: -47.41632,7.5939302 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 12761 type: Lamp components: - pos: -40.468876,-8.319356 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 12762 type: WallReinforced components: @@ -153341,10 +152919,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12933 type: WallSolid components: @@ -153360,10 +152935,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12935 type: ClosetFireFilled components: @@ -153372,10 +152944,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12936 type: ClosetEmergencyFilledRandom components: @@ -153384,10 +152953,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12937 type: WallReinforced components: @@ -156606,10 +156172,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13268 type: Table components: @@ -157614,9 +157177,7 @@ entities: - pos: -59.48263,-7.217822 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 13379 type: WallReinforced components: @@ -158899,10 +158460,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13561 type: SpawnPointChiefEngineer components: @@ -161285,9 +160843,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 13917 type: CrateEngineeringAMEShielding @@ -161301,9 +160859,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 13918 type: AMEJar @@ -161385,10 +160943,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13929 type: ClosetRadiationSuitFilled components: @@ -161397,10 +160952,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13930 type: ClosetRadiationSuitFilled components: @@ -161409,10 +160961,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13931 type: ClosetRadiationSuitFilled components: @@ -161421,10 +160970,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13932 type: ClosetFireFilled components: @@ -161433,10 +160979,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13933 type: ClosetFireFilled components: @@ -161445,10 +160988,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 13934 type: SubstationBasic components: @@ -175930,10 +175470,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15303 type: FirelockGlass components: @@ -177452,9 +176989,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15495 type: WallReinforced @@ -177782,9 +177319,7 @@ entities: - pos: -47.112778,-6.419183 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 15535 type: BoxLighttube components: @@ -177941,10 +177476,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15555 type: Grille components: @@ -177959,10 +177491,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15557 type: ClosetFireFilled components: @@ -177971,10 +177500,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15558 type: CableApcExtension components: @@ -178084,10 +177610,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15573 type: TableCarpet components: @@ -178132,10 +177655,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15580 type: CableHV components: @@ -181575,10 +181095,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15901 type: Catwalk components: @@ -182288,9 +181805,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15995 type: CrateEngineeringSolar @@ -182304,9 +181821,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 15996 type: SheetGlass @@ -182924,10 +182441,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16063 type: WaterTankFull components: @@ -183878,10 +183392,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16149 type: MaintenanceFluffSpawner components: @@ -184733,10 +184244,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16234 type: LockerEngineerFilled components: @@ -184745,10 +184253,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16235 type: Catwalk components: @@ -190342,10 +189847,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16828 type: ClosetFireFilled components: @@ -190354,10 +189856,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16829 type: ClothingBeltUtilityFilled components: @@ -190672,9 +190171,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16874 type: Rack @@ -190766,9 +190265,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 16888 type: ClothingOuterSuitRad @@ -190864,10 +190363,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16903 type: LockerAtmosphericsFilled components: @@ -190876,10 +190372,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16904 type: LockerAtmosphericsFilled components: @@ -190888,10 +190381,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16905 type: LockerAtmosphericsFilled components: @@ -190900,10 +190390,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 16906 type: PlaqueAtmos components: @@ -191909,10 +191396,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17060 type: MaintenanceToolSpawner components: @@ -192267,10 +191751,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17102 type: OxygenCanister components: @@ -192404,10 +191885,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17121 type: MaintenanceWeaponSpawner components: @@ -192600,9 +192078,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17151 type: Catwalk @@ -192722,19 +192200,14 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17169 type: Lamp components: - pos: -43.38352,29.758934 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17170 type: Chair components: @@ -193122,10 +192595,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17230 type: ClosetL3SecurityFilled components: @@ -193134,10 +192604,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17231 type: SignDirectionalSec components: @@ -193902,10 +193369,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17330 type: Rack components: @@ -194086,10 +193550,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17358 type: Catwalk components: @@ -194186,9 +193647,7 @@ entities: - pos: 13.454672,40.61821 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17374 type: ChairOfficeDark components: @@ -195768,9 +195227,7 @@ entities: - pos: 22.67214,30.71345 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17578 type: ClosetBase components: @@ -195780,7 +195237,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 17580 type: ContainerContainer @@ -195829,10 +195286,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17585 type: Rack components: @@ -196011,10 +195465,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17608 type: LockerBotanistFilled components: @@ -196023,10 +195474,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17609 type: SeedExtractor components: @@ -196297,9 +195745,7 @@ entities: - pos: 14.534658,-17.702763 parent: 130 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 17646 type: LockerChiefMedicalOfficerFilled components: @@ -196308,10 +195754,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17647 type: Bed components: @@ -196990,9 +196433,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17740 type: CrateEngineeringCableLV @@ -197006,9 +196449,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17741 type: Rack @@ -197406,10 +196849,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17802 type: ClothingOuterSuitEmergency components: @@ -197589,10 +197029,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17831 type: Windoor components: @@ -197831,10 +197268,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17868 type: SignRadiationMed components: @@ -198170,10 +197604,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17909 type: ClosetEmergencyFilledRandom components: @@ -198182,10 +197613,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17910 type: ClosetL3ScienceFilled components: @@ -198194,10 +197622,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17911 type: ClosetRadiationSuitFilled components: @@ -198206,10 +197631,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17912 type: VendingMachineCoffee components: @@ -198287,10 +197709,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17922 type: LockerScienceFilled components: @@ -198299,10 +197718,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17923 type: ClothingEyesGlasses components: @@ -198333,9 +197749,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 17927 type: FirelockEdge @@ -198840,10 +198256,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17970 type: TableReinforced components: @@ -199101,10 +198514,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18003 type: ClosetToolFilled components: @@ -199113,10 +198523,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18004 type: CableApcExtension components: @@ -199725,10 +199132,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18074 type: BoxBeaker components: diff --git a/Resources/Maps/packedstation.yml b/Resources/Maps/packedstation.yml index 1e43834cfa..b2b0cbb6f2 100644 --- a/Resources/Maps/packedstation.yml +++ b/Resources/Maps/packedstation.yml @@ -14580,10 +14580,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 43 type: Grille components: @@ -14867,10 +14864,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 84 type: Grille components: @@ -14916,10 +14910,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 91 type: PottedPlantRandom components: @@ -15231,9 +15222,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 139 type: Rack components: @@ -15442,10 +15431,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 167 type: ClosetL3JanitorFilled components: @@ -15454,10 +15440,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 168 type: WaterTankFull components: @@ -16415,9 +16398,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 311 type: ChairOfficeDark components: @@ -16644,10 +16625,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 338 type: ClosetEmergencyFilledRandom components: @@ -16656,10 +16634,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 339 type: PottedPlantRandom components: @@ -17142,10 +17117,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 408 type: LockerSalvageSpecialistFilled components: @@ -17154,10 +17126,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 409 type: Grille components: @@ -17214,10 +17183,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 418 type: ReinforcedWindow components: @@ -17268,10 +17234,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 426 type: ReinforcedWindow components: @@ -17352,10 +17315,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 439 type: APCBasic components: @@ -18220,10 +18180,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 567 type: Table components: @@ -18266,10 +18223,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 573 type: LockerHeadOfPersonnelFilled components: @@ -18278,10 +18232,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 574 type: ReinforcedWindow components: @@ -18427,10 +18378,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 589 type: LockerMedicalFilled components: @@ -18439,10 +18387,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 590 type: ReinforcedWindow components: @@ -19742,10 +19687,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 783 type: ExtinguisherCabinetFilled @@ -20482,10 +20427,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 878 type: LockerEngineerFilled components: @@ -20494,10 +20436,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 879 type: LockerEngineerFilled components: @@ -20506,10 +20445,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 880 type: LockerAtmosphericsFilled components: @@ -20518,10 +20454,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 881 type: LockerAtmosphericsFilled components: @@ -20530,10 +20463,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 882 type: LockerElectricalSuppliesFilled components: @@ -20542,10 +20472,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 883 type: LockerWeldingSuppliesFilled components: @@ -20554,10 +20481,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 884 type: Table components: @@ -20590,10 +20514,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 889 type: WardrobeYellowFilled components: @@ -20602,10 +20523,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 890 type: PartRodMetal components: @@ -20994,10 +20912,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 942 type: RCD components: @@ -21573,10 +21488,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1030 type: ClosetRadiationSuitFilled components: @@ -21585,10 +21497,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1031 type: WaterTankFull components: @@ -22122,10 +22031,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1109 type: Table components: @@ -22370,10 +22276,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1146 type: Stool components: @@ -22758,7 +22661,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 1207 @@ -22770,7 +22673,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 1206 @@ -24615,10 +24518,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1471 type: Windoor components: @@ -24771,10 +24671,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1481 type: ClosetEmergencyFilledRandom components: @@ -24783,10 +24680,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1482 type: WallSolid components: @@ -25255,10 +25149,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1550 type: TableWood components: @@ -25832,10 +25723,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1624 type: CableHV components: @@ -26340,10 +26228,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1681 type: Bucket components: @@ -26480,10 +26365,10 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 1694 type: ChairOfficeDark @@ -26947,10 +26832,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1761 type: Table components: @@ -29138,10 +29020,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2070 type: CrateEmergencyInternals @@ -29155,10 +29037,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2071 type: CrateMedical @@ -29172,10 +29054,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2072 type: Rack @@ -29761,10 +29643,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2150 type: ClothingOuterVestHazard components: @@ -30475,10 +30354,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2253 type: ClosetBase components: @@ -30487,10 +30363,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2254 type: Grille components: @@ -30943,10 +30816,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2309 type: Bed components: @@ -31087,10 +30957,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2326 type: WardrobePrisonFilled components: @@ -31099,10 +30966,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2327 type: WallReinforced components: @@ -31622,10 +31486,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2404 type: APCBasic components: @@ -31868,10 +31729,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2431 type: TableReinforced components: @@ -32155,10 +32013,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2469 type: LockerSecurityFilled components: @@ -32167,10 +32022,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2470 type: LockerSecurityFilled components: @@ -32179,10 +32031,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2471 type: WindoorSecurityLocked components: @@ -32258,10 +32107,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2480 type: ChairOfficeDark components: @@ -32395,10 +32241,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2496 type: WallSolid components: @@ -33874,10 +33717,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2712 type: ClosetLegal components: @@ -33886,10 +33726,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2713 type: TableWood components: @@ -33966,9 +33803,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2723 type: LampGold components: @@ -33977,9 +33812,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2724 type: ChairOfficeDark components: @@ -34155,10 +33988,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2743 type: ToolboxMechanical components: @@ -34437,9 +34267,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2781 type: ShuttersNormalOpen components: @@ -35396,10 +35224,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2902 type: APCBasic components: @@ -40527,10 +40352,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3721 type: CrateGenericSteel @@ -40544,10 +40369,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3722 type: WallReinforced @@ -44436,10 +44261,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4221 type: CableApcExtension components: @@ -49425,10 +49247,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4697 type: DisposalUnit components: @@ -51751,10 +51570,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4916 type: ToolboxGoldFilled components: @@ -51779,10 +51595,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4918 type: APCBasic @@ -52699,10 +52515,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5027 type: VendingMachineMediDrobe components: @@ -53007,10 +52820,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5060 type: LargeBeaker components: @@ -53598,7 +53408,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53610,7 +53420,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53622,7 +53432,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53634,7 +53444,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53646,7 +53456,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53658,7 +53468,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53670,7 +53480,7 @@ entities: parent: 2 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -53980,10 +53790,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5163 type: Chair components: @@ -54344,10 +54151,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5198 type: LockerMedicalFilled components: @@ -54356,10 +54160,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5199 type: LockerMedicalFilled components: @@ -54368,10 +54169,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5200 type: VendingMachineWallMedical components: @@ -54436,10 +54234,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5206 type: LockerMedicalFilled components: @@ -54448,10 +54243,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5207 type: GasVentPump components: @@ -54525,10 +54317,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5214 type: ClosetL3VirologyFilled components: @@ -54537,10 +54326,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5215 type: ClosetL3VirologyFilled components: @@ -54549,10 +54335,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5216 type: GasVentPump components: @@ -54789,10 +54572,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5242 type: SignalButton components: @@ -54963,10 +54743,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5260 type: ClosetFireFilled components: @@ -54975,10 +54752,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5261 type: ClosetEmergencyFilledRandom components: @@ -54987,10 +54761,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5262 type: GasVentPump components: @@ -55426,10 +55197,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5299 type: APCBasic components: @@ -55646,10 +55414,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5323 type: LargeBeaker components: @@ -55784,10 +55549,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5339 type: LockerScientist components: @@ -55796,10 +55558,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5340 type: PottedPlantRandom components: @@ -55959,10 +55718,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5358 type: DisposalUnit components: @@ -56460,10 +56216,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5415 type: GasVentPump components: @@ -56671,10 +56424,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5437 type: ClosetMaintenanceFilledRandom @@ -56684,10 +56437,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5438 type: ClosetEmergencyFilledRandom components: @@ -56696,10 +56446,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5439 type: Rack components: @@ -56848,10 +56595,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5461 type: ClosetBase components: @@ -56860,10 +56604,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5462 type: CarpetSBlue components: @@ -56970,10 +56711,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5473 type: Table components: @@ -56988,9 +56726,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5475 type: Table components: @@ -57346,10 +57082,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5527 type: Rack @@ -58417,10 +58153,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5650 type: AirlockMaintLocked components: @@ -59011,9 +58744,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5715 type: PoweredSmallLight components: @@ -59065,9 +58796,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5720 type: OxygenTankFilled components: @@ -59162,10 +58891,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5730 type: WaterTankFull components: @@ -59230,10 +58956,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5737 type: AirlockMaintLocked components: @@ -59296,9 +59019,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5744 type: CrateGenericSteel components: @@ -59311,10 +59032,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5745 type: OxygenCanister @@ -70048,10 +69769,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6781 type: SpawnPointWarden components: @@ -79097,9 +78815,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7567 type: CrateSalvageEquipment @@ -79113,9 +78831,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7568 type: Poweredlight @@ -88524,10 +88242,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8457 type: CrateEngineeringAMEShielding components: @@ -88540,10 +88255,10 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8458 type: CrateEngineeringAMEShielding @@ -88557,10 +88272,10 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8459 type: AMEController @@ -91333,9 +91048,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8708 type: WindowDirectional components: @@ -92052,10 +91765,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8818 type: Chair components: @@ -92077,9 +91787,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8821 type: Table components: @@ -92126,10 +91834,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8828 type: Table components: @@ -92904,10 +92609,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8935 type: WallReinforced components: @@ -116801,9 +116503,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10799 type: ClothingMaskGas components: @@ -116920,10 +116620,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10814 type: FlashlightLantern components: @@ -116932,9 +116629,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10815 type: Catwalk components: @@ -117021,9 +116716,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10828 type: Table components: @@ -117087,10 +116780,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10836 type: ClosetMaintenanceFilledRandom components: @@ -117099,10 +116789,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10837 type: ClosetEmergencyFilledRandom components: @@ -117111,10 +116798,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10838 type: WaterTankFull components: @@ -117129,10 +116813,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10840 type: WeldingFuelTankFull components: @@ -117147,10 +116828,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10842 type: AirCanister components: @@ -117684,10 +117362,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10907 type: ClosetRadiationSuitFilled components: @@ -117696,10 +117371,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10908 type: LockerElectricalSuppliesFilled components: @@ -117708,10 +117380,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10909 type: ClosetToolFilled components: @@ -117720,10 +117389,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10910 type: CableHV components: @@ -117915,10 +117581,10 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 10928 type: Poweredlight @@ -119085,9 +118751,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11080 type: Stunbaton components: @@ -119096,9 +118760,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11081 type: Stunbaton components: @@ -119107,9 +118769,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11082 type: Stunbaton components: @@ -119118,9 +118778,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11083 type: Stunbaton components: @@ -119129,9 +118787,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11084 type: Stunbaton components: @@ -119140,9 +118796,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11085 type: Stunbaton components: @@ -119151,9 +118805,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11086 type: Stunbaton components: @@ -119162,9 +118814,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11087 type: BoxHandcuff components: @@ -125816,10 +125466,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11833 type: SpawnMobCorgi @@ -128120,10 +127770,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12130 type: ClosetFireFilled components: @@ -128132,10 +127779,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12131 type: SpawnPointLatejoin components: @@ -128428,10 +128072,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12164 type: SinkEmpty components: diff --git a/Resources/Maps/packedstationxmas.yml b/Resources/Maps/packedstationxmas.yml index daeb3cf4d6..ba9fa8c006 100644 --- a/Resources/Maps/packedstationxmas.yml +++ b/Resources/Maps/packedstationxmas.yml @@ -17689,10 +17689,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 101 type: CableHV components: @@ -17762,10 +17759,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 110 type: ClosetEmergencyFilledRandom components: @@ -17774,10 +17768,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 111 type: PottedPlantRandom components: @@ -18128,9 +18119,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 161 type: Rack components: @@ -18145,10 +18134,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 163 type: SignalButton components: @@ -18325,10 +18311,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 189 type: ClosetL3JanitorFilled components: @@ -18337,10 +18320,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 190 type: WaterTankFull components: @@ -19296,9 +19276,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 333 type: ChairOfficeDark components: @@ -19521,10 +19499,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 360 type: ClosetEmergencyFilledRandom components: @@ -19533,10 +19508,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 361 type: PottedPlantRandom components: @@ -20018,10 +19990,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 430 type: Grille components: @@ -20195,10 +20164,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 457 type: WeldingFuelTankFull @@ -20230,10 +20199,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 461 type: APCBasic components: @@ -21091,10 +21057,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 589 type: Table components: @@ -21137,10 +21100,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 595 type: LockerHeadOfPersonnelFilled components: @@ -21149,10 +21109,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 596 type: ReinforcedWindow components: @@ -21288,10 +21245,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 611 type: LockerMedicalFilled components: @@ -21300,10 +21254,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 612 type: ReinforcedWindow components: @@ -22560,10 +22511,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 805 type: ExtinguisherCabinetFilled @@ -23247,10 +23198,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 900 type: LockerEngineerFilled components: @@ -23259,10 +23207,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 901 type: LockerEngineerFilled components: @@ -23271,10 +23216,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 902 type: LockerAtmosphericsFilled components: @@ -23283,10 +23225,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 903 type: LockerAtmosphericsFilled components: @@ -23295,10 +23234,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 904 type: LockerElectricalSuppliesFilled components: @@ -23307,10 +23243,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 905 type: LockerWeldingSuppliesFilled components: @@ -23319,10 +23252,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 906 type: Table components: @@ -23355,10 +23285,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 911 type: WardrobeEngineering components: @@ -23367,10 +23294,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 912 type: PartRodMetal components: @@ -23752,10 +23676,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 964 type: RCD components: @@ -24326,10 +24247,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1052 type: ClosetRadiationSuitFilled components: @@ -24338,10 +24256,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1053 type: WaterTankFull components: @@ -24863,10 +24778,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1131 type: Table components: @@ -25117,9 +25029,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 1168 type: Stool @@ -25490,7 +25402,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 1229 @@ -25502,7 +25414,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 1228 @@ -27198,10 +27110,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1493 type: Windoor components: @@ -27265,10 +27174,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1503 type: ClosetEmergencyFilledRandom components: @@ -27277,10 +27183,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1504 type: WallSolid components: @@ -27731,10 +27634,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1572 type: TableWood components: @@ -28294,10 +28194,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1646 type: CableHV components: @@ -28749,10 +28646,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1703 type: Bucket components: @@ -28872,10 +28766,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 1716 type: ChairOfficeDark @@ -29332,10 +29226,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1783 type: Table components: @@ -31422,10 +31313,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2092 type: CrateEmergencyInternals @@ -31436,10 +31327,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2093 type: CrateMedical @@ -31450,10 +31341,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2094 type: Rack @@ -32023,10 +31914,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2172 type: ClothingOuterVestHazard components: @@ -32723,10 +32611,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2275 type: ClosetBase components: @@ -32735,10 +32620,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2276 type: Grille components: @@ -33150,10 +33032,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2331 type: Bed components: @@ -33292,10 +33171,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2348 type: ClosetBase components: @@ -33304,10 +33180,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2349 type: WallReinforced components: @@ -33814,10 +33687,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2426 type: APCBasic components: @@ -34041,10 +33911,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2453 type: TableReinforced components: @@ -34294,10 +34161,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2487 type: Stool components: @@ -34326,10 +34190,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2491 type: LockerSecurityFilled components: @@ -34338,10 +34199,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2492 type: LockerSecurityFilled components: @@ -34350,10 +34208,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2493 type: WindoorSecurityLocked components: @@ -34425,10 +34280,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2502 type: ChairOfficeDark components: @@ -34554,10 +34406,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2518 type: WallSolid components: @@ -35999,10 +35848,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2734 type: ClosetLegal components: @@ -36011,10 +35857,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2735 type: TableWood components: @@ -36101,9 +35944,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2745 type: LampGold components: @@ -36117,9 +35958,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2746 type: ChairOfficeDark components: @@ -36270,10 +36109,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2765 type: ToolboxMechanical components: @@ -36555,9 +36391,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 2803 type: ShuttersNormalOpen components: @@ -37376,10 +37210,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2924 type: APCBasic components: @@ -42447,10 +42278,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3744 type: CrateGenericSteel @@ -42461,10 +42292,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3745 type: WallReinforced @@ -46103,10 +45934,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4244 type: CableApcExtension components: @@ -50665,10 +50493,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4720 type: DisposalUnit components: @@ -52701,10 +52526,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4939 type: ToolboxGoldFilled components: @@ -52726,10 +52548,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4941 type: APCBasic @@ -53607,10 +53429,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5050 type: WardrobeBlue components: @@ -53619,10 +53438,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5051 type: GasVentScrubber components: @@ -53899,10 +53715,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5082 type: LockerChemistryFilled components: @@ -53911,10 +53724,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5083 type: LargeBeaker components: @@ -54471,7 +54281,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54483,7 +54293,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54495,7 +54305,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54507,7 +54317,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54519,7 +54329,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54531,7 +54341,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54543,7 +54353,7 @@ entities: parent: 0 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -54826,10 +54636,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5186 type: Chair components: @@ -55154,10 +54961,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5221 type: LockerMedicalFilled components: @@ -55166,10 +54970,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5222 type: LockerMedicalFilled components: @@ -55178,10 +54979,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5223 type: VendingMachineWallMedical components: @@ -55235,10 +55033,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5229 type: LockerMedicalFilled components: @@ -55247,10 +55042,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5230 type: GasVentPump components: @@ -55324,10 +55116,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5237 type: ClosetL3VirologyFilled components: @@ -55336,10 +55125,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5238 type: ClosetL3VirologyFilled components: @@ -55348,10 +55134,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5239 type: GasVentPump components: @@ -55591,10 +55374,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5265 type: SignalButton components: @@ -55749,10 +55529,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5283 type: ClosetFireFilled components: @@ -55761,10 +55538,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5284 type: ClosetEmergencyFilledRandom components: @@ -55773,10 +55547,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5285 type: GasVentPump components: @@ -56111,10 +55882,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5322 type: APCBasic components: @@ -56324,10 +56092,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5346 type: LargeBeaker components: @@ -56462,10 +56227,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5362 type: LockerScientist components: @@ -56474,10 +56236,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5363 type: PottedPlantRandom components: @@ -56635,10 +56394,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5381 type: DisposalUnit components: @@ -56814,10 +56570,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5400 type: ClothingHeadHatWelding components: @@ -57130,10 +56883,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5438 type: GasVentPump components: @@ -57327,10 +57077,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5460 type: ClosetMaintenanceFilledRandom @@ -57340,10 +57090,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5461 type: ClosetEmergencyFilledRandom components: @@ -57352,10 +57099,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5462 type: Rack components: @@ -57504,10 +57248,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5484 type: ClosetBase components: @@ -57516,10 +57257,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5485 type: CarpetSBlue components: @@ -57616,10 +57354,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5496 type: Table components: @@ -57639,9 +57374,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5498 type: Table components: @@ -57994,10 +57727,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5550 type: Rack @@ -58980,10 +58713,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5673 type: AirlockMaintLocked components: @@ -59538,9 +59268,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5738 type: PoweredSmallLight components: @@ -59587,9 +59315,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5743 type: OxygenTankFilled components: @@ -59669,10 +59395,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5753 type: WaterTankFull components: @@ -59737,10 +59460,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5760 type: AirlockMaintLocked components: @@ -59803,9 +59523,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5767 type: CrateGenericSteel components: @@ -59815,10 +59533,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5768 type: OxygenCanister @@ -69249,10 +68967,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6807 type: SpawnPointWarden components: @@ -85515,9 +85230,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8419 type: Present @@ -85536,9 +85251,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8421 type: CableHV @@ -86280,10 +85995,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8495 type: CrateEngineeringAMEShielding components: @@ -86293,10 +86005,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8496 type: CrateEngineeringAMEShielding @@ -86307,10 +86019,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 8497 type: AMEController @@ -88686,9 +88398,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8746 type: WindowDirectional components: @@ -89388,10 +89098,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8856 type: Chair components: @@ -89418,9 +89125,7 @@ entities: cellRemoveSound: !type:SoundPathSpecifier path: /Audio/Items/pistol_magin.ogg type: PowerCellSlot - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8859 type: Table components: @@ -89467,10 +89172,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8866 type: Table components: @@ -90233,10 +89935,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8973 type: WallReinforced components: @@ -111727,9 +111426,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10837 type: ClothingMaskGas components: @@ -111846,10 +111543,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10852 type: FlashlightLantern components: @@ -111858,9 +111552,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10853 type: Catwalk components: @@ -111947,9 +111639,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10866 type: Table components: @@ -112013,10 +111703,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10874 type: ClosetMaintenanceFilledRandom components: @@ -112025,10 +111712,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10875 type: ClosetEmergencyFilledRandom components: @@ -112037,10 +111721,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10876 type: WaterTankFull components: @@ -112055,10 +111736,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10878 type: WeldingFuelTankFull components: @@ -112073,10 +111751,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10880 type: AirCanister components: @@ -112587,10 +112262,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10945 type: ClosetRadiationSuitFilled components: @@ -112599,10 +112271,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10946 type: LockerElectricalSuppliesFilled components: @@ -112611,10 +112280,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10947 type: ClosetToolFilled components: @@ -112623,10 +112289,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10948 type: CableHV components: @@ -112793,10 +112456,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 10966 type: Poweredlight @@ -113948,9 +113611,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11118 type: Stunbaton components: @@ -113959,9 +113620,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11119 type: Stunbaton components: @@ -113970,9 +113629,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11120 type: Stunbaton components: @@ -113981,9 +113638,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11121 type: Stunbaton components: @@ -113992,9 +113647,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11122 type: Stunbaton components: @@ -114003,9 +113656,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11123 type: Stunbaton components: @@ -114014,9 +113665,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11124 type: Stunbaton components: @@ -114025,9 +113674,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11125 type: BoxHandcuff components: @@ -119713,10 +119360,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] labelSlot: !type:ContainerSlot {} - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11942 type: SpawnMobCorgi diff --git a/Resources/Maps/pirate.yml b/Resources/Maps/pirate.yml index 53009adb33..7388662264 100644 --- a/Resources/Maps/pirate.yml +++ b/Resources/Maps/pirate.yml @@ -5631,10 +5631,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 520 type: ClosetEmergencyFilledRandom components: @@ -5643,10 +5640,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 521 type: OxygenCanister components: @@ -5830,9 +5824,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 545 type: Table @@ -5923,10 +5917,7 @@ entities: type: Lock - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 557 type: DrinkWhiskeyBottleFull components: diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index c5e3ef54a6..c3cbe9195b 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -854,15 +854,15 @@ entities: - pos: -11.5,21.5 parent: 852 type: Transform - - isPlaceable: False - type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7797 - 4294 - 5153 type: ContainerContainer + - isPlaceable: False + type: PlaceableSurface - uid: 85 type: ShellShotgunBeanbag components: @@ -5347,10 +5347,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 473 type: VendingMachineCigs components: @@ -5469,9 +5465,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 491 type: CarpetBlue components: @@ -5896,9 +5889,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 547 type: PlasticFlapsAirtightClear components: @@ -5913,10 +5903,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 549 type: CableApcExtension components: @@ -6224,10 +6210,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 585 type: EmergencyLight components: @@ -7446,10 +7428,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 729 type: Catwalk components: @@ -7476,10 +7454,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 733 type: SpawnPointMedicalDoctor components: @@ -7681,10 +7655,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 760 type: VendingMachineDiscount components: @@ -7701,10 +7671,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 762 type: SprayBottleSpaceCleaner components: @@ -7774,6 +7740,8 @@ entities: - pos: -4.430562,13.857189 parent: 852 type: Transform + - canCollide: False + type: Physics - containers: storagebase: !type:Container ents: [] @@ -7804,10 +7772,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 773 type: GasPipeStraight components: @@ -7898,10 +7862,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 783 type: Poweredlight components: @@ -7927,10 +7887,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 785 type: ClosetEmergencyFilledRandom components: @@ -7939,10 +7895,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 786 type: MopItem components: @@ -7965,10 +7917,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 789 type: GasPipeStraight components: @@ -7986,10 +7934,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 791 type: ClosetEmergencyFilledRandom components: @@ -7998,10 +7942,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 792 type: VendingMachineChang components: @@ -8076,10 +8016,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 800 type: VendingMachineJaniDrobe components: @@ -8103,10 +8039,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 803 type: LockerSecurityFilled components: @@ -8116,10 +8048,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 804 type: LockerSecurityFilled components: @@ -8129,10 +8057,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 805 type: VendingMachineSec components: @@ -8172,10 +8096,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 809 type: TableGlass components: @@ -8244,13 +8164,13 @@ entities: pos: 37.5,-1.5 parent: 852 type: Transform - - isPlaceable: False - type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1734 type: ContainerContainer + - isPlaceable: False + type: PlaceableSurface - uid: 817 type: Table components: @@ -8266,10 +8186,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 819 type: CarpetPurple components: @@ -19604,10 +19520,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1150 type: WallReinforced components: @@ -19623,10 +19535,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1152 type: WeaponSubMachineGunWt550 components: @@ -19702,10 +19610,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1162 type: WaterTankFull components: @@ -20308,10 +20212,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1228 type: Poweredlight components: @@ -22223,10 +22123,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1413 type: WallReinforced components: @@ -22265,9 +22161,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 1419 type: TableWood components: @@ -22685,11 +22578,6 @@ entities: pos: 11.5,-15.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 1481 type: Morgue components: @@ -22697,11 +22585,6 @@ entities: pos: 11.5,-14.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 1482 type: ReinforcedWindow components: @@ -23276,11 +23159,6 @@ entities: type: Construction - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - PaperLabel: !type:ContainerSlot {} - type: ContainerContainer - uid: 1555 type: ClosetFireFilled components: @@ -23289,10 +23167,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1556 type: WallReinforced components: @@ -24820,10 +24694,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1773 type: WallReinforced components: @@ -25539,9 +25409,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 1878 type: Grille components: @@ -26101,10 +25968,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 1958 type: Stool components: @@ -27475,10 +27338,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 2146 type: TableReinforced components: @@ -27566,9 +27425,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 2156 type: Paper components: @@ -27939,11 +27795,6 @@ entities: pos: 11.5,-13.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 2212 type: Wrench components: @@ -27996,7 +27847,7 @@ entities: parent: 852 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -28019,11 +27870,6 @@ entities: pos: 11.5,-16.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 2223 type: ReinforcedWindow components: @@ -29675,10 +29521,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 2454 type: AirlockMaintLocked components: @@ -30042,6 +29884,8 @@ entities: - pos: 8.497082,31.408243 parent: 852 type: Transform + - canCollide: False + type: Physics - uid: 2500 type: WallSolid components: @@ -36765,10 +36609,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 3175 type: CableApcExtension components: @@ -38489,10 +38329,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 3370 type: CableApcExtension components: @@ -44677,10 +44513,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4014 type: ShuttersNormalOpen components: @@ -44895,14 +44727,14 @@ entities: - pos: 0.5,7.5 parent: 852 type: Transform - - isPlaceable: False - type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 4213 - 4203 type: ContainerContainer + - isPlaceable: False + type: PlaceableSurface - uid: 4037 type: CableApcExtension components: @@ -45377,9 +45209,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 4093 type: TableWood components: @@ -45400,9 +45229,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 4096 type: PoweredSmallLight components: @@ -45579,10 +45405,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4119 type: Poweredlight components: @@ -46077,10 +45899,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4176 type: GasPipeStraight components: @@ -46115,9 +45933,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 4179 type: StoolBar components: @@ -46377,6 +46192,8 @@ entities: - pos: -4.508687,13.700939 parent: 852 type: Transform + - canCollide: False + type: Physics - containers: storagebase: !type:Container ents: [] @@ -46499,7 +46316,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4229 type: SpawnPointAssistant @@ -47659,10 +47476,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4382 type: RandomSpawner components: @@ -48758,10 +48571,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4531 type: ClosetRadiationSuitFilled components: @@ -48770,10 +48579,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4532 type: Grille components: @@ -48843,10 +48648,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 4542 type: Rack components: @@ -50035,7 +49836,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4705 type: Stunbaton @@ -50046,7 +49847,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 4706 type: WeaponTaser @@ -51921,9 +51722,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 4926 type: Grille components: @@ -53235,10 +53033,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 5095 type: ChairOfficeLight components: @@ -53697,6 +53491,8 @@ entities: type: Transform - unspawnedCount: 25 type: BallisticAmmoProvider + - canCollide: False + type: Physics - uid: 5147 type: MagazineRifleRubber components: @@ -54732,11 +54528,6 @@ entities: type: Construction - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - PaperLabel: !type:ContainerSlot {} - type: ContainerContainer - uid: 5293 type: AirlockExternalLocked components: @@ -64651,10 +64442,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6022 type: Lamp components: @@ -64663,9 +64450,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 6023 type: GasVentScrubber components: @@ -67202,10 +66986,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6206 type: GasPipeStraight components: @@ -67275,10 +67055,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6212 type: AirlockSalvageGlassLocked components: @@ -70247,10 +70023,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6563 type: LockerAtmosphericsFilled components: @@ -70259,10 +70031,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6564 type: PlaqueAtmos components: @@ -70388,10 +70156,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6576 type: ChairOfficeDark components: @@ -70465,10 +70229,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 6585 type: OxygenCanister components: @@ -70624,12 +70384,12 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7777 - 3475 - 3476 - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6604 type: CableHV @@ -70815,9 +70575,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6627 type: WallReinforced @@ -71272,9 +71032,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 6696 type: VendingMachineGames components: @@ -73842,14 +73599,14 @@ entities: - pos: -0.5,18.5 parent: 852 type: Transform - - isPlaceable: False - type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 9055 - 4585 type: ContainerContainer + - isPlaceable: False + type: PlaceableSurface - uid: 7058 type: ClosetMaintenanceFilledRandom components: @@ -73858,10 +73615,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7059 type: Bed components: @@ -73942,10 +73695,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7069 type: ReinforcedWindow components: @@ -74290,10 +74039,8 @@ entities: - pos: 15.536513,-13.5 parent: 852 type: Transform - - isPlaceable: False - type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 4231 - 7101 @@ -74303,6 +74050,8 @@ entities: - 7098 - 7108 type: ContainerContainer + - isPlaceable: False + type: PlaceableSurface - uid: 7111 type: Morgue components: @@ -74310,11 +74059,6 @@ entities: pos: 13.5,-14.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 7112 type: Morgue components: @@ -74322,11 +74066,6 @@ entities: pos: 13.5,-15.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 7113 type: Morgue components: @@ -74334,11 +74073,6 @@ entities: pos: 13.5,-16.5 parent: 852 type: Transform - - containers: - EntityStorageComponent: !type:Container - ents: [] - morgue_tray: !type:ContainerSlot {} - type: ContainerContainer - uid: 7114 type: Table components: @@ -74624,9 +74358,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 7150 type: HandLabeler components: @@ -74720,10 +74451,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7162 type: PartRodMetal components: @@ -75382,11 +75109,6 @@ entities: type: Construction - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - PaperLabel: !type:ContainerSlot {} - type: ContainerContainer - uid: 7247 type: CrateMedicalSurgery components: @@ -75398,11 +75120,6 @@ entities: type: Construction - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - PaperLabel: !type:ContainerSlot {} - type: ContainerContainer - uid: 7248 type: ClothingHandsGlovesLatex components: @@ -75466,10 +75183,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7255 type: ClothingUniformJumpsuitParamedic components: @@ -75941,9 +75654,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 7320 type: BookRandom components: @@ -76377,9 +76087,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 7373 type: ClothingBeltUtilityFilled components: @@ -76802,10 +76509,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7425 type: ClosetRadiationSuitFilled components: @@ -76814,10 +76517,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7426 type: ClosetFireFilled components: @@ -76826,10 +76525,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7427 type: Sink components: @@ -76901,10 +76596,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7436 type: VendingMachineNutri components: @@ -77411,10 +77102,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7498 type: Catwalk components: @@ -77543,10 +77230,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7519 type: Barricade components: @@ -78096,10 +77779,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7572 type: ClothingHandsGlovesColorYellow components: @@ -78218,10 +77897,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7589 type: ClosetFireFilled components: @@ -78230,10 +77905,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7590 type: Welder components: @@ -78342,10 +78013,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7607 type: MaintenanceToolSpawner components: @@ -78542,11 +78209,6 @@ entities: type: Construction - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - PaperLabel: !type:ContainerSlot {} - type: ContainerContainer - uid: 7636 type: ClosetToolFilled components: @@ -78555,10 +78217,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7637 type: Table components: @@ -78999,10 +78657,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7699 type: Bed components: @@ -79739,10 +79393,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7780 type: NitrogenCanister components: @@ -79823,10 +79473,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7790 type: ToySpawner components: @@ -79841,10 +79487,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7792 type: ClosetFireFilled components: @@ -79853,10 +79495,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7793 type: Rack components: @@ -79890,9 +79528,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7797 type: ClothingOuterArmorRiot @@ -80088,9 +79726,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 7827 type: PosterLegitReportCrimes components: @@ -80275,19 +79910,14 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 7853 type: ClosetBase components: - pos: 27.5,-22.5 parent: 852 type: Transform - - isPlaceable: False - type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7855 - 7857 @@ -80295,6 +79925,8 @@ entities: - 7859 - 7856 type: ContainerContainer + - isPlaceable: False + type: PlaceableSurface - uid: 7854 type: ClothingOuterCoatInspector components: @@ -80683,10 +80315,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7912 type: ClosetFireFilled components: @@ -80695,10 +80323,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7913 type: ClosetL3JanitorFilled components: @@ -80707,10 +80331,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7914 type: RandomSpawner components: @@ -80923,10 +80543,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 7949 type: MaintenanceFluffSpawner components: @@ -82803,10 +82419,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 8206 type: WallReinforced components: @@ -84742,9 +84354,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 8448 type: WallReinforced components: @@ -84837,10 +84446,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 8463 type: WallReinforced components: @@ -86570,9 +86175,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 8726 type: CarpetGreen components: @@ -86803,10 +86405,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 8751 type: Rack components: @@ -87421,10 +87019,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 8805 type: ClosetEmergencyFilledRandom components: @@ -87433,10 +87027,6 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer - uid: 8806 type: Table components: @@ -87798,9 +87388,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 8848 type: ToolboxMechanical components: @@ -88559,9 +88146,6 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 8942 type: WindowReinforcedDirectional components: @@ -90160,9 +89744,6 @@ entities: type: HandheldLight - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer - uid: 9144 type: SyringeSpaceacillin components: diff --git a/Resources/Maps/shuttleert.yml b/Resources/Maps/shuttleert.yml index 73bf1e10a6..2c4c8e5c6c 100644 --- a/Resources/Maps/shuttleert.yml +++ b/Resources/Maps/shuttleert.yml @@ -8447,7 +8447,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 865 @@ -8459,7 +8459,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 866 @@ -8599,7 +8599,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 883 @@ -8611,7 +8611,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 884 @@ -8623,7 +8623,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 885 @@ -8635,7 +8635,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 886 diff --git a/Resources/Maps/splitstation.yml b/Resources/Maps/splitstation.yml index 600c6d327d..3e9a19ade3 100644 --- a/Resources/Maps/splitstation.yml +++ b/Resources/Maps/splitstation.yml @@ -484,10 +484,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 23 type: Rack components: @@ -549,10 +546,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 32 type: GasPipeStraight components: @@ -27928,10 +27922,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 136 type: WallSolid components: @@ -28277,10 +28268,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 187 type: WallReinforced components: @@ -28302,10 +28290,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 190 type: VendingMachineCoffee components: @@ -30318,10 +30303,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 492 type: CableApcExtension components: @@ -37559,10 +37541,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1304 type: LockerHeadOfPersonnel components: @@ -37571,10 +37550,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1305 type: CarpetSBlue components: @@ -37589,10 +37565,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1307 type: LockerChiefEngineer components: @@ -37601,10 +37574,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1308 type: PottedPlantRandomPlastic components: @@ -37622,10 +37592,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1310 type: Catwalk components: @@ -39498,9 +39465,7 @@ entities: - pos: -37.63084,-8.432998 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1552 type: WallSolid components: @@ -39555,10 +39520,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1558 type: WallSolid components: @@ -39640,10 +39602,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1568 type: Table components: @@ -39694,10 +39653,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1574 type: SpawnPointAssistant components: @@ -40214,10 +40170,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1633 type: CableApcExtension components: @@ -40804,10 +40757,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1707 type: ReinforcedWindow components: @@ -41208,10 +41158,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1751 type: CableMV components: @@ -42737,10 +42684,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1975 type: Grille components: @@ -43262,10 +43206,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2052 type: WallReinforced components: @@ -43374,10 +43315,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2066 type: CarpetSBlue components: @@ -43404,10 +43342,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2070 type: Multitool components: @@ -53616,10 +53551,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 2970 type: ReinforcedWindow components: @@ -54009,10 +53941,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3015 type: WallReinforced components: @@ -56482,10 +56411,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 3296 type: WallReinforced components: @@ -57596,9 +57522,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3464 type: CrateEngineeringAMEJar @@ -57612,9 +57538,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 3465 type: CableHV @@ -62473,9 +62399,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4172 type: CableHV @@ -62960,10 +62886,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4233 type: ReinforcedWindow components: @@ -65910,10 +65833,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4621 type: TableCounterMetal components: @@ -67291,10 +67211,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4838 type: WallReinforced components: @@ -68051,10 +67968,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 4949 type: BoxSterileMask components: @@ -68525,7 +68439,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot ent: 5014 @@ -70749,10 +70663,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5314 type: ReinforcedWindow components: @@ -71646,10 +71557,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5453 type: Grille components: @@ -71939,9 +71847,7 @@ entities: - pos: 66.5,-84.5 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 5489 type: AsteroidRock components: @@ -72778,9 +72684,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5591 type: WallReinforced @@ -74187,10 +74093,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5743 type: WallReinforced components: @@ -74618,9 +74521,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 5809 type: CableHV @@ -74995,10 +74898,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 5853 type: WallSolid components: @@ -78081,10 +77981,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6131 type: PottedPlantRandom components: @@ -78238,10 +78135,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6153 type: WaterTankFull components: @@ -78333,10 +78227,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6167 type: SheetPlastic components: @@ -79987,10 +79878,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6312 type: ClosetEmergencyFilledRandom components: @@ -79999,10 +79887,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 6313 type: RollerBed components: @@ -87071,10 +86956,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7048 type: FirelockGlass components: @@ -87334,10 +87216,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7084 type: ClosetEmergencyFilledRandom components: @@ -87346,10 +87225,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7085 type: ReinforcedWindow components: @@ -87973,10 +87849,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7172 type: MedkitRadiationFilled components: @@ -89036,10 +88909,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 7257 type: WallSolid components: @@ -91476,9 +91346,7 @@ entities: - pos: -35.5,-61.5 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 7530 type: ToolboxEmergencyFilled components: @@ -96032,27 +95900,21 @@ entities: - pos: 12.432154,7.475606 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8109 type: FlashlightLantern components: - pos: -39.56517,4.444472 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8110 type: FlashlightLantern components: - pos: 11.417256,-1.6012474 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 8111 type: Flash components: @@ -96294,10 +96156,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8148 type: ChairWood components: @@ -97246,10 +97105,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8263 type: ClosetEmergencyFilledRandom components: @@ -97258,10 +97114,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8264 type: Catwalk components: @@ -102249,10 +102102,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8892 type: ClosetEmergencyFilledRandom components: @@ -102261,10 +102111,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8893 type: ClosetFireFilled components: @@ -102273,10 +102120,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8894 type: ClosetRadiationSuitFilled components: @@ -102285,10 +102129,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 8895 type: MedkitRadiationFilled components: @@ -103555,10 +103396,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9016 type: WallSolid components: @@ -105292,10 +105130,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9268 type: SubstationWallBasic components: @@ -106609,10 +106444,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9410 type: FirelockGlass components: @@ -110480,9 +110312,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9755 type: Table @@ -110532,9 +110364,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 9762 type: SignSurgery @@ -110667,10 +110499,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 9777 type: Rack components: @@ -111921,9 +111750,7 @@ entities: - pos: -50.5,7.5 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 9896 type: Poweredlight components: @@ -118050,10 +117877,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10483 type: ClosetEmergencyFilledRandom components: @@ -118062,10 +117886,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10484 type: ClothingOuterSuitEmergency components: @@ -119652,37 +119473,28 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10654 type: Stunbaton components: - pos: 14.370174,-87.41634 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10655 type: Stunbaton components: - pos: 14.510802,-87.52573 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10656 type: Stunbaton components: - pos: 14.604548,-87.63509 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 10657 type: WeaponTaser components: @@ -119947,10 +119759,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10692 type: LockerEvidence components: @@ -119959,10 +119768,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10693 type: LockerEvidence components: @@ -119971,10 +119777,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10694 type: LockerEvidence components: @@ -119983,10 +119786,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10695 type: LockerEvidence components: @@ -119995,10 +119795,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10696 type: WallReinforced components: @@ -120371,10 +120168,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10747 type: WallReinforced components: @@ -120444,10 +120238,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 10757 type: SpawnPointHeadOfSecurity components: @@ -125099,10 +124890,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11184 type: Rack components: @@ -125168,10 +124956,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11194 type: WallReinforced components: @@ -125578,10 +125363,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11259 type: AirlockCaptainLocked components: @@ -127135,10 +126917,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11467 type: AirlockMaint components: @@ -127934,18 +127713,14 @@ entities: - pos: 15.493332,-95.47717 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11591 type: ClothingHeadHelmetHardsuitSecurity components: - pos: 16.602709,-95.555305 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11592 type: ClothingMaskBreath components: @@ -128015,27 +127790,21 @@ entities: - pos: 15.521584,-101.209366 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11602 type: ClothingHeadHelmetHardsuitSecurity components: - pos: 16.505953,-101.19371 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11603 type: ClothingHeadHelmetHardsuitSecurity components: - pos: 17.568459,-101.178116 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 11604 type: ClothingMaskBreath components: @@ -128538,10 +128307,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11657 type: LockerSecurityFilled components: @@ -128550,10 +128316,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11658 type: LockerSecurityFilled components: @@ -128562,10 +128325,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11659 type: WallReinforced components: @@ -128622,10 +128382,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11668 type: ClosetEmergencyFilledRandom components: @@ -128634,10 +128391,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11669 type: SignPrison components: @@ -128734,10 +128488,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11684 type: WardrobePrisonFilled components: @@ -128746,10 +128497,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11685 type: WardrobePrisonFilled components: @@ -128758,10 +128506,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11686 type: WardrobePrisonFilled components: @@ -128770,10 +128515,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11687 type: CableApcExtension components: @@ -129382,10 +129124,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11751 type: ClosetFireFilled components: @@ -129394,10 +129133,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11752 type: WallSolid components: @@ -130800,9 +130536,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11957 type: JanitorialTrolley @@ -130837,10 +130573,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 11961 type: MopBucket components: @@ -131468,10 +131201,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12053 type: Table components: @@ -131498,9 +131228,7 @@ entities: - pos: -35.829475,-87.42617 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 12057 type: ClothingHeadHatBeretEngineering components: @@ -131515,10 +131243,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12059 type: Table components: @@ -131533,10 +131258,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12061 type: LockerWeldingSuppliesFilled components: @@ -131545,10 +131267,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12062 type: WallReinforced components: @@ -131768,10 +131487,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12094 type: LockerEngineerFilled components: @@ -131780,10 +131496,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12095 type: VendingMachineYouTool components: @@ -132190,10 +131903,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12158 type: RandomPosterLegit components: @@ -132215,10 +131925,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12161 type: LockerAtmosphericsFilled components: @@ -132227,10 +131934,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12162 type: RandomPosterAny components: @@ -132252,10 +131956,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12165 type: SignEngineering components: @@ -132341,10 +132042,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12178 type: ChairWood components: @@ -132401,10 +132099,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12187 type: Poweredlight components: @@ -133902,10 +133597,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12359 type: Stool components: @@ -135437,10 +135129,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12592 type: EmergencyRollerBed components: @@ -135787,10 +135476,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12644 type: ClosetEmergencyFilledRandom components: @@ -135799,10 +135485,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12645 type: SubstationBasic components: @@ -137975,10 +137658,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12846 type: ClosetEmergencyFilledRandom components: @@ -137987,10 +137667,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12847 type: Catwalk components: @@ -138660,10 +138337,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12898 type: ClosetEmergencyFilledRandom components: @@ -138672,10 +138346,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 12899 type: MedkitFilled components: @@ -151483,10 +151154,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14050 type: LockerSalvageSpecialistFilled components: @@ -151495,10 +151163,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14051 type: LockerSalvageSpecialistFilled components: @@ -151507,10 +151172,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14052 type: LockerSalvageSpecialistFilled components: @@ -151519,10 +151181,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14053 type: LockerSalvageSpecialistFilled components: @@ -151531,10 +151190,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14054 type: LockerSalvageSpecialistFilled components: @@ -151543,10 +151199,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14055 type: AirlockSalvageGlassLocked components: @@ -151830,10 +151483,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14096 type: ClosetL3JanitorFilled components: @@ -151842,10 +151492,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14097 type: WetFloorSign components: @@ -152712,9 +152359,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 14196 type: CableHV @@ -155023,10 +154670,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14422 type: ClosetToolFilled components: @@ -155035,10 +154679,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14423 type: LockerEngineerFilled components: @@ -155047,10 +154688,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14424 type: SubstationBasic components: @@ -157447,10 +157085,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14746 type: ClosetEmergencyFilledRandom components: @@ -157459,10 +157094,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14747 type: ClosetEmergencyFilledRandom components: @@ -157471,10 +157103,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14748 type: ClosetEmergencyFilledRandom components: @@ -157483,10 +157112,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14749 type: ClosetFireFilled components: @@ -157495,10 +157121,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14750 type: ClosetFireFilled components: @@ -157507,10 +157130,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14751 type: ClosetFireFilled components: @@ -157519,10 +157139,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14752 type: ClosetFireFilled components: @@ -157531,10 +157148,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14753 type: ClosetEmergencyFilledRandom components: @@ -157543,10 +157157,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14754 type: ClosetEmergencyFilledRandom components: @@ -157555,10 +157166,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 14755 type: Rack components: @@ -159734,10 +159342,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15085 type: SinkWide components: @@ -162360,10 +161965,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15333 type: ClosetEmergencyFilledRandom components: @@ -162372,10 +161974,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15334 type: Grille components: @@ -162519,10 +162118,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15349 type: ClosetBase components: @@ -162531,10 +162127,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15350 type: ClosetMaintenanceFilledRandom components: @@ -162543,10 +162136,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15351 type: ClosetLegalFilled components: @@ -162555,10 +162145,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15352 type: ClosetMaintenanceFilledRandom components: @@ -162567,10 +162154,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15353 type: Table components: @@ -163469,10 +163053,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15446 type: ClosetFireFilled components: @@ -163481,10 +163062,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 15447 type: PottedPlantRandom components: @@ -164888,9 +164466,7 @@ entities: - pos: 21.5,-28.5 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 15575 type: d12Dice components: @@ -190357,10 +189933,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17760 type: ClosetFireFilled components: @@ -190369,10 +189942,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17761 type: ClosetEmergencyFilledRandom components: @@ -190381,10 +189951,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17762 type: ClosetFireFilled components: @@ -190393,10 +189960,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17763 type: ClosetEmergencyFilledRandom components: @@ -190405,10 +189969,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17764 type: ClosetFireFilled components: @@ -190417,10 +189978,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17765 type: ClosetEmergencyFilledRandom components: @@ -190429,10 +189987,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17766 type: WallSolid components: @@ -192864,10 +192419,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 17991 type: Table components: @@ -197936,10 +197488,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18456 type: WaterTankFull components: @@ -207063,10 +206612,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19357 type: ClosetL3ScienceFilled components: @@ -207075,10 +206621,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19358 type: RandomInstruments components: @@ -209807,27 +209350,21 @@ entities: - pos: -25.57955,-75.37267 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 19600 type: FlashlightLantern components: - pos: -25.45455,-75.56018 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 19601 type: FlashlightLantern components: - pos: -25.39205,-75.669556 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 19602 type: PowerCellRecharger components: @@ -219376,10 +218913,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 20374 type: ClosetEmergencyFilledRandom components: @@ -219388,10 +218922,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 20375 type: Rack components: @@ -220657,10 +220188,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 20582 type: ClosetEmergencyFilledRandom components: @@ -220669,10 +220197,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 20583 type: AirlockExternalGlassShuttleLocked components: @@ -226669,10 +226194,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 21117 type: CableApcExtension components: @@ -228614,9 +228136,7 @@ entities: - pos: 22.557734,-42.43441 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 21411 type: Poweredlight components: @@ -231634,9 +231154,7 @@ entities: - pos: -55.58266,-123.1091 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 21751 type: CableMV components: @@ -232789,10 +232307,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 21879 type: ClosetMaintenanceFilledRandom components: @@ -232801,10 +232316,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 21880 type: Rack components: @@ -233393,9 +232905,7 @@ entities: - pos: 27.37446,-99.27969 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 21962 type: Flash components: @@ -233553,7 +233063,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 21983 - 5279 @@ -234310,10 +233820,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22092 type: PoweredlightExterior components: @@ -234460,10 +233967,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22109 type: ClosetEmergencyFilledRandom components: @@ -234472,10 +233976,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22110 type: ConveyorBelt components: @@ -235651,10 +235152,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22242 type: LockerChiefMedicalOfficer components: @@ -235663,10 +235161,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22243 type: PottedPlantBioluminscent components: @@ -236424,18 +235919,14 @@ entities: - pos: 63.5,-41.5 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 22329 type: Floodlight components: - pos: 69.5,-41.5 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 22330 type: Table components: @@ -236719,10 +236210,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22359 type: LockerMedicalFilled components: @@ -236731,10 +236219,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22360 type: LockerMedicalFilled components: @@ -236743,10 +236228,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22361 type: LockerMedicalFilled components: @@ -236755,10 +236237,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22362 type: LockerMedicineFilled components: @@ -236767,10 +236246,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22363 type: LockerMedicalFilled components: @@ -236779,10 +236255,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22364 type: Wrench components: @@ -237266,10 +236739,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22437 type: SignElectricalMed components: @@ -238043,10 +237513,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22552 type: WardrobePrisonFilled components: @@ -238055,10 +237522,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22553 type: AirlockMaintSecLocked components: @@ -238091,10 +237555,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22556 type: Rack components: @@ -238127,10 +237588,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22561 type: PoweredSmallLight components: @@ -238189,10 +237647,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22567 type: LockerChiefEngineerFilled components: @@ -238201,10 +237656,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22568 type: SpawnPointChiefEngineer components: @@ -238219,10 +237671,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22570 type: SpawnPointHeadOfPersonnel components: @@ -238880,10 +238329,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22661 type: Girder components: @@ -240691,9 +240137,7 @@ entities: - pos: -16.55973,-127.404785 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 22893 type: ClothingOuterSuitEmergency components: @@ -240853,10 +240297,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22914 type: MedkitRadiationFilled components: @@ -241285,7 +240726,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241296,7 +240737,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241307,7 +240748,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241318,7 +240759,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241329,7 +240770,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241340,7 +240781,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241351,7 +240792,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241379,7 +240820,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241391,7 +240832,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241403,7 +240844,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241415,7 +240856,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241427,7 +240868,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241439,7 +240880,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -241451,7 +240892,7 @@ entities: parent: 69 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -245428,10 +244869,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 23417 type: ClosetFireFilled components: @@ -245440,10 +244878,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 23418 type: CableApcExtension components: @@ -248247,9 +247682,7 @@ entities: - pos: 37.540195,-65.07301 parent: 69 type: Transform - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 23722 type: ClothingOuterSuitAtmosFire components: @@ -248492,10 +247925,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 23762 type: Airlock components: diff --git a/Resources/Maps/ssreach.yml b/Resources/Maps/ssreach.yml index a6079e7d30..beb3d37953 100644 --- a/Resources/Maps/ssreach.yml +++ b/Resources/Maps/ssreach.yml @@ -3204,10 +3204,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 18 type: LockerEngineerFilled components: @@ -3216,10 +3213,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 19 type: AirlockServiceGlassLocked components: @@ -3244,10 +3238,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 22 type: ClosetEmergencyFilledRandom components: @@ -3256,10 +3247,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 23 type: AMEJar components: @@ -3368,10 +3356,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 36 type: SpawnPointBotanist components: @@ -3416,10 +3401,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 43 type: AirlockCommandGlassLocked components: @@ -3679,10 +3661,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 77 type: ClosetFireFilled components: @@ -3691,10 +3670,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 78 type: ClosetFireFilled components: @@ -3703,10 +3679,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 79 type: ClosetFireFilled components: @@ -3715,10 +3688,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 80 type: Chair components: @@ -4012,10 +3982,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 123 type: WallSolid components: @@ -4076,10 +4043,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 131 type: LockerSecurityFilled components: @@ -4088,10 +4052,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 132 type: LockerChemistryFilled components: @@ -4100,10 +4061,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 133 type: LockerSecurityFilled components: @@ -4112,10 +4070,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 134 type: LockerHeadOfSecurityFilled components: @@ -4124,10 +4079,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 135 type: TableReinforced components: @@ -6172,10 +6124,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 439 type: VendingMachineBooze components: @@ -6443,10 +6392,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 468 type: WindowReinforcedDirectional components: @@ -11084,10 +11030,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 978 type: WallSolid components: @@ -12175,7 +12118,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 2047 - 2046 @@ -14511,10 +14454,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1404 type: WallReinforced components: @@ -15968,10 +15908,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1556 type: EmergencyLight components: @@ -16747,10 +16684,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1629 type: AirlockJanitorLocked components: @@ -16769,10 +16703,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1631 type: GasPipeFourway components: @@ -20318,10 +20249,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1972 type: WardrobeCargo components: @@ -20330,10 +20258,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1973 type: Table components: @@ -20366,10 +20291,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1978 type: ClosetEmergencyFilledRandom components: @@ -20378,10 +20300,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1979 type: ClosetFireFilled components: @@ -20390,10 +20309,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1980 type: ClosetFireFilled components: @@ -20402,10 +20318,7 @@ entities: type: Transform - isPlaceable: False type: PlaceableSurface - - containers: - EntityStorageComponent: !type:Container - ents: [] - type: ContainerContainer + - uid: 1981 type: Table components: @@ -20471,9 +20384,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1991 type: LampGold components: @@ -20483,9 +20394,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1992 type: LampGold components: @@ -20494,9 +20403,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1993 type: LampGold components: @@ -20505,9 +20412,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1994 type: LampGold components: @@ -20516,9 +20421,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1995 type: LampGold components: @@ -20527,9 +20430,7 @@ entities: type: Transform - canCollide: False type: Physics - - containers: - cellslot_cell_container: !type:ContainerSlot {} - type: ContainerContainer + - uid: 1996 type: Paper components: @@ -21583,9 +21484,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2119 type: SpawnPointAssistant diff --git a/Resources/Maps/waystation.yml b/Resources/Maps/waystation.yml index 4fc850f41c..fba26c5147 100644 --- a/Resources/Maps/waystation.yml +++ b/Resources/Maps/waystation.yml @@ -292,7 +292,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 20 @@ -15011,7 +15011,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 135 @@ -15693,7 +15693,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 218 @@ -15705,7 +15705,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 219 @@ -15761,7 +15761,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 224 @@ -16464,7 +16464,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 301 @@ -17021,7 +17021,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 375 @@ -17033,7 +17033,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 376 @@ -17329,7 +17329,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 420 @@ -17341,7 +17341,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 12758 type: ContainerContainer @@ -17692,7 +17692,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 455 @@ -18018,7 +18018,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 502 type: LampGold @@ -18029,7 +18029,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 503 type: Lamp @@ -18040,7 +18040,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 504 type: Carpet @@ -18429,7 +18429,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 554 @@ -18441,7 +18441,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 555 @@ -18874,7 +18874,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 622 - 620 @@ -18889,7 +18889,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 621 - 619 @@ -18953,9 +18953,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 625 type: HydroponicsToolHatchet @@ -20465,7 +20465,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 3242 - 3241 @@ -20602,7 +20602,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 800 @@ -21746,9 +21746,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 944 type: ClothingHeadHatSombrero @@ -22022,7 +22022,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 977 @@ -22872,7 +22872,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1070 @@ -24106,7 +24106,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1214 type: RubberStampApproved @@ -24248,7 +24248,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1229 type: Poweredlight @@ -24686,7 +24686,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1269 @@ -25154,7 +25154,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1312 @@ -25166,7 +25166,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1313 @@ -25178,7 +25178,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1314 @@ -25538,7 +25538,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1365 @@ -25734,7 +25734,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1390 @@ -26179,7 +26179,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1437 type: Stunbaton @@ -26190,7 +26190,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1438 type: LockerSyndicatePersonal @@ -26201,7 +26201,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 1445 - 1442 @@ -26581,7 +26581,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1484 @@ -26593,7 +26593,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1485 @@ -26988,7 +26988,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1534 type: ClosetBase @@ -26999,7 +26999,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1535 @@ -27570,7 +27570,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1593 @@ -28566,7 +28566,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1706 @@ -28578,7 +28578,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1707 @@ -28590,7 +28590,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1708 @@ -29033,7 +29033,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1767 @@ -29338,7 +29338,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1805 type: ClothingHeadHelmetHardsuitSecurity @@ -29349,7 +29349,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1806 type: ClothingHeadHelmetHardsuitSecurity @@ -29360,7 +29360,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 1807 type: PoweredSmallLight @@ -29446,7 +29446,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1812 @@ -29458,7 +29458,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1813 @@ -29470,7 +29470,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1814 @@ -29482,7 +29482,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1815 @@ -30166,9 +30166,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 1898 type: SeedExtractor @@ -30719,7 +30719,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 1957 @@ -31877,7 +31877,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2073 @@ -31889,7 +31889,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2074 @@ -31907,7 +31907,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2076 @@ -32770,7 +32770,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2187 type: LampGold @@ -32781,7 +32781,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2188 type: Poweredlight @@ -33409,7 +33409,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2265 @@ -33877,7 +33877,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2314 @@ -35135,9 +35135,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2444 type: CrateMedicalSupplies @@ -35151,9 +35151,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2445 type: CrateGenericSteel @@ -35167,9 +35167,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2446 type: CrateGenericSteel @@ -35183,9 +35183,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2447 type: CrateEngineeringCableBulk @@ -35199,9 +35199,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2448 type: Rack @@ -35492,7 +35492,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2482 @@ -35504,7 +35504,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2483 @@ -36176,9 +36176,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 2555 type: AirlockExternalLocked @@ -36903,7 +36903,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2632 @@ -36915,7 +36915,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2633 @@ -36955,7 +36955,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2636 @@ -36991,7 +36991,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 2638 type: ContainerContainer @@ -37027,7 +37027,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2642 type: ClothingHandsGlovesColorBlack @@ -37054,7 +37054,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2645 type: WallReinforced @@ -37932,7 +37932,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2767 @@ -38703,7 +38703,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2862 @@ -39103,7 +39103,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2905 @@ -39335,7 +39335,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2939 @@ -39357,7 +39357,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 2941 type: DrinkDetFlask @@ -39414,7 +39414,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 2945 type: ContainerContainer @@ -39582,7 +39582,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2960 @@ -39594,7 +39594,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 2961 @@ -41104,7 +41104,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3144 type: GasVentScrubber @@ -41465,7 +41465,7 @@ entities: - canCollide: False type: Physics - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] storagebase: !type:Container ents: [] @@ -41549,7 +41549,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3192 type: CowToolboxFilled @@ -41759,7 +41759,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -41771,7 +41771,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -41800,7 +41800,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3228 type: CrayonBox @@ -43722,7 +43722,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3473 @@ -44457,7 +44457,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3576 @@ -44469,7 +44469,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3577 @@ -45458,7 +45458,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 3695 type: ToolboxElectricalFilled @@ -45739,7 +45739,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3725 @@ -46030,7 +46030,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3763 @@ -46042,7 +46042,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3764 @@ -46617,7 +46617,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3832 @@ -46629,7 +46629,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 3833 @@ -48294,7 +48294,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4041 @@ -48896,7 +48896,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4109 @@ -49463,7 +49463,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 4179 type: ContainerContainer @@ -49663,7 +49663,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4200 @@ -49681,7 +49681,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4202 @@ -50046,7 +50046,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4246 @@ -50091,9 +50091,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 4251 type: SprayBottleSpaceCleaner @@ -50352,7 +50352,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4278 @@ -50937,7 +50937,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4351 @@ -51020,7 +51020,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4360 @@ -52840,7 +52840,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4580 @@ -52946,7 +52946,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4590 @@ -53040,7 +53040,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4602 @@ -55458,7 +55458,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -55470,7 +55470,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -55482,7 +55482,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -55494,7 +55494,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -55506,7 +55506,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -55518,7 +55518,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -55530,7 +55530,7 @@ entities: parent: 82 type: Transform - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] morgue_tray: !type:ContainerSlot {} type: ContainerContainer @@ -56226,7 +56226,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4929 @@ -56339,7 +56339,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 4941 @@ -57164,7 +57164,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5035 @@ -58698,7 +58698,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5208 @@ -58948,7 +58948,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5240 type: PoweredSmallLight @@ -59466,7 +59466,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5303 type: ContainerContainer @@ -60335,7 +60335,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5413 @@ -60922,7 +60922,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5488 @@ -60952,7 +60952,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5489 type: ContainerContainer @@ -60988,7 +60988,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 5493 type: WaterTankFull @@ -61060,7 +61060,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 11407 - 11406 @@ -62062,7 +62062,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5633 @@ -62365,7 +62365,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5667 @@ -62377,7 +62377,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5668 @@ -62475,7 +62475,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 5679 - 5678 @@ -64115,7 +64115,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5847 @@ -64127,7 +64127,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5848 @@ -64701,7 +64701,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 5909 @@ -67031,7 +67031,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6162 type: PoweredSmallLight @@ -67511,10 +67511,10 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 6220 - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6220 type: IngotSilver @@ -67644,13 +67644,13 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 6234 - 6233 - 6232 - 6231 - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6231 type: DrinkGoldenCup @@ -70217,7 +70217,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6513 @@ -70229,7 +70229,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6514 @@ -70241,7 +70241,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6515 @@ -71693,7 +71693,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6663 type: CableApcExtension @@ -72016,7 +72016,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 6727 - 6726 @@ -73898,7 +73898,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 6899 @@ -73912,7 +73912,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 6902 - 6901 @@ -74000,7 +74000,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6911 type: ClothingOuterSuitFire @@ -74019,7 +74019,7 @@ entities: - canCollide: False type: Physics - containers: - cellslot_cell_container: !type:ContainerSlot {} + cell_slot: !type:ContainerSlot {} type: ContainerContainer - uid: 6913 type: ClothingHandsGlovesColorBlack @@ -74625,9 +74625,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 6989 type: MachineFrame @@ -74728,7 +74728,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7000 @@ -74746,7 +74746,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7002 @@ -75863,7 +75863,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7142 @@ -76077,7 +76077,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7170 @@ -76089,7 +76089,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7171 @@ -79261,7 +79261,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7573 @@ -79273,7 +79273,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7574 @@ -79376,7 +79376,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7587 @@ -79388,7 +79388,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7588 @@ -79400,7 +79400,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7592 - 7591 @@ -79777,9 +79777,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7634 type: CrateEngineeringAMEShielding @@ -79793,9 +79793,9 @@ entities: - EntityStorageComponent type: Construction - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7635 type: LockerEngineer @@ -79808,7 +79808,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7641 - 7640 @@ -80680,7 +80680,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7746 @@ -80692,7 +80692,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7747 @@ -80704,7 +80704,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7748 @@ -80716,7 +80716,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7749 @@ -80728,7 +80728,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7750 @@ -80740,7 +80740,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7751 @@ -80752,7 +80752,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7752 @@ -80764,7 +80764,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7753 @@ -80776,7 +80776,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7754 @@ -81095,7 +81095,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7787 @@ -81261,7 +81261,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7803 @@ -81273,7 +81273,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 7804 @@ -81324,7 +81324,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 7830 - 7829 @@ -81346,7 +81346,7 @@ entities: - 7822 - 7821 - 7820 - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 7811 type: SheetSteel @@ -87655,7 +87655,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 8622 - 8619 @@ -88038,7 +88038,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8652 @@ -88050,7 +88050,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 8653 @@ -117115,9 +117115,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11333 type: PianoInstrument @@ -117157,9 +117157,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 11338 type: Table @@ -117271,7 +117271,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 11347 - 11368 @@ -117423,7 +117423,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 11370 @@ -117487,7 +117487,7 @@ entities: - canCollide: False type: Physics - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] storagebase: !type:Container ents: [] @@ -117501,7 +117501,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 11384 - 11383 @@ -117632,7 +117632,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 11395 - 11396 @@ -129408,7 +129408,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 12774 - 12775 @@ -129637,7 +129637,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12799 @@ -129649,7 +129649,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] type: ContainerContainer - uid: 12800 @@ -137253,9 +137253,9 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: [] - PaperLabel: !type:ContainerSlot {} + paper_label: !type:ContainerSlot {} type: ContainerContainer - uid: 13914 type: SpawnVehicleSecway @@ -137847,7 +137847,7 @@ entities: - isPlaceable: False type: PlaceableSurface - containers: - EntityStorageComponent: !type:Container + entity_storage: !type:Container ents: - 13986 type: ContainerContainer diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index 2c05048a0a..920fa60c54 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -7,6 +7,9 @@ - type: HandheldLight addPrefix: true - type: PowerCellSlot + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot - type: Sprite sprite: Objects/Misc/Lights/lights.rsi netsync: false diff --git a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml index c88b7b72cd..09e1c9286b 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/flashlights.yml @@ -28,6 +28,9 @@ - type: PowerCellSlot cellSlot: startingItem: PowerCellSmallHigh + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot - type: Sprite sprite: Objects/Tools/flashlight.rsi netsync: false diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml index 8be3d3c79f..da4fe5349f 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/base_structureclosets.yml @@ -38,6 +38,9 @@ layer: - MachineLayer - type: EntityStorage + - type: ContainerContainer + containers: + entity_storage: !type:Container - type: Weldable - type: PlaceableSurface placeCentered: true diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml index f5c498d051..0a299e5144 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/base_structurecrates.yml @@ -57,6 +57,10 @@ whitelist: components: - Paper + - type: ContainerContainer + containers: + entity_storage: !type:Container + paper_label: !type:ContainerSlot - type: entity id: CrateBaseSecure diff --git a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml index 151cd9cbb7..38d64ee7de 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml @@ -35,6 +35,10 @@ openSound: path: /Audio/Items/deconstruct.ogg trayPrototype: MorgueTray + - type: ContainerContainer + containers: + entity_storage: !type:Container + morgue_tray: !type:ContainerSlot - type: Appearance visuals: - type: MorgueVisualizer