mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 14:30:56 +00:00
47d8220915
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
10 lines
260 B
C#
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;
|
|
}
|
|
}
|