Files
OldThink/Content.Shared/Revenant/Components/CorporealComponent.cs
2025-03-21 02:20:37 +05:00

19 lines
517 B
C#

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