mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
23 lines
508 B
C#
23 lines
508 B
C#
using Content.Shared.Actions;
|
|
using Content.Shared.Chat;
|
|
|
|
|
|
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; }
|
|
|
|
public InGameICChatType ChatType { get; } = InGameICChatType.Speak;
|
|
}
|