Files

26 lines
788 B
C#
Raw Permalink Normal View History

using Robust.Shared.Audio;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
using Robust.Shared.Prototypes;
namespace Content.Server.Abilities.Felinid
{
[RegisterComponent]
2024-01-13 09:14:00 +03:00
public sealed partial class FelinidComponent : Component
{
/// <summary>
/// The hairball prototype to use.
/// </summary>
[DataField("hairballPrototype", customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))]
public string HairballPrototype = "Hairball";
[DataField]
public SoundSpecifier MouseEatingSound = new SoundCollectionSpecifier("eating");
2024-01-13 09:14:00 +03:00
public EntityUid? HairballAction;
public EntityUid? EatMouseAction;
public EntityUid? PotentialTarget = null;
}
}