Cursed Mask (#29659)

* Cursed Mask

* extra expressions

* block ingestion

* mind returning

* okay fix the removal shit
This commit is contained in:
Nemanja
2024-08-10 11:14:58 -04:00
committed by GitHub
parent 53058df8b9
commit fc1446e73a
20 changed files with 412 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using Robust.Shared.GameStates;
namespace Content.Shared.Inventory;
/// <summary>
/// This is used for an item that can only be equipped/unequipped by the user.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(SelfEquipOnlySystem))]
public sealed partial class SelfEquipOnlyComponent : Component
{
/// <summary>
/// Whether or not the self-equip only condition requires the person to be conscious.
/// </summary>
[DataField]
public bool UnequipRequireConscious = true;
}