* modifiers * counter spell, and 2 new spell scrolls * Update magical_acceleration.yml * Update T0_counter_spell.yml
12 lines
281 B
C#
12 lines
281 B
C#
namespace Content.Shared._CP14.MagicSpell.Components;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
|
|
public sealed partial class CP14MagicCasterComponent : Component
|
|
{
|
|
[DataField]
|
|
public List<EntityUid> CastedSpells = new();
|
|
}
|