Add EntityEffectOnTrigger and RejuvenateOnTrigger (#40967)

commit
This commit is contained in:
slarticodefast
2025-10-19 16:42:18 +02:00
committed by GitHub
parent 69e2963945
commit 1b7fa85733
10 changed files with 110 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
using Content.Shared.Rejuvenate;
namespace Content.Shared.Administration.Systems;
public sealed class RejuvenateSystem : EntitySystem
{
/// <summary>
/// Fully heals the target, removing all damage, debuffs or other negative status effects.
/// </summary>
public void PerformRejuvenate(EntityUid target)
{
RaiseLocalEvent(target, new RejuvenateEvent());
}
}