Files
crystall-punk-14/Content.Shared/_CP14/MagicSpell/Components/CP14MagicEffectCastSlowdownComponent.cs

12 lines
323 B
C#
Raw Permalink Normal View History

namespace Content.Shared._CP14.MagicSpell.Components;
/// <summary>
/// Slows the caster while using this spell
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
public sealed partial class CP14MagicEffectCastSlowdownComponent : Component
{
[DataField]
public float SpeedMultiplier = 1f;
}