Files
tbd-station-14/Content.Server/Revenant/CorporealComponent.cs
2022-08-13 23:49:41 +10:00

16 lines
442 B
C#

namespace Content.Server.Revenant;
/// <summary>
/// Makes the target solid, visible, and applies a slowdown.
/// Meant to be used in conjunction with statusEffectSystem
/// </summary>
[RegisterComponent]
public sealed class CorporealComponent : Component
{
/// <summary>
/// The debuff applied when the component is present.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public float MovementSpeedDebuff = 0.66f;
}