2018-08-02 01:30:51 +00:00
|
|
|
|
using System;
|
2020-01-19 00:46:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
2018-08-02 01:30:51 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Core
|
2017-09-02 06:15:57 +00:00
|
|
|
|
{
|
|
|
|
|
internal class MoveParseSource
|
|
|
|
|
{
|
2018-08-02 01:30:51 +00:00
|
|
|
|
private static readonly int[] Empty = Array.Empty<int>();
|
2020-05-31 19:12:07 +00:00
|
|
|
|
public IReadOnlyList<int> CurrentMoves { get; set; } = Empty;
|
2020-01-19 00:46:38 +00:00
|
|
|
|
public IReadOnlyList<int> SpecialSource { get; set; } = Empty;
|
2017-09-02 06:15:57 +00:00
|
|
|
|
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;
|
2020-01-19 00:46:38 +00:00
|
|
|
|
public IReadOnlyList<int> EggEventSource { get; set; } = Empty;
|
2017-09-02 06:15:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|