Small strange jackboots buff (#30586)
* Small strange jackboots buff * Update ClothingSlowOnDamageModifierComponent.cs
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Robust.Shared.GameStates;
|
||||
|
||||
namespace Content.Shared.Damage.Components;
|
||||
|
||||
/// <summary>
|
||||
/// This is used for a clothing item that modifies the slowdown from taking damage.
|
||||
/// Used for entities with <see cref="SlowOnDamageComponent"/>
|
||||
/// </summary>
|
||||
[RegisterComponent, NetworkedComponent, Access(typeof(SlowOnDamageSystem))]
|
||||
public sealed partial class ClothingSlowOnDamageModifierComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// A coefficient modifier for the slowdown
|
||||
/// </summary>
|
||||
[DataField]
|
||||
public float Modifier = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user