Files
OldThink/Content.Shared/_White/Cult/SpellVerbEvents.cs
Aviu00 71ca698a7c Spells stuff (#153)
* -add: Create and remove blood spells using verbs.

* - add: Blood spells now have charges and disappear.

* - add: Localize spells.

* - add: New blood spells.
2024-03-01 15:44:27 +07:00

28 lines
578 B
C#

using Content.Shared.DoAfter;
using Robust.Shared.Serialization;
namespace Content.Shared._White.Cult;
[Serializable, NetSerializable]
public sealed partial class SpellCreatedEvent : SimpleDoAfterEvent
{
public string Spell = "";
}
[Serializable, NetSerializable]
public sealed class CultEmpowerRemoveBuiMessage : BoundUserInterfaceMessage
{
public NetEntity ActionType;
public CultEmpowerRemoveBuiMessage(NetEntity actionType)
{
ActionType = actionType;
}
}
[Serializable, NetSerializable]
public enum CultEmpowerRemoveUiKey : byte
{
Key
}