mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-05 21:17:14 -05:00
contract: don't modify the template movesets mystery gift now exposes IRelearn, remove unnecessary type checks
23 lines
723 B
C#
23 lines
723 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
internal class MoveParseSource
|
|
{
|
|
private static readonly int[] Empty = Array.Empty<int>();
|
|
public int[] CurrentMoves { get; set; } = Empty;
|
|
public IReadOnlyList<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 IReadOnlyList<int> EggEventSource { get; set; } = Empty;
|
|
}
|
|
}
|