Co-authored-by: Perry Fraser <perryprog@users.noreply.github.com> Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
12 lines
357 B
C#
12 lines
357 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)]
|
|
[Access(Other = AccessPermissions.ReadExecute)]
|
|
public DamageSpecifier BonusDamage = default!;
|
|
}
|