2024-11-05 19:05:40 +03:00
|
|
|
namespace Content.Shared._CP14.MagicSpell.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-11-06 08:44:03 +03:00
|
|
|
/// apply slowdown effect from casting spells
|
2024-11-05 19:05:40 +03:00
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
|
|
|
|
|
public sealed partial class CP14MagicCasterSlowdownComponent : Component
|
|
|
|
|
{
|
|
|
|
|
[DataField]
|
2024-11-07 16:04:49 +03:00
|
|
|
public float SpeedModifier = 1f;
|
2024-11-05 19:05:40 +03:00
|
|
|
}
|