* 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
11 lines
250 B
C#
11 lines
250 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._CP14.MagicSpell;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CP14AutoLearnActionComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public HashSet<EntProtoId> Actions = new();
|
|
}
|