namespace Content.Server.Chemistry.Components { /// /// 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. /// [RegisterComponent] public sealed class RehydratableComponent : Component { [ViewVariables] [DataField("catalyst")] internal string CatalystPrototype = "Water"; [ViewVariables] [DataField("target")] internal string? TargetPrototype = default!; internal bool Expanding; } }