* - add: Revive fast and furious aspect. * - add: Update accents. * - add: More buzzing for moth. * - tweak: Change desc. * - fix: Fixes. * - add: RandomItemAspect. * - fix: Fix arachnid socks. * - tweak: Update desc part 2.
12 lines
305 B
C#
12 lines
305 B
C#
namespace Content.Server._White.Other.FastAndFuriousSystem;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class FastAndFuriousComponent : Component
|
|
{
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float SprintModifier = 1.6f;
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public float WalkModifier = 1;
|
|
}
|