using Content.Shared.Tools;
using Robust.Shared.Audio;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Ame.Components;
///
/// Packaged AME machinery that can be deployed to construct an AME.
///
[RegisterComponent]
public sealed class AmePartComponent : Component
{
///
/// The sound played when the AME shielding is unpacked.
///
[DataField("unwrapSound")]
public SoundSpecifier UnwrapSound = new SoundPathSpecifier("/Audio/Effects/unwrap.ogg");
///
/// The tool quality required to deploy the packaged AME shielding.
///
[DataField("qualityNeeded", customTypeSerializer: typeof(PrototypeIdSerializer))]
public string QualityNeeded = "Pulsing";
}