Files
wwdpublic/Content.Shared/Actions/Events/FireStarterActionEvent.cs
brainfood1183 7934940e3b Adds Hellspawn (Nar'Sie demon mob) (#20291)
* HellSpawn Mob

* added spawner

* summary for the namespace

* larger collider, cannot enter single tile corridors.

* fix

* remove duplicate from yml, fix attributions.

* moved action to shared, moved comp to shared, networked comp, separated heal, fixed attributions

* removed flammable from hellspawn
removed the healing effect from firestarter ability (healing can be separate ability).

* Update attributions.yml

fix attributions

* fix

* fix

(cherry picked from commit b06d9cb64a53e387240fa804853d3ee2a4d3f11b)
2024-01-26 21:37:35 +01:00

11 lines
309 B
C#

namespace Content.Shared.Actions.Events;
public sealed partial class FireStarterActionEvent : InstantActionEvent
{
/// <summary>
/// Increases the number of fire stacks when a flammable object is ignited.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
public float Severity = 0.3f;
}