PKHeX/PKHeX.Core/Legality/Verifiers/Ribbons/RibbonResult.cs

30 lines
851 B
C#
Raw Normal View History

namespace PKHeX.Core
{
2018-07-21 03:22:46 +00:00
/// <summary>
/// Legality Check Parse object containing information about a single ribbon.
/// </summary>
internal 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) ?? prop;
Invalid = invalid;
}
2018-07-21 03:22:46 +00:00
/// <summary>
/// Merges the result name with another provided result.
/// </summary>
public void Combine(RibbonResult other)
{
Name += $" / {other.Name}";
}
}
}