73 lines
1.7 KiB
C#
73 lines
1.7 KiB
C#
using Content.Server.Stunnable.Systems;
|
|
using Content.Shared.Whitelist;
|
|
|
|
namespace Content.Server.Stunnable.Components;
|
|
|
|
/// <summary>
|
|
/// Adds stun when it collides with an entity
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(StunOnCollideSystem))]
|
|
public sealed partial class StunOnCollideComponent : Component
|
|
{
|
|
// TODO: Can probably predict this.
|
|
|
|
/// <summary>
|
|
/// How long we are stunned for
|
|
/// </summary>
|
|
[DataField]
|
|
public TimeSpan StunAmount;
|
|
|
|
/// <summary>
|
|
/// How long we are knocked down for
|
|
/// </summary>
|
|
[DataField]
|
|
public TimeSpan KnockdownAmount;
|
|
|
|
/// <summary>
|
|
/// How long we are slowed down for
|
|
/// </summary>
|
|
[DataField]
|
|
public TimeSpan SlowdownAmount;
|
|
|
|
/// <summary>
|
|
/// Multiplier for a mob's walking speed
|
|
/// </summary>
|
|
[DataField]
|
|
public float WalkSpeedModifier = 1f;
|
|
|
|
/// <summary>
|
|
/// Multiplier for a mob's sprinting speed
|
|
/// </summary>
|
|
[DataField]
|
|
public float SprintSpeedModifier = 1f;
|
|
|
|
/// <summary>
|
|
/// Refresh Stun or Slowdown on hit
|
|
/// </summary>
|
|
[DataField]
|
|
public bool Refresh = true;
|
|
|
|
/// <summary>
|
|
/// Should the entity try and stand automatically after being knocked down?
|
|
/// </summary>
|
|
[DataField]
|
|
public bool AutoStand = true;
|
|
|
|
/// <summary>
|
|
/// Should the entity drop their items upon first being knocked down?
|
|
/// </summary>
|
|
[DataField]
|
|
public bool Drop = true;
|
|
|
|
/// <summary>
|
|
/// Fixture we track for the collision.
|
|
/// </summary>
|
|
[DataField("fixture")] public string FixtureID = "projectile";
|
|
|
|
// Begin DeltaV Additions
|
|
[DataField]
|
|
public EntityWhitelist? Blacklist;
|
|
// End DeltaV Additions
|
|
}
|
|
|