Files
tbd-station-14/Content.Server/Atmos/Components/IgniteOnCollideComponent.cs
Arendian 6bf6994298 Incendiary projectiles and lava firestack reduction (#23479)
* Firestack reduction and FireStackOnHit added

* Slight lava tweak

* Remove component and tweaked incendiary pellets

* Incendiary grenade tweak

* Now ignites on projectile fixture or ignition fixture + incendiary grenade tweak

* flare shells now  ignite entities again

* Comment

* undo flare gun ignite
2024-01-08 00:41:42 -05:00

21 lines
592 B
C#

using Content.Server.Atmos.EntitySystems;
namespace Content.Server.Atmos.Components;
[RegisterComponent, Access(typeof(FlammableSystem))]
public sealed partial class IgniteOnCollideComponent : Component
{
/// <summary>
/// How many more times the ignition can be applied.
/// </summary>
[ViewVariables(VVAccess.ReadWrite), DataField("count")]
public int Count = 1;
[ViewVariables(VVAccess.ReadWrite), DataField("fireStacks")]
public float FireStacks;
[ViewVariables(VVAccess.ReadWrite), DataField("fixtureId")]
public string FixtureId = "ignition";
}