using Content.Shared.Damage; namespace Content.Shared._CP14.Demiplane.Components; /// /// When closing the demiplane, all entities with this component will be thrown out instead of being deleted. /// [RegisterComponent, Access(typeof(CP14SharedDemiplaneSystem))] public sealed partial class CP14DemiplaneForceExtractComponent : Component { [DataField] public bool Enabled = true; [DataField] public DamageSpecifier ExtractDamage = new() { DamageDict = new() { { "Blunt", 111 }, } }; }