PKA Modkits + Rebalance (#31247)

This commit is contained in:
Nemanja
2025-04-25 14:18:23 -04:00
committed by GitHub
parent 9430a0f835
commit f900d9f8b2
24 changed files with 455 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
using Robust.Shared.GameStates;
namespace Content.Shared.Weapons.Ranged.Upgrades.Components;
/// <summary>
/// A <see cref="GunUpgradeComponent"/> for increasing the speed of a gun's projectile.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(GunUpgradeSystem))]
public sealed partial class GunUpgradeSpeedComponent : Component
{
/// <summary>
/// Multiplier for the speed of a gun's projectile.
/// </summary>
[DataField]
public float Coefficient = 1;
}