mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
d1aa02fb31
split up current move parsing a little
22 lines
763 B
C#
22 lines
763 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
internal class LearnInfo
|
|
{
|
|
public bool MixedGen12NonTradeback { get; set; }
|
|
public List<int> Gen1Moves { get; } = new List<int>();
|
|
public List<int> Gen2PreevoMoves { get; } = new List<int>();
|
|
public List<int> EggMovesLearned { get; } = new List<int>();
|
|
public List<int> LevelUpEggMoves { get; } = new List<int>();
|
|
public List<int> EventEggMoves { get; } = new List<int>();
|
|
public List<int> IncenseMoves { get; } = new List<int>();
|
|
public MoveParseSource Source { get; set; }
|
|
|
|
public readonly bool IsGen2Pkm;
|
|
public LearnInfo(PKM pkm)
|
|
{
|
|
IsGen2Pkm = pkm.Format == 2 || pkm.VC2;
|
|
}
|
|
}
|
|
}
|