Files
wwdpublic/Content.Shared/_White/Jump/JumpComponent.cs
Spatison 62d4ba308f [Feature] Xenomorphs Part 1 (#716)
* init commit

* xenomorph: part 1

* weed heal

* fix Rsi

* fix Yaml linter

* fix
2025-07-27 18:11:03 +03:00

27 lines
590 B
C#

using Content.Shared.Actions;
using Robust.Shared.Audio;
using Robust.Shared.Prototypes;
namespace Content.Shared._White.Jump;
[RegisterComponent]
public sealed partial class JumpComponent : Component
{
[DataField]
public SoundSpecifier? JumpSound;
[DataField]
public float JumpSpeed = 7f;
[DataField]
public TimeSpan StunTime = TimeSpan.FromSeconds(4);
[DataField]
public EntProtoId JumpAction = "ActionJumpHeadcrab";
[ViewVariables]
public EntityUid? JumpActionEntity;
}
public sealed partial class JumpActionEvent : WorldTargetActionEvent;