Files
crystall-punk-14/Content.Server/_CP14/MeleeWeapon/CP14SharpenedComponent.cs
2024-06-04 16:59:53 +03:00

16 lines
378 B
C#

namespace Content.Server._CP14.MeleeWeapon;
/// <summary>
/// allows the object to become blunt with use
/// </summary>
[RegisterComponent, Access(typeof(CP14SharpeningSystem))]
public sealed partial class CP14SharpenedComponent : Component
{
[DataField]
public float Sharpness = 1f;
[DataField]
public float SharpnessDamageBy1Damage = 0.002f; //500 damage
}