| 12345678910111213141516171819202122 |
- // SPDX-FileCopyrightText: 2024 username <113782077+whateverusername0@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2024 whateverusername0 <whateveremail>
- // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2025 Misandry <mary@thughunt.ing>
- // SPDX-FileCopyrightText: 2025 gus <august.eymann@gmail.com>
- //
- // 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
- {
- /// <summary>
- /// If stamina damage reaches (damage * multiplier), then the entity will enter stamina crit.
- /// </summary>
- [DataField] public float Multiplier = 2f;
- }
|