2024-08-01 11:52:27 +03:00
|
|
|
namespace Content.Shared._CP14.MagicSpell.Events;
|
2024-07-28 17:26:47 +03:00
|
|
|
|
|
|
|
|
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; }
|
2024-08-05 15:22:14 +03:00
|
|
|
|
|
|
|
|
public bool Hidden{ get; }
|
2024-09-29 16:44:17 +03:00
|
|
|
|
|
|
|
|
public float EntityDistance { get; }
|
2024-07-28 17:26:47 +03:00
|
|
|
}
|