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