* magic types + auto magic spell description * manacost calculation event * manacost ffect clothing * Update orbs.yml * magic type not required
12 lines
323 B
C#
12 lines
323 B
C#
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;
|
|
}
|