2022-08-13 09:49:41 -04:00
|
|
|
using Content.Shared.Actions;
|
2023-04-03 13:13:48 +12:00
|
|
|
using Content.Shared.DoAfter;
|
2022-08-13 09:49:41 -04:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Revenant;
|
|
|
|
|
|
2023-04-03 13:13:48 +12:00
|
|
|
[Serializable, NetSerializable]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class SoulEvent : SimpleDoAfterEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-28 22:30:48 -04:00
|
|
|
public sealed class SoulSearchDoAfterComplete : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public readonly EntityUid Target;
|
|
|
|
|
|
|
|
|
|
public SoulSearchDoAfterComplete(EntityUid target)
|
|
|
|
|
{
|
|
|
|
|
Target = target;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 13:13:48 +12:00
|
|
|
public sealed class SoulSearchDoAfterCancelled : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class HarvestEvent : SimpleDoAfterEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
2022-09-28 22:30:48 -04:00
|
|
|
|
|
|
|
|
public sealed class HarvestDoAfterComplete : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
public readonly EntityUid Target;
|
|
|
|
|
|
|
|
|
|
public HarvestDoAfterComplete(EntityUid target)
|
|
|
|
|
{
|
|
|
|
|
Target = target;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-03 13:13:48 +12:00
|
|
|
public sealed class HarvestDoAfterCancelled : EntityEventArgs
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class RevenantShopActionEvent : InstantActionEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class RevenantDefileActionEvent : InstantActionEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class RevenantOverloadLightsActionEvent : InstantActionEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class RevenantBlightActionEvent : InstantActionEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class RevenantMalfunctionActionEvent : InstantActionEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-13 09:49:41 -04:00
|
|
|
|
|
|
|
|
[NetSerializable, Serializable]
|
|
|
|
|
public enum RevenantVisuals : byte
|
|
|
|
|
{
|
|
|
|
|
Corporeal,
|
|
|
|
|
Stunned,
|
|
|
|
|
Harvesting,
|
|
|
|
|
}
|
2024-03-28 02:32:56 -04:00
|
|
|
|
|
|
|
|
[NetSerializable, Serializable]
|
|
|
|
|
public enum RevenantVisualLayers : byte
|
|
|
|
|
{
|
|
|
|
|
Digit1,
|
|
|
|
|
Digit2,
|
|
|
|
|
Digit3
|
|
|
|
|
}
|