using Content.Shared.Damage; namespace Content.Server.Wieldable.Components { [RegisterComponent, Access(typeof(WieldableSystem))] public sealed class IncreaseDamageOnWieldComponent : Component { [DataField("damage", required: true)] public DamageSpecifier BonusDamage = default!; } }