mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
17 lines
546 B
C#
17 lines
546 B
C#
namespace PKHeX.Core
|
|
{
|
|
public sealed class EvoCriteria : DexLevel
|
|
{
|
|
public EvoCriteria(int species, int form) : base(species, form)
|
|
{
|
|
}
|
|
|
|
public int MinLevel { get; set; }
|
|
public bool RequiresLvlUp { get; set; }
|
|
public int Method { get; init; } = -1;
|
|
|
|
public bool IsTradeRequired => ((EvolutionType) Method).IsTrade();
|
|
|
|
public override string ToString() => $"{(Species) Species}{(Form != 0 ? $"-{Form}" : "")}}} [{MinLevel},{Level}] via {(EvolutionType) Method}";
|
|
}
|
|
}
|