* https://en.wikipedia.org/wiki/List_of_LASD_deputy_gangs * https://knock-la.com/tradition-of-violence-lasd-gang-history/ * https://coc.lacounty.gov/deputy-gangs/
22 lines
649 B
C#
22 lines
649 B
C#
using Content.Shared.Wieldable;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Weapons.Ranged.Components;
|
|
|
|
/// <summary>
|
|
/// Indicates that this gun requires wielding to be useable.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|
[Access(typeof(WieldableSystem))]
|
|
public sealed partial class GunRequiresWieldComponent : Component
|
|
{
|
|
[DataField, AutoNetworkedField]
|
|
public TimeSpan LastPopup;
|
|
|
|
[DataField, AutoNetworkedField]
|
|
public TimeSpan PopupCooldown = TimeSpan.FromSeconds(1);
|
|
|
|
[DataField]
|
|
public LocId? WieldRequiresExamineMessage = "gunrequireswield-component-examine";
|
|
}
|