using Content.Shared.Damage; namespace Content.Shared.Interaction.Components { /// /// A simple clumsy tag-component. /// [RegisterComponent] public sealed class ClumsyComponent : Component { [DataField("clumsyDamage", required: true)] [ViewVariables(VVAccess.ReadWrite)] public DamageSpecifier ClumsyDamage = default!; } }