Files
crystall-punk-14/Content.Shared/_CP14/Vampire/CP14VampireVisualsComponent.cs
Ed 0b5712ce97 Vampire antag (#988)
* new blood types

* vampire systems setup

* death under sun

* vampire blood nutrition

* alerts

* autolearn skills

* base bite actions

* suck blood spell

* polish

* Update blood.yml

* unshitcode

* vampire hunger visual

* nerf speed

* hypnosis + map update

* darkness demiplane warning
2025-03-07 14:52:43 +03:00

17 lines
372 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._CP14.Vampire;
[RegisterComponent, NetworkedComponent]
public sealed partial class CP14VampireVisualsComponent : Component
{
[DataField]
public Color EyesColor = Color.Red;
[DataField]
public Color OriginalEyesColor = Color.White;
[DataField]
public string FangsMap = "vampire_fangs";
}