namespace Content.Shared._CP14.MagicSpell.Components; /// /// If the user belongs to a religion, this spell can only be used within the area of influence of that religion /// [RegisterComponent, Access(typeof(CP14SharedMagicSystem))] public sealed partial class CP14MagicEffectReligionRestrictedComponent : Component { /// /// does not allow the spell to be used outside the god's area of influence /// [DataField] public bool OnlyInReligionZone = true; /// /// allows the spell to be used only on followers /// [DataField] public bool OnlyOnFollowers = false; }