Crawling Part 1: The Knockdownening (#36881)

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
Co-authored-by: ScarKy0 <scarky0@onet.eu>
This commit is contained in:
Princess Cheeseballs
2025-07-19 16:54:42 -07:00
committed by GitHub
parent cfb0a95035
commit dec2d42a1d
60 changed files with 1595 additions and 220 deletions

View File

@@ -33,6 +33,24 @@ public sealed partial class HandcuffComponent : Component
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float StunBonus = 2f;
/// <summary>
/// Modifier for the amount of time it takes an entity to stand up if cuffed.
/// </summary>
[DataField]
public float StandupMod = 5f;
/// <summary>
/// Modifier to the speed of an entity who is cuffed, does not stack with KnockedMovementMod
/// </summary>
[DataField]
public float MovementMod = 1f;
/// <summary>
/// Modifier to the knocked down speed of an entity who is cuffed
/// </summary>
[DataField]
public float KnockedMovementMod = 0.4f;
/// <summary>
/// Will the cuffs break when removed?
/// </summary>