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