* Oh the possibilities * Merge fixes * Forgot to remote LavaSystem oops * Changed EntityEffectArgs to EntityEffectBaseArgs and EntityEffectReagentArgs * Throw exception for unimplemented effectargs * Remove Json and overrideable datafields * Fix test issues * Actually fix the compiling issue * Fix comments and remove EntityEffectArgs (no longer used, replaced with EntityEffectBaseArgs)
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using Content.Server.Stunnable;
|
|
using Content.Shared.EntityEffects;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.EntityEffects.Effects;
|
|
|
|
public sealed partial class Paralyze : EntityEffect
|
|
{
|
|
[DataField] public double ParalyzeTime = 2;
|
|
|
|
/// <remarks>
|
|
/// true - refresh paralyze time, false - accumulate paralyze time
|
|
/// </remarks>
|
|
[DataField] public bool Refresh = true;
|
|
|
|
protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys)
|
|
=> Loc.GetString("reagent-effect-guidebook-paralyze",
|
|
("chance", Probability),
|
|
("time", ParalyzeTime));
|
|
|
|
public override void Effect(EntityEffectBaseArgs args)
|
|
{
|
|
var paralyzeTime = ParalyzeTime;
|
|
|
|
if (args is EntityEffectReagentArgs reagentArgs)
|
|
{
|
|
paralyzeTime *= (double)reagentArgs.Scale;
|
|
}
|
|
|
|
args.EntityManager.System<StunSystem>().TryParalyze(args.TargetEntity, TimeSpan.FromSeconds(paralyzeTime), Refresh);
|
|
}
|
|
}
|
|
|