// SPDX-FileCopyrightText: 2024 username <113782077+whateverusername0@users.noreply.github.com> // SPDX-FileCopyrightText: 2024 whateverusername0 // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Misandry // SPDX-FileCopyrightText: 2025 gus // // SPDX-License-Identifier: AGPL-3.0-or-later using Robust.Shared.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.Serialization.Manager.Attributes; namespace Content.Goobstation.Common.Stunnable; [RegisterComponent, NetworkedComponent] public sealed partial class StamcritResistComponent : Component { /// /// If stamina damage reaches (damage * multiplier), then the entity will enter stamina crit. /// [DataField] public float Multiplier = 2f; }