2018-03-09 05:18:32 +00:00
|
|
|
|
namespace PKHeX.Core
|
|
|
|
|
{
|
2021-09-16 01:13:17 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 5 Trade Encounter
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <inheritdoc cref="EncounterTrade"/>
|
2021-12-09 09:08:46 +00:00
|
|
|
|
public sealed record EncounterTrade5(GameVersion Version) : EncounterTrade(Version)
|
2020-08-21 23:35:49 +00:00
|
|
|
|
{
|
2020-08-30 22:35:59 +00:00
|
|
|
|
public override int Generation => 5;
|
2021-05-19 00:14:17 +00:00
|
|
|
|
public override int Location => Locations.LinkTrade5NPC;
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-03-06 05:04:18 +00:00
|
|
|
|
/// <summary>Generation 5 Trade with Fixed PID</summary>
|
|
|
|
|
/// <param name="PID"> Fixed <see cref="PKM.PID"/> value the encounter must have.</param>
|
|
|
|
|
public sealed record EncounterTrade5PID(GameVersion Version, uint PID) : EncounterTrade(Version)
|
2018-03-09 05:18:32 +00:00
|
|
|
|
{
|
2020-08-30 22:35:59 +00:00
|
|
|
|
public override int Generation => 5;
|
2021-05-19 00:14:17 +00:00
|
|
|
|
public override int Location => Locations.LinkTrade5NPC;
|
2020-08-30 22:35:59 +00:00
|
|
|
|
|
2022-03-06 05:04:18 +00:00
|
|
|
|
public override Shiny Shiny => Shiny.FixedValue;
|
2019-02-09 19:37:20 +00:00
|
|
|
|
|
2020-12-28 22:42:48 +00:00
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
|
|
|
|
|
|
|
|
// Trades for JPN games have language ID of 0, not 1.
|
|
|
|
|
if (pk.Language == (int) LanguageID.Japanese)
|
|
|
|
|
pk.Language = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-09 19:37:20 +00:00
|
|
|
|
protected override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
|
|
|
{
|
2020-06-21 23:16:34 +00:00
|
|
|
|
var pi = pk.PersonalInfo;
|
2022-05-07 03:38:55 +00:00
|
|
|
|
int gender = criteria.GetGender(EntityGender.GetFromPID(Species, PID), pi);
|
2019-02-09 19:37:20 +00:00
|
|
|
|
int nature = (int)criteria.GetNature(Nature);
|
2021-03-24 00:05:15 +00:00
|
|
|
|
int ability = criteria.GetAbilityFromNumber(Ability);
|
2019-02-09 19:37:20 +00:00
|
|
|
|
|
|
|
|
|
pk.PID = PID;
|
|
|
|
|
pk.Nature = nature;
|
|
|
|
|
pk.Gender = gender;
|
|
|
|
|
pk.RefreshAbility(ability);
|
|
|
|
|
|
|
|
|
|
SetIVs(pk);
|
|
|
|
|
}
|
2019-11-16 01:34:18 +00:00
|
|
|
|
|
|
|
|
|
protected override bool IsMatchNatureGenderShiny(PKM pkm)
|
|
|
|
|
{
|
2020-03-18 19:23:09 +00:00
|
|
|
|
if (PID != pkm.EncryptionConstant)
|
2019-11-16 01:34:18 +00:00
|
|
|
|
return false;
|
|
|
|
|
if (Nature != Nature.Random && (int)Nature != pkm.Nature) // gen5 BW only
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2021-02-03 19:33:09 +00:00
|
|
|
|
|
|
|
|
|
public static bool IsValidMissingLanguage(PKM pkm)
|
|
|
|
|
{
|
|
|
|
|
return pkm.Format == 5 && pkm.BW;
|
|
|
|
|
}
|
2018-03-09 05:18:32 +00:00
|
|
|
|
}
|
2020-08-21 23:35:49 +00:00
|
|
|
|
}
|