Separated Bonk functionality and component from ClimbSystem and ClimbComponent (#13635)
This commit is contained in:
15
Content.Shared/Interaction/Components/ClumsyComponent.cs
Normal file
15
Content.Shared/Interaction/Components/ClumsyComponent.cs
Normal 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!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user