* - add: NextMobAttack, EquipCooldown. * - fix: Some combat fixes. * - add: Telebaton. * - add: Stun baton rework. * - tweak: Reduce melee range. * - add: Rework melee block system. * - add: ExaminedEvent.
12 lines
282 B
C#
12 lines
282 B
C#
namespace Content.Server._White.Stunprod;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class StunprodComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public float EnergyPerUse { get; set; } = 144;
|
|
|
|
[DataField]
|
|
public bool HasHeldPrefix = true;
|
|
}
|