Files
wwdpublic/Content.Server/_White/Guns/PoweredComponent.cs
Spatison 266ae606de [Port] Crossbow / Арбалет (#76)
* add: crossbar

* add: crossbar

* add: crossbow

* clean up

* AI rewie

* fix

* fix

* fix :(

* Update tags.yml

* fix
2024-10-26 16:41:08 +07:00

15 lines
350 B
C#

namespace Content.Server._White.Guns;
[RegisterComponent]
public sealed partial class PoweredComponent : Component
{
[DataField]
public float EnergyPerUse = 180f;
/// <summary>
/// Modifies the speed of projectiles fired from this powered weapon.
/// </summary>
[DataField]
public float ProjectileSpeedModified = 15f;
}