main cult
This commit is contained in:
10
Content.Shared/_White/Cult/Runes/CultDrawEvent.cs
Normal file
10
Content.Shared/_White/Cult/Runes/CultDrawEvent.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Content.Shared.DoAfter;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.White.Cult.Runes;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed partial class CultDrawEvent : SimpleDoAfterEvent
|
||||
{
|
||||
public string? Rune;
|
||||
}
|
||||
10
Content.Shared/_White/Cult/Runes/CultEraseEvent.cs
Normal file
10
Content.Shared/_White/Cult/Runes/CultEraseEvent.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Content.Shared.DoAfter;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.White.Cult.Runes;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed partial class CultEraseEvent : SimpleDoAfterEvent
|
||||
{
|
||||
public EntityUid TargetEntityId;
|
||||
}
|
||||
16
Content.Shared/_White/Cult/Runes/CultRuneInvokeEvent.cs
Normal file
16
Content.Shared/_White/Cult/Runes/CultRuneInvokeEvent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Content.Shared.White.Cult.Runes;
|
||||
|
||||
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; }
|
||||
|
||||
public CultRuneInvokeEvent(EntityUid rune, EntityUid user, HashSet<EntityUid> cultists)
|
||||
{
|
||||
Rune = rune;
|
||||
User = user;
|
||||
Cultists = cultists;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
using Content.Shared.DoAfter;
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared.White.Cult.Runes;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed partial class SummonNarsieDoAfterEvent : SimpleDoAfterEvent
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user