Files
crystall-punk-14/Content.Server/AME/Components/AMEPartComponent.cs

17 lines
566 B
C#
Raw Normal View History

using Content.Shared.Sound;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
2021-06-09 22:19:39 +02:00
namespace Content.Server.AME.Components
{
[RegisterComponent]
2022-04-15 17:20:20 -04:00
public sealed class AMEPartComponent : Component
{
[DataField("unwrapSound")]
2022-04-15 17:20:20 -04:00
public SoundSpecifier UnwrapSound = new SoundPathSpecifier("/Audio/Effects/unwrap.ogg");
[DataField("qualityNeeded", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
2022-04-15 17:20:20 -04:00
public string QualityNeeded = "Pulsing";
}
}