mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
1c4a1af633
Detect channel, only detect Channel PIDIV for RS origin (only really care about method1/2/4 being used when it shouldn't) Channel does this weird thing called not setting the met level. Refactor set suggested met location to a method that can suppress popups.
18 lines
690 B
C#
18 lines
690 B
C#
namespace PKHeX.Core
|
|
{
|
|
public class PIDIV
|
|
{
|
|
/// <summary> The RNG that generated the PKM from the <see cref="OriginSeed"/> </summary>
|
|
public RNG RNG;
|
|
|
|
/// <summary> The RNG seed which immediately generates the PIDIV (starting with PID or IVs, whichever comes first). </summary>
|
|
public uint OriginSeed;
|
|
|
|
/// <summary> Indicates that there is no <see cref="OriginSeed"/> to refer to. </summary>
|
|
/// <remarks> Some PIDIVs may be generated without a single seed, but may follow a traceable pattern. </remarks>
|
|
public bool NoSeed;
|
|
|
|
/// <summary> Type of PIDIV correlation </summary>
|
|
public PIDType Type;
|
|
}
|
|
}
|