mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +00:00
abe6ef1be3
no functional change
29 lines
851 B
C#
29 lines
851 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <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;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Merges the result name with another provided result.
|
|
/// </summary>
|
|
public void Combine(RibbonResult other)
|
|
{
|
|
Name += $" / {other.Name}";
|
|
}
|
|
}
|
|
}
|