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