2022-06-23 21:27:28 -04:00
|
|
|
namespace Content.Server.Atmos.Components;
|
|
|
|
|
|
2023-12-18 21:41:33 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Component that can be used to add (or remove) fire stacks when used as a melee weapon.
|
|
|
|
|
/// </summary>
|
2022-06-23 21:27:28 -04:00
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class IgniteOnMeleeHitComponent : Component
|
2022-06-23 21:27:28 -04:00
|
|
|
{
|
2023-12-18 21:41:33 -05:00
|
|
|
[DataField]
|
2022-06-23 21:27:28 -04:00
|
|
|
public float FireStacks { get; set; }
|
|
|
|
|
}
|