using Content.Shared._CP14.Skill.Prototypes; using Content.Shared.FixedPoint; using Robust.Shared.Prototypes; namespace Content.Shared._CP14.MagicSpell.Components; /// /// Restricts the use of this action, by spending user skillpoints /// [RegisterComponent, Access(typeof(CP14SharedMagicSystem))] public sealed partial class CP14MagicEffectSkillPointCostComponent : Component { [DataField(required: true)] public ProtoId? SkillPoint; [DataField] public FixedPoint2 Count = 1f; }