mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-23 08:37:48 +03:00
23 lines
432 B
C#
23 lines
432 B
C#
using Content.Shared.Whitelist;
|
|
|
|
namespace Content.Shared._White.Inventory.Components;
|
|
|
|
public abstract partial class BaseEquipOnComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public string Slot = "mask";
|
|
|
|
[DataField]
|
|
public string BlockingSlot = "head";
|
|
|
|
[DataField]
|
|
public float EquipProb = 1f;
|
|
|
|
[DataField]
|
|
public EntityWhitelist? Blacklist;
|
|
|
|
[DataField]
|
|
public bool Force = true;
|
|
|
|
}
|