mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
* add: crossbar * add: crossbar * add: crossbow * clean up * AI rewie * fix * fix * fix :( * Update tags.yml * fix
15 lines
350 B
C#
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;
|
|
}
|