Files
crystall-punk-14/Content.Shared/_CP14/MeleeWeapon/Components/CP14SharpenedComponent.cs

17 lines
443 B
C#
Raw Permalink Normal View History

using Content.Shared._CP14.MeleeWeapon.EntitySystems;
namespace Content.Shared._CP14.MeleeWeapon.Components;
/// <summary>
/// allows the object to become blunt with use
/// </summary>
2024-04-20 11:51:04 +03:00
[RegisterComponent, Access(typeof(CP14SharpeningSystem))]
public sealed partial class CP14SharpenedComponent : Component
{
[DataField]
public float Sharpness = 1f;
[DataField]
2024-06-04 16:59:53 +03:00
public float SharpnessDamageBy1Damage = 0.002f; //500 damage
}