Files
tbd-station-14/Content.Server/Zombies/ZombieComponent.cs
2022-06-12 15:53:13 +10:00

13 lines
350 B
C#

namespace Content.Server.Zombies
{
[RegisterComponent]
public sealed class ZombieComponent : Component
{
/// <summary>
/// The coefficient of the damage reduction applied when a zombie
/// attacks another zombie. longe name
/// </summary>
public float OtherZombieDamageCoefficient = 0.75f;
}
}