Files
crystall-punk-14/Content.Shared/_CP14/MagicSpell/Components/CP14MagicEffectMaterialAspectComponent.cs
2025-08-09 00:27:23 +03:00

14 lines
457 B
C#

using Content.Shared._CP14.Workbench;
namespace Content.Shared._CP14.MagicSpell.Components;
/// <summary>
/// Requires the caster to hold a specific resource in their hand, which will be spent to use the spell.
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
public sealed partial class CP14MagicEffectMaterialAspectComponent : Component
{
[DataField(required: true)]
public CP14WorkbenchCraftRequirement? Requirement;
}