using Robust.Shared.Audio;
namespace Content.Shared._CP14.LockKey.Components;
///
/// Allows, when interacting with keys, to mill different teeth, changing the shape of the key
///
[RegisterComponent]
public sealed partial class CP14KeyFileComponent : Component
{
///
/// sound when used
///
[DataField]
public SoundSpecifier UseSound =
new SoundPathSpecifier("/Audio/_CP14/Items/sharpening_stone.ogg")
{
Params = AudioParams.Default.WithVariation(0.02f),
};
}