Files
tbd-station-14/Content.Server/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
rolfero 4b23521af5 Melee special examine (#11168)
Co-authored-by: CommieFlowers <rasmus.cedergren@hotmail.com>
2022-09-10 23:39:36 -07:00

12 lines
320 B
C#

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!;
}
}