Files
tbd-station-14/Content.Server/Forensics/Components/ResidueComponent.cs
themias 9cc4a50692 Add more DNA interactions (#21989)
* Add more DNA interactions

* remove unused import

* update based on feedback

* Add event for chemistrysystem.injector

* move event to shared; transfer dna to implanter

* doafter and interaction event fixes

* add BreakOnHandChange

* doh

* use events instead of updating component directly

* Add DataFields to ForensicScannerComponent fields

* Convert most events to system api call
2023-12-15 02:52:55 -07:00

16 lines
346 B
C#

namespace Content.Server.Forensics;
/// <summary>
/// This controls residues left on items
/// which the forensics system uses.
/// </summary>
[RegisterComponent]
public sealed partial class ResidueComponent : Component
{
[DataField]
public LocId ResidueAdjective = "residue-unknown";
[DataField]
public string? ResidueColor;
}