Recognizable chemicals (#16761)

This commit is contained in:
Kara
2023-05-24 16:08:05 -07:00
committed by GitHub
parent e93b1ad055
commit 04c975534b
16 changed files with 115 additions and 16 deletions

View File

@@ -52,6 +52,12 @@ namespace Content.Shared.Chemistry.Reagent
[ViewVariables(VVAccess.ReadOnly)]
public string LocalizedPhysicalDescription => Loc.GetString(PhysicalDescription);
/// <summary>
/// Is this reagent recognizable to the average spaceman (water, welding fuel, ketchup, etc)?
/// </summary>
[DataField("recognizable")]
public bool Recognizable = false;
[DataField("flavor")]
public string Flavor { get; } = default!;
@@ -81,7 +87,7 @@ namespace Content.Shared.Chemistry.Reagent
public bool Slippery = false;
/// <summary>
/// How much reagent slows entities down if it's part of a puddle.
/// How much reagent slows entities down if it's part of a puddle.
/// 0 - no slowdown; 1 - can't move.
/// </summary>
[DataField("viscosity")]