Straitjacket Functionality. (#18052)

This commit is contained in:
brainfood1183
2023-07-22 23:14:25 +01:00
committed by GitHub
parent 32def47862
commit ebab4cae8c
10 changed files with 67 additions and 59 deletions

View File

@@ -39,18 +39,6 @@ public sealed class CuffableComponent : Component
/// </summary>
[DataField("canStillInteract"), ViewVariables(VVAccess.ReadWrite)]
public bool CanStillInteract = true;
/// <summary>
/// Damage is applied to someone when they try to uncuff themselves.
/// </summary>
[DataField("damageOnResist"), ViewVariables(VVAccess.ReadWrite)]
public DamageSpecifier DamageOnResist = new()
{
DamageDict = new()
{
{ "Blunt", 3.0 },
}
};
}
[Serializable, NetSerializable]