mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
23 lines
570 B
C#
23 lines
570 B
C#
|
namespace PKHeX.Core
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Indicates the Availability of the Generation 2 Headbutt Tree
|
||
|
/// </summary>
|
||
|
public enum TreeEncounterAvailable
|
||
|
{
|
||
|
/// <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
|
||
|
}
|
||
|
}
|