Files
crystall-punk-14/Content.Shared/_CP14/MagicSpell/Components/CP14MagicEffectEmotingComponent.cs
Ed 517bc5418b Wendigo demiplane antag (#1174)
* wendigo

* ritual3

* Update sky_lightning.yml
2025-04-12 17:32:53 +03:00

15 lines
521 B
C#

namespace Content.Shared._CP14.MagicSpell.Components;
/// <summary>
/// Requires the user to be able to speak in order to use this spell. Also forces the user to use certain phrases at the beginning and end of a spell cast
/// </summary>
[RegisterComponent, Access(typeof(CP14SharedMagicSystem))]
public sealed partial class CP14MagicEffectEmotingComponent : Component
{
[DataField]
public string StartEmote = string.Empty; //Not LocId!
[DataField]
public string EndEmote = string.Empty; //Not LocId!
}