2023-04-15 08:58:37 +00:00
|
|
|
|
namespace PKHeX.Core;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generation 5 Static Encounter from N
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
|
|
|
|
internal sealed record EncounterStatic5N : EncounterStatic5
|
2018-03-09 05:18:32 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
public readonly uint PID;
|
|
|
|
|
public const bool NSparkle = true;
|
|
|
|
|
|
|
|
|
|
internal EncounterStatic5N(uint pid) : base(GameVersion.B2W2)
|
2018-03-09 05:18:32 +00:00
|
|
|
|
{
|
2022-06-18 18:04:24 +00:00
|
|
|
|
Shiny = Shiny.FixedValue;
|
|
|
|
|
PID = pid;
|
2018-03-09 05:18:32 +00:00
|
|
|
|
}
|
2022-06-18 18:04:24 +00:00
|
|
|
|
|
|
|
|
|
protected override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
|
|
|
{
|
|
|
|
|
int gender = criteria.GetGender(EntityGender.GetFromPID(Species, PID), pk.PersonalInfo);
|
|
|
|
|
int nature = (int)Nature;
|
|
|
|
|
int ability = Ability.IsSingleValue(out var index) ? index : 0;
|
|
|
|
|
|
|
|
|
|
pk.PID = PID;
|
|
|
|
|
pk.Gender = gender;
|
|
|
|
|
SetIVs(pk);
|
|
|
|
|
|
|
|
|
|
pk.Nature = nature;
|
|
|
|
|
pk.RefreshAbility(ability);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsMatchExact(PKM pk, EvoCriteria evo)
|
|
|
|
|
{
|
|
|
|
|
if (PID != pk.PID)
|
|
|
|
|
return false;
|
|
|
|
|
return base.IsMatchExact(pk, evo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ApplyDetails(ITrainerInfo tr, EncounterCriteria criteria, PKM pk)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDetails(tr, criteria, pk);
|
|
|
|
|
SetNPokemonData((PK5)pk, pk.Language);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void SetNPokemonData(PK5 pk5, int lang)
|
|
|
|
|
{
|
|
|
|
|
pk5.IV_HP = pk5.IV_ATK = pk5.IV_DEF = pk5.IV_SPA = pk5.IV_SPD = pk5.IV_SPE = 30;
|
|
|
|
|
pk5.NSparkle = NSparkle;
|
|
|
|
|
pk5.OT_Name = GetOT(lang);
|
2023-04-15 08:58:37 +00:00
|
|
|
|
pk5.ID32 = 00002;
|
2022-06-18 18:04:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string GetOT(int lang) => lang == (int)LanguageID.Japanese ? "N" : "N";
|
2020-10-07 03:09:14 +00:00
|
|
|
|
}
|