mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-15 03:31:44 +01:00
30 lines
749 B
C#
30 lines
749 B
C#
using Content.Shared.Polymorph;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Genetics;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class HulkComponent : Component
|
|
{
|
|
public readonly EntProtoId[] ActionPrototypes = new EntProtoId[]
|
|
{
|
|
"ActionHulkCharge"
|
|
};
|
|
|
|
public List<EntityUid?> ActionsEntity { get; set; } = new();
|
|
}
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class HulkGenComponent : Component
|
|
{
|
|
public readonly EntProtoId ActionPrototype = "ActionHulkTransformation";
|
|
|
|
public EntityUid? ActionEntity { get; set; }
|
|
|
|
[DataField]
|
|
public ProtoId<PolymorphPrototype> PolymorphProto = "HulkPolymorph";
|
|
|
|
[DataField]
|
|
public ProtoId<PolymorphPrototype> PolymorphAltProto = "HulkPolymorphAlt";
|
|
}
|