2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-11-08 16:43:57 +00:00
|
|
|
|
{
|
2017-11-07 06:44:51 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Small general purpose value passing object with misc data pertaining to an encountered Species.
|
|
|
|
|
/// </summary>
|
2016-11-08 16:43:57 +00:00
|
|
|
|
public class DexLevel
|
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public int Species { get; set; }
|
|
|
|
|
public int Level { get; set; }
|
|
|
|
|
public int MinLevel { get; set; }
|
|
|
|
|
public bool RequiresLvlUp { get; set; }
|
|
|
|
|
public int Form { get; set; } = -1;
|
|
|
|
|
public int Flag { get; set; } = -1;
|
2016-11-08 16:43:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|