using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; namespace Content.Shared.Fluids; public abstract partial class SharedPuddleSystem { [ValidatePrototypeId] private const string Water = "Water"; [ValidatePrototypeId] private const string HolyWater = "Holywater"; [ValidatePrototypeId] private const string SpaceCleaner = "SpaceCleaner"; public static readonly string[] EvaporationReagents = { Water, HolyWater, SpaceCleaner }; public bool CanFullyEvaporate(Solution solution) { return solution.GetTotalPrototypeQuantity(EvaporationReagents) == solution.Volume; } }