Files
OldThink/Content.Shared/Revenant/Components/CorporealComponent.cs
Aviu00 b5cede485d - tweak: Nerf blight. (#263)
* - tweak: Nerf blight.

* - tweak: ... But bible no longer works.
2024-04-02 17:18:05 +03:00

16 lines
471 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
}