Files
OldThink/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs

11 lines
299 B
C#
Raw Permalink Normal View History

2023-05-10 10:01:23 +10:00
using Content.Shared.Damage;
namespace Content.Shared.Wieldable.Components;
[RegisterComponent, Access(typeof(WieldableSystem))]
public sealed partial class IncreaseDamageOnWieldComponent : Component
2023-05-10 10:01:23 +10:00
{
[DataField("damage", required: true)]
public DamageSpecifier BonusDamage = default!;
}