* add EntityEffect aability support * delayed actions * renaming * delayed projectile spells * spawn on self + entityEffect on self spells * spawn on point spell * rename * clean up base species components * magic alert * move magic energy to Shared, add manacost to spells * magic recoil * improve magic recoil * verbal aspect * somatic aspect * add simple vfx proto and sprites * add casting VFX * add TODO
10 lines
291 B
C#
10 lines
291 B
C#
namespace Content.Shared._CP14.Magic.Components;
|
|
|
|
/// <summary>
|
|
/// Requires the user to have at least one free hand to use this spell
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
|
|
public sealed partial class CP14MagicEffectSomaticAspectComponent : Component
|
|
{
|
|
}
|