2024-08-01 11:52:27 +03:00
|
|
|
namespace Content.Shared._CP14.MagicSpell.Components;
|
2024-07-28 17:26:47 +03:00
|
|
|
|
|
|
|
|
/// <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
|
|
|
|
|
{
|
2024-08-02 00:48:36 +03:00
|
|
|
[DataField]
|
|
|
|
|
public int FreeHandRequired = 1;
|
2024-07-28 17:26:47 +03:00
|
|
|
}
|