using Content.Shared.Damage; namespace Content.Server._CP14.MagicSpellStorage.Components; /// /// Causes damage to the Spell storage when spells from it are used /// [RegisterComponent, Access(typeof(CP14SpellStorageSystem))] public sealed partial class CP14SpellStorageUseDamageComponent : Component { /// /// the amount of damage this entity will take per unit manacost of the spell used /// [DataField(required: true)] public DamageSpecifier DamagePerMana = default!; }