using Robust.Shared.Prototypes;
namespace Content.Shared.Wires;
[Prototype("WiresPanelSecurityLevel")]
public sealed class WiresPanelSecurityLevelPrototype : IPrototype
{
[IdDataField]
public string ID { get; private set; } = default!;
///
/// A verbal description of the wire panel's current security level
///
[DataField("examine")]
public string? Examine = default!;
///
/// Determines whether the wiring is accessible to hackers or not
///
[DataField("wiresAccessible")]
public bool WiresAccessible = true;
///
/// Determines whether the device can be welded shut or not
///
///
/// Should be set false when you need to weld/unweld something to/from the wire panel
///
[DataField("weldingAllowed")]
public bool WeldingAllowed = true;
}