17 lines
455 B
C#
17 lines
455 B
C#
using Content.Shared.Revenant;
|
|
|
|
namespace Content.Client.Revenant;
|
|
|
|
[RegisterComponent]
|
|
public sealed class RevenantComponent : SharedRevenantComponent
|
|
{
|
|
[DataField("state")]
|
|
public string State = "idle";
|
|
[DataField("corporealState")]
|
|
public string CorporealState = "active";
|
|
[DataField("stunnedState")]
|
|
public string StunnedState = "stunned";
|
|
[DataField("harvestingState")]
|
|
public string HarvestingState = "harvesting";
|
|
}
|