* flame creation spell backend * flame creation visuals * flame creation spell visual * tweak * some tweaks * ice dagger spell * move spells to rings * Update ring.yml * fix server crash
12 lines
349 B
C#
12 lines
349 B
C#
namespace Content.Shared._CP14.MagicSpell.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
|
|
{
|
|
[DataField]
|
|
public int FreeHandRequired = 1;
|
|
}
|