1
0

IncurableZombieComponent.cs 434 B

12345678910111213141516
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Server.Zombies;
  3. /// <summary>
  4. /// This is used for a zombie that cannot be cured by any methods. Gives a succumb to zombie infection action.
  5. /// </summary>
  6. [RegisterComponent]
  7. public sealed partial class IncurableZombieComponent : Component
  8. {
  9. [DataField]
  10. public EntProtoId ZombifySelfActionPrototype = "ActionTurnUndead";
  11. [DataField]
  12. public EntityUid? Action;
  13. }