mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
6aab8ca449
Next commit will have more changes where we remove some reliance on PKM.GenNumber, in favor of the passed encounter's generation
22 lines
736 B
C#
22 lines
736 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
internal class MoveParseSource
|
|
{
|
|
private static readonly int[] Empty = Array.Empty<int>();
|
|
public IReadOnlyList<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;
|
|
}
|
|
}
|