mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
1486b7f14a
Remove move combobox flicker hack (no longer necessary) Add more Array.Empty usages cache mysterygift sizes seal some classes no functionality changes
28 lines
No EOL
941 B
C#
28 lines
No EOL
941 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Rejected Encounter Data containing a reason why the encounter was rejected (not compatible).
|
|
/// </summary>
|
|
public class EncounterRejected : IEncounterable
|
|
{
|
|
public readonly IEncounterable Encounter;
|
|
public readonly CheckResult Check;
|
|
public string Reason => Check.Comment;
|
|
|
|
public int Species => Encounter.Species;
|
|
public string Name => Encounter.Name;
|
|
public bool EggEncounter => Encounter.EggEncounter;
|
|
public int LevelMin => Encounter.LevelMin;
|
|
public int LevelMax => Encounter.LevelMax;
|
|
|
|
public EncounterRejected(IEncounterable encounter, CheckResult check)
|
|
{
|
|
Encounter = encounter;
|
|
Check = check;
|
|
}
|
|
|
|
public PKM ConvertToPKM(ITrainerInfo SAV) => throw new ArgumentException($"Cannot convert an {nameof(EncounterRejected)} to PKM.");
|
|
}
|
|
} |