mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
9c28ffacc0
Readonly PID; sparkle is True always, so it's a const instead of a mutable property.
48 lines
No EOL
1.4 KiB
C#
48 lines
No EOL
1.4 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
internal class EncounterStaticPID : EncounterStatic
|
|
{
|
|
public readonly uint PID;
|
|
public sealed override Shiny Shiny { get; set; } = Shiny.FixedValue;
|
|
|
|
internal EncounterStaticPID(uint pid) => PID = pid;
|
|
|
|
protected sealed override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
{
|
|
int gender = criteria.GetGender(PKX.GetGenderFromPID(Species, PID), pk.PersonalInfo);
|
|
int nature = (int)(PID % 25);
|
|
int ability = Ability;
|
|
|
|
pk.PID = PID;
|
|
pk.Gender = gender;
|
|
SetIVs(pk);
|
|
|
|
if (Generation >= 5)
|
|
pk.Nature = nature;
|
|
pk.RefreshAbility(ability >> 1);
|
|
}
|
|
|
|
public override bool IsMatch(PKM pkm, int lvl)
|
|
{
|
|
if (PID != pkm.PID)
|
|
return false;
|
|
return base.IsMatch(pkm, lvl);
|
|
}
|
|
}
|
|
|
|
internal sealed class EncounterStatic5N : EncounterStaticPID
|
|
{
|
|
public const bool NSparkle = true;
|
|
|
|
public EncounterStatic5N(uint pid) : base(pid) { }
|
|
|
|
internal 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.NPokémon = NSparkle;
|
|
pk5.OT_Name = Legal.GetG5OT_NSparkle(lang);
|
|
pk5.TID = 00002;
|
|
pk5.SID = 00000;
|
|
}
|
|
}
|
|
} |