mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
20 lines
640 B
C#
20 lines
640 B
C#
|
namespace PKHeX.Core
|
|||
|
{
|
|||
|
internal class MoveParseSource
|
|||
|
{
|
|||
|
private static readonly int[] Empty = new int[0];
|
|||
|
public int[] CurrentMoves { get; set; } = Empty;
|
|||
|
public int[] SpecialSource { get; set; } = Empty;
|
|||
|
public int[] NonTradeBackLevelUpMoves { get; set; } = Empty;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Base moves from a standard encounter
|
|||
|
/// </summary>
|
|||
|
public int[] Base { get; set; } = Empty;
|
|||
|
|
|||
|
public int[] EggLevelUpSource { get; set; } = Empty;
|
|||
|
public int[] EggMoveSource { get; set; } = Empty;
|
|||
|
public int[] EggEventSource { get; set; } = Empty;
|
|||
|
}
|
|||
|
}
|