16 lines
356 B
C#
16 lines
356 B
C#
|
|
namespace Content.Server._CP14.MeleeWeapon;
|
|
|
|
/// <summary>
|
|
/// allows the object to become blunt with use
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CPSharpeningSystem))]
|
|
public sealed partial class CPSharpenedComponent : Component
|
|
{
|
|
[DataField]
|
|
public float Sharpness = 1f;
|
|
|
|
[DataField]
|
|
public float SharpnessDamageByHit = 0.01f;
|
|
}
|