2024-05-09 17:45:23 -04:00
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Zombies;
|
2023-07-25 17:31:35 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-05-09 17:45:23 -04:00
|
|
|
|
/// This is used for a zombie that cannot be cured by any methods. Gives a succumb to zombie infection action.
|
2023-07-25 17:31:35 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class IncurableZombieComponent : Component
|
2023-07-25 17:31:35 -04:00
|
|
|
|
{
|
2024-05-09 17:45:23 -04:00
|
|
|
|
[DataField]
|
|
|
|
|
|
public EntProtoId ZombifySelfActionPrototype = "ActionTurnUndead";
|
2023-07-25 17:31:35 -04:00
|
|
|
|
|
2024-05-09 17:45:23 -04:00
|
|
|
|
[DataField]
|
|
|
|
|
|
public EntityUid? Action;
|
2023-07-25 17:31:35 -04:00
|
|
|
|
}
|