More container pruning (#8576)

This commit is contained in:
metalgearsloth
2022-06-12 13:29:03 +10:00
committed by GitHub
parent 58ddb19cd2
commit a983b5e2f5
42 changed files with 2534 additions and 5536 deletions

View File

@@ -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;

View File

@@ -114,7 +114,7 @@ namespace Content.Server.Storage.Components
protected override void Initialize()
{
base.Initialize();
Contents = Owner.EnsureContainer<Container>(nameof(EntityStorageComponent));
Contents = Owner.EnsureContainer<Container>(EntityStorageSystem.ContainerName);
Contents.ShowContents = _showContents;
Contents.OccludesLight = _occludesLight;

View File

@@ -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();

View File

@@ -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<ContainerSlot>(itemSlots.Owner, id);
slot.ContainerSlot = _containers.EnsureContainer<ContainerSlot>(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<ItemSlotsComponent>(uid);
slot.ContainerSlot = ContainerHelpers.EnsureContainer<ContainerSlot>(itemSlots.Owner, id);
slot.ContainerSlot = _containers.EnsureContainer<ContainerSlot>(itemSlots.Owner, id);
if (itemSlots.Slots.ContainsKey(id))
Logger.Error($"Duplicate item slot key. Entity: {EntityManager.GetComponent<MetaDataComponent>(itemSlots.Owner).EntityName} ({uid}), key: {id}");
itemSlots.Slots[id] = slot;

View File

@@ -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))

View File

@@ -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:

View File

@@ -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:

View File

@@ -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:

View File

@@ -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:

View File

@@ -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:

View File

@@ -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

View File

@@ -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

View File

@@ -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:

View File

@@ -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

View File

@@ -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:

View File

@@ -405,10 +405,6 @@ entities:
type: Transform
- isPlaceable: False
type: PlaceableSurface
- containers:
EntityStorageComponent: !type:Container
ents: []
type: ContainerContainer
- uid: 15
type: TableCarpet
components:

View File

@@ -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
...

View File

@@ -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:

View File

@@ -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:

View File

@@ -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

View File

@@ -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:

View File

@@ -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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -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:

File diff suppressed because it is too large Load Diff

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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

View File

@@ -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

View File

@@ -38,6 +38,9 @@
layer:
- MachineLayer
- type: EntityStorage
- type: ContainerContainer
containers:
entity_storage: !type:Container
- type: Weldable
- type: PlaceableSurface
placeCentered: true

View File

@@ -57,6 +57,10 @@
whitelist:
components:
- Paper
- type: ContainerContainer
containers:
entity_storage: !type:Container
paper_label: !type:ContainerSlot
- type: entity
id: CrateBaseSecure

View File

@@ -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