Give monkeys clumsy (#16320)

This commit is contained in:
Kara
2023-05-10 17:27:47 -07:00
committed by GitHub
parent 20d96b58f7
commit ab6707aef6
3 changed files with 17 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
using Content.Shared.Damage;
using Robust.Shared.Audio;
namespace Content.Shared.Interaction.Components
{
@@ -11,5 +12,11 @@ namespace Content.Shared.Interaction.Components
[DataField("clumsyDamage", required: true)]
[ViewVariables(VVAccess.ReadWrite)]
public DamageSpecifier ClumsyDamage = default!;
/// <summary>
/// Sound to play when clumsy interactions fail
/// </summary>
[DataField("clumsySound")]
public SoundSpecifier ClumsySound = new SoundPathSpecifier("/Audio/Items/bikehorn.ogg");
}
}