Files
tbd-station-14/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs

11 lines
305 B
C#

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