Files
crystall-punk-14/Content.Shared/Prying/Components/PryUnpoweredComponent.cs

14 lines
342 B
C#
Raw Permalink Normal View History

using Robust.Shared.GameStates;
namespace Content.Shared.Prying.Components;
///<summary>
/// Applied to entities that can be pried open without tools while unpowered
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class PryUnpoweredComponent : Component
{
[DataField]
public float PryModifier = 0.1f;
}