fish-station/Content.Shared/_Sunrise/Boss/Components/HellSpawnTentacleComponent.cs
pacable 8f2445ea94
Адское Отродье - Босс для утилей (#1525)
Signed-off-by: pacable <igor.mamaev1@gmail.com>
2025-03-10 02:33:48 +03:00

20 lines
636 B
C#

using Robust.Shared.Prototypes;
namespace Content.Shared._Sunrise.Boss.Components;
/// <summary>
/// Компонент, дающий сущности абилку выпускать тентакли из-под земли
/// </summary>
[RegisterComponent]
public sealed partial class HellSpawnTentacleComponent : Component
{
[DataField]
public EntProtoId? LeftGrabAction = "ActionHellSpawnTentacleLeft";
[DataField]
public EntProtoId? RightGrabAction = "ActionHellSpawnTentacleRight";
[DataField]
public EntityUid? LeftGrabActionEntity;
[DataField]
public EntityUid? RightGrabActionEntity;
}