PKHeX/PKHeX.Core/Legality/Areas/TreeEncounterAvailable.cs
Kurt a9152d36a4 Minor tweaks
make some enums non-int (in favor of byte etc)
return current nickname if desired
clamp nature top bound too
2019-05-29 22:40:07 -07:00

23 lines
No EOL
577 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Indicates the Availability of the Generation 2 Headbutt Tree
/// </summary>
public enum TreeEncounterAvailable : byte
{
/// <summary>
/// Encounter is possible a reachable tree
/// </summary>
ValidTree,
/// <summary>
/// Encounter is only possible a tree reachable only with walk-through walls cheats
/// </summary>
InvalidTree,
/// <summary>
/// Encounter is not possible in any tree
/// </summary>
Impossible
}
}