Files
tbd-station-14/Content.Server/Chemistry/Components/RehydratableComponent.cs
2022-05-13 17:59:03 +10:00

21 lines
599 B
C#

namespace Content.Server.Chemistry.Components
{
/// <summary>
/// Basically, monkey cubes.
/// But specifically, this component deletes the entity and spawns in a new entity when the entity is exposed to a given reagent.
/// </summary>
[RegisterComponent]
public sealed class RehydratableComponent : Component
{
[ViewVariables]
[DataField("catalyst")]
internal string CatalystPrototype = "Water";
[ViewVariables]
[DataField("target")]
internal string? TargetPrototype = default!;
internal bool Expanding;
}
}