fish-station/Content.Shared/_RMC14/Xenonids/Screech/XenoScreechComponent.cs
ThereDrD 6c8050eb1e
Новые эффекты взрывов (#1410)
Co-authored-by: Vero <73014819+vero5123@users.noreply.github.com>
Co-authored-by: Whisper <121047731+QuietlyWhisper@users.noreply.github.com>
Co-authored-by: DrSmugleaf <10968691+DrSmugleaf@users.noreply.github.com>
2025-02-20 17:29:41 +03:00

15 lines
568 B
C#

using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._RMC14.Xenonids.Screech;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class XenoScreechComponent : Component
{
[DataField, AutoNetworkedField]
public EntProtoId Effect = "CMEffectScreechShort";
[DataField, AutoNetworkedField]
public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/_RMC14/Xeno/alien_queen_screech.ogg", AudioParams.Default.WithVolume(-7).WithPlayOffset(1.4f));
}