using Robust.Shared.Collections; using Content.Server.Damage.Components; namespace Content.Server.Damage.Events; /// /// The components in the list are going to be hit, /// give opportunities to change the damage or other stuff. /// public sealed class StaminaMeleeHitEvent : HandledEntityEventArgs { /// /// List of hit stamina components. public ValueList HitList; /// /// The multiplier. Generally, try to use *= or /= instead of overwriting. /// public float Multiplier = 1; /// /// The flat modifier. Generally, try to use += or -= instead of overwriting. /// public float FlatModifier = 0; public StaminaMeleeHitEvent(ValueList hitList) { HitList = hitList; } }