PKHeX/PKHeX.Core/Legality/Evolutions/EvoCriteria.cs
Kurt 47d8220915 Evo chain Simplifications
Rename "Flag" to "Method"; isn't used besides for indicating the evo
Method.
Remove some unnecessary duplicate checks
- always >=1 in chain at start
- mostEvolved already checked for > maxspeciesgen
2018-06-20 19:42:45 -07:00

10 lines
260 B
C#

namespace PKHeX.Core
{
public class EvoCriteria : DexLevel
{
public int MinLevel { get; set; }
public bool RequiresLvlUp { get; set; }
public int Form { get; set; } = -1;
public int Method { get; set; } = -1;
}
}