PKHeX/PKHeX.Core/Legality/Verifiers/Ribbons/RibbonResult.cs
Kurt 5d3bc289b6 seal hunting
Mark things as sealed as they shouldn't be inherited from or overriden in a derived class.
2020-09-07 13:51:13 -07:00

29 lines
850 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Legality Check Parse object containing information about a single ribbon.
/// </summary>
internal sealed class RibbonResult
{
/// <summary>Ribbon Display Name</summary>
public string Name { get; private set; }
/// <summary>Ribbon should not be present.</summary>
/// <remarks>If this is false, the Ribbon is missing.</remarks>
public bool Invalid { get; }
public RibbonResult(string prop, bool invalid = true)
{
Name = RibbonStrings.GetName(prop);
Invalid = invalid;
}
/// <summary>
/// Merges the result name with another provided result.
/// </summary>
public void Combine(RibbonResult other)
{
Name += $" / {other.Name}";
}
}
}