mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
38 lines
No EOL
1.1 KiB
C#
38 lines
No EOL
1.1 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Trade Encounter data with a fixed PID.
|
|
/// </summary>
|
|
public sealed class EncounterTradePID : EncounterTrade
|
|
{
|
|
/// <summary>
|
|
/// Fixed <see cref="PKM.PID"/> value the encounter must have.
|
|
/// </summary>
|
|
public uint PID;
|
|
|
|
public override Shiny Shiny { get; set; } = Shiny.FixedValue;
|
|
|
|
protected override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
{
|
|
int gender = criteria.GetGender(PKX.GetGenderFromPID(Species, PID), pk.PersonalInfo);
|
|
int nature = (int)criteria.GetNature(Nature);
|
|
int ability = Ability >> 1;
|
|
|
|
pk.PID = PID;
|
|
pk.Nature = nature;
|
|
pk.Gender = gender;
|
|
pk.RefreshAbility(ability);
|
|
|
|
SetIVs(pk);
|
|
}
|
|
|
|
protected override bool IsMatchNatureGenderShiny(PKM pkm)
|
|
{
|
|
if (pkm.PID != pkm.EncryptionConstant)
|
|
return false;
|
|
if (Nature != Nature.Random && (int)Nature != pkm.Nature) // gen5 BW only
|
|
return false;
|
|
return true;
|
|
}
|
|
}
|
|
} |