6
StarHorizon_Public/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
2026-01-13 18:31:02 +02:00

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