Files
tbd-station-14/Content.Server/GameTicking/Rules/Components/ZombieRuleComponent.cs
2023-05-07 17:50:37 +10:00

12 lines
368 B
C#

namespace Content.Server.GameTicking.Rules.Components;
[RegisterComponent, Access(typeof(ZombieRuleSystem))]
public sealed class ZombieRuleComponent : Component
{
public Dictionary<string, string> InitialInfectedNames = new();
public string PatientZeroPrototypeID = "InitialInfected";
public const string ZombifySelfActionPrototype = "TurnUndead";
}