* DNA component * Commit numba 2 * Added DNA into Station Records Computer * commit numba 3 * commit numba 4 * Vomit also contain DNA component now * fixed DNA field not clearing after scanning another item * commit numba 10 Drinking leaves DNA on an object. Breaking glasses, bottles and beakers leave DNA and leave fingerprints/fibers with 40% chance on glass shards. + lotta fixes * 11 * 12 * 14 * Added DNA guide entry * FIX
12 lines
280 B
C#
12 lines
280 B
C#
namespace Content.Server.Forensics;
|
|
|
|
/// <summary>
|
|
/// This component is for mobs that have DNA.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class DnaComponent : Component
|
|
{
|
|
[DataField("dna"), ViewVariables(VVAccess.ReadWrite)]
|
|
public string DNA = String.Empty;
|
|
}
|