19 lines
407 B
C#
19 lines
407 B
C#
|
|
using Content.Shared.Actions;
|
|||
|
|
|
|||
|
|
namespace Content.Shared.Magic.Events;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Adds provided Charge to the held wand
|
|||
|
|
/// </summary>
|
|||
|
|
public sealed partial class ChargeSpellEvent : InstantActionEvent, ISpeakSpell
|
|||
|
|
{
|
|||
|
|
[DataField(required: true)]
|
|||
|
|
public int Charge;
|
|||
|
|
|
|||
|
|
[DataField]
|
|||
|
|
public string WandTag = "WizardWand";
|
|||
|
|
|
|||
|
|
[DataField]
|
|||
|
|
public string? Speech { get; private set; }
|
|||
|
|
}
|