Files
tbd-station-14/Content.Server/Atmos/Components/IgniteOnMeleeHitComponent.cs
Leon Friedrich 10142c3a2e Rebalance fireaxe (#22731)
* Rebalance Fireaxe

* Nerf it a bit
2023-12-18 21:41:33 -05:00

12 lines
312 B
C#

namespace Content.Server.Atmos.Components;
/// <summary>
/// Component that can be used to add (or remove) fire stacks when used as a melee weapon.
/// </summary>
[RegisterComponent]
public sealed partial class IgniteOnMeleeHitComponent : Component
{
[DataField]
public float FireStacks { get; set; }
}