Entity whitelist/blacklist for traits (#12348)

This commit is contained in:
Rane
2022-11-03 21:37:17 -04:00
committed by GitHub
parent 74b63e83fd
commit 084b482cfe
4 changed files with 26 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
using Content.Shared.Whitelist;
using Robust.Shared.Prototypes;
using static Robust.Shared.Prototypes.EntityPrototype; // don't worry about it
@@ -25,6 +26,18 @@ namespace Content.Shared.Traits
[DataField("description")]
public string? Description { get; }
/// <summary>
/// Don't apply this trait to entities this whitelist IS NOT valid for.
/// </summary>
[DataField("whitelist")]
public EntityWhitelist? Whitelist;
/// <summary>
/// Don't apply this trait to entities this whitelist IS valid for. (hence, a blacklist)
/// </summary>
[DataField("blacklist")]
public EntityWhitelist? Blacklist;
/// <summary>
/// The components that get added to the player, when they pick this trait.
/// </summary>