namespace PKHeX.Core;
/// Ribbons introduced in Generation 3 and were transferred to future Generations (4 and 5 only).
public interface IRibbonSetUnique3
{
/// Ribbon awarded for clearing Hoenn's Battle Tower's Lv. 50 challenge.
bool RibbonWinning { get; set; }
/// Ribbon awarded for clearing Hoenn's Battle Tower's Lv. 100 challenge.
bool RibbonVictory { get; set; }
}