using Content.Shared.Actions;
using Content.Shared.Polymorph;
using Robust.Shared.Prototypes;
namespace Content.Server.Geras;
///
/// This component assigns the entity with a polymorph action.
///
[RegisterComponent]
public sealed partial class GerasComponent : Component
{
[DataField] public ProtoId GerasPolymorphId = "SlimeMorphGeras";
[DataField] public ProtoId GerasAction = "ActionMorphGeras";
[DataField] public EntityUid? GerasActionEntity;
}