2023-05-11 00:53:11 +03:00
|
|
|
namespace Content.Server.Abilities.Felinid
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2024-01-13 09:14:00 +03:00
|
|
|
public sealed partial class CoughingUpHairballComponent : Component
|
2023-05-11 00:53:11 +03:00
|
|
|
{
|
|
|
|
|
[DataField("accumulator")]
|
|
|
|
|
public float Accumulator = 0f;
|
|
|
|
|
|
|
|
|
|
[DataField("coughUpTime")]
|
|
|
|
|
public TimeSpan CoughUpTime = TimeSpan.FromSeconds(2.15); // length of hairball.ogg
|
|
|
|
|
}
|
|
|
|
|
}
|