Separated Bonk functionality and component from ClimbSystem and ClimbComponent (#13635)

This commit is contained in:
Ilya Chvilyov
2023-02-01 00:33:00 +03:00
committed by GitHub
parent f81a25e585
commit eae58211e1
12 changed files with 141 additions and 90 deletions

View File

@@ -0,0 +1,15 @@
using Content.Shared.Damage;
namespace Content.Shared.Interaction.Components
{
/// <summary>
/// A simple clumsy tag-component.
/// </summary>
[RegisterComponent]
public sealed class ClumsyComponent : Component
{
[DataField("clumsyDamage", required: true)]
[ViewVariables(VVAccess.ReadWrite)]
public DamageSpecifier ClumsyDamage = default!;
}
}