2024-08-02 13:51:54 +03:00
|
|
|
using Content.Shared._CP14.MeleeWeapon.EntitySystems;
|
2024-04-12 21:09:54 +03:00
|
|
|
|
2024-08-02 13:51:54 +03:00
|
|
|
namespace Content.Shared._CP14.MeleeWeapon.Components;
|
2024-04-12 21:09:54 +03:00
|
|
|
|
|
|
|
|
/// <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
|
2024-04-12 21:09:54 +03:00
|
|
|
{
|
|
|
|
|
[DataField]
|
|
|
|
|
public float Sharpness = 1f;
|
|
|
|
|
|
|
|
|
|
[DataField]
|
2024-06-04 16:59:53 +03:00
|
|
|
public float SharpnessDamageBy1Damage = 0.002f; //500 damage
|
2024-04-12 21:09:54 +03:00
|
|
|
}
|