12 lines
323 B
C#
12 lines
323 B
C#
using Content.Shared.Damage;
|
|
|
|
namespace Content.Server.Wieldable.Components
|
|
{
|
|
[RegisterComponent, Friend(typeof(WieldableSystem))]
|
|
public sealed class IncreaseDamageOnWieldComponent : Component
|
|
{
|
|
[DataField("modifiers", required: true)]
|
|
public DamageModifierSet Modifiers = default!;
|
|
}
|
|
}
|