Files
crystall-punk-14/Content.Shared/_CP14/MagicSpell/Components/CP14MagicCasterSlowdownComponent.cs
Ed a9bdab0705 Magic types, magic clothing (#539)
* magic types + auto magic spell description

* manacost calculation event

* manacost ffect clothing

* Update orbs.yml

* magic type not required
2024-11-06 08:44:03 +03:00

12 lines
329 B
C#

namespace Content.Shared._CP14.MagicSpell.Components;
/// <summary>
/// apply slowdown effect from casting spells
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
public sealed partial class CP14MagicCasterSlowdownComponent : Component
{
[DataField]
public List<float> SpeedModifiers = new();
}