mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 06:58:55 +03:00
20 lines
486 B
C#
20 lines
486 B
C#
using Robust.Shared.Audio;
|
|
|
|
namespace Content.Shared.Abilities.Psionics;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PsionicInvisibilityUsedComponent : Component
|
|
{
|
|
[DataField]
|
|
public float StunTime = 4f;
|
|
|
|
[DataField]
|
|
public float DamageToStun = 5f;
|
|
|
|
[DataField]
|
|
public SoundSpecifier StartSound = new SoundPathSpecifier("/Audio/Psionics/wavy.ogg");
|
|
|
|
[DataField]
|
|
public SoundSpecifier EndSound = new SoundPathSpecifier("/Audio/Psionics/wavy.ogg");
|
|
}
|