mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 16:48:01 +00:00
a9152d36a4
make some enums non-int (in favor of byte etc) return current nickname if desired clamp nature top bound too
23 lines
No EOL
577 B
C#
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
|
|
}
|
|
} |