2024-01-28 18:37:24 +07:00
|
|
|
namespace Content.Shared._White.Cult.Runes;
|
2024-01-27 15:19:52 +03:00
|
|
|
|
|
|
|
|
public sealed class CultRuneInvokeEvent : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public EntityUid Rune { get; set; }
|
|
|
|
|
public EntityUid User { get; set; }
|
|
|
|
|
public HashSet<EntityUid> Cultists { get; }
|
|
|
|
|
public bool Result { get; set; }
|
|
|
|
|
|
2024-07-30 00:12:49 +00:00
|
|
|
public string? InvokePhraseOverride { get; set; } = null;
|
|
|
|
|
|
2024-01-27 15:19:52 +03:00
|
|
|
public CultRuneInvokeEvent(EntityUid rune, EntityUid user, HashSet<EntityUid> cultists)
|
|
|
|
|
{
|
|
|
|
|
Rune = rune;
|
|
|
|
|
User = user;
|
|
|
|
|
Cultists = cultists;
|
|
|
|
|
}
|
|
|
|
|
}
|