using Content.Shared.Damage; using Robust.Shared.GameObjects; using Robust.Shared.Serialization.Manager.Attributes; namespace Content.Server.Armor { [RegisterComponent] public sealed class ArmorComponent : Component { [DataField("modifiers", required: true)] public DamageModifierSet Modifiers = default!; } }