* Init Commit * Remove unused code, fix stun visuals bug * Update Content.Shared/Stunnable/SharedStunSystem.cs * Some initial changes * first batch of changes * Commit * One line cleanup * KnockdownStatusEffect ain't worth it. * Fix 2 bugs * Fixes * Remove that actually, * Commit * Better solution * Alright final commit I think * Add better remarks * How the fuck did this not get pushed??? * Wait no why was my ryder trying to push that??? I didn't make that change! DON'T DO THAT!!! * Review * Don't log that --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com> Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com>
67 lines
1.6 KiB
C#
67 lines
1.6 KiB
C#
using Content.Server.Stunnable.Systems;
|
|
|
|
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";
|
|
}
|
|
|