Files
wwdpublic/Content.Shared/_White/Jump/JumpComponent.cs
Remuchi 96c9d739f2 [Remove] Убрать хедкрабов (#955)
* remove: remove headcrabs

* fix: oops

* fix: оказалось что это еще нужно
2025-12-27 13:35:56 +02:00

27 lines
591 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 = "ActionJumpXenomorph";
[ViewVariables]
public EntityUid? JumpActionEntity;
}
public sealed partial class JumpActionEvent : WorldTargetActionEvent;