Files
tbd-station-14/Content.Shared/Damage/Components/DamageUserOnTriggerComponent.cs
SlamBamActionman d81e82cef7 Add Diona rooting (#32782)
* Initial commit

* Add sound

* Review commets

* addressing review

* I think this is what Slart meant?

* Review fixes

* More fixes

* tiny formatting

* Review fixes

* Review fixes

* Fix small timing error

* Follow new action system

* review

---------

Co-authored-by: ScarKy0 <106310278+ScarKy0@users.noreply.github.com>
Co-authored-by: ScarKy0 <scarky0@onet.eu>
2025-06-04 12:52:59 +02:00

11 lines
295 B
C#

namespace Content.Shared.Damage.Components;
[RegisterComponent]
public sealed partial class DamageUserOnTriggerComponent : Component
{
[DataField("ignoreResistances")] public bool IgnoreResistances;
[DataField("damage", required: true)]
public DamageSpecifier Damage = default!;
}