* Port forensics from nyanotrasen * port updates * printing * Update Resources/Locale/en-US/forensics/forensics.ftl Co-authored-by: Veritius <veritiusgaming@gmail.com> * Update Content.Server/Forensics/Components/ForensicPadComponent.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * Update Content.Server/Forensics/Systems/ForensicPadSystem.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * Update Content.Server/Forensics/Systems/ForensicScannerSystem.cs Co-authored-by: Kara <lunarautomaton6@gmail.com> * partially address reviews * comments * redo the events * handle it * rewrite loc * master fixes Co-authored-by: ike709 <ike709@github.com> Co-authored-by: Veritius <veritiusgaming@gmail.com> Co-authored-by: Kara <lunarautomaton6@gmail.com>
17 lines
423 B
C#
17 lines
423 B
C#
namespace Content.Server.Forensics
|
|
{
|
|
/// <summary>
|
|
/// This controls fibers left by gloves on items,
|
|
/// which the forensics system uses.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class FiberComponent : Component
|
|
{
|
|
[DataField("fiberMaterial")]
|
|
public string FiberMaterial = "fibers-synthetic";
|
|
|
|
[DataField("fiberColor")]
|
|
public string? FiberColor;
|
|
}
|
|
}
|