Files
crystall-punk-14/Content.Server/_CP14/Alchemy/CP14PestleComponent.cs
Ed 7b2328ba22 Alchemy tools: pestle and mortar (#144)
* add mortar & pestle mechanic

* setup prototypes

* Update mixing_types.yml

* add bubble sound collection, fix errors
2024-05-08 17:15:31 +03:00

14 lines
390 B
C#

using Robust.Shared.Audio;
namespace Content.Server._CP14.Alchemy;
[RegisterComponent, Access(typeof(CP14AlchemyExtractionSystem))]
public sealed partial class CP14PestleComponent : Component
{
[DataField]
public float Probability = 0.1f;
[DataField]
public SoundSpecifier HitSound = new SoundCollectionSpecifier("CP14Pestle", AudioParams.Default.WithVariation(0.2f));
}