Files
crystall-punk-14/Content.Shared/_CP14/MagicSpell/Events/CP14IDelayedMagicEffect.cs
Ed 3f94c73bdb Magic update (#473)
* magic system update

* fix
2024-09-29 16:44:17 +03:00

18 lines
419 B
C#

namespace Content.Shared._CP14.MagicSpell.Events;
public interface ICP14DelayedMagicEffect // The speak n spell interface
{
/// <summary>
/// Localized string spoken by the caster when casting this spell.
/// </summary>
public float Delay { get; }
public bool BreakOnMove { get; }
public bool BreakOnDamage { get; }
public bool Hidden{ get; }
public float EntityDistance { get; }
}