mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
3822981590
* Exploration: rework ability criteria to ability numbers desired * Sync remaining changes * Update EncounterCriteria.cs * Add xmldoc * Improve speed of IsDualGender check * More xmldoc updates Should be doing this on main but meh, this branch is gonna get merged later * Fix typo * Update WC7.cs * Update PersonalInfo.cs
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Encounter Slot found in <see cref="GameVersion.XD"/>.
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterSlot"/>
|
|
public sealed record EncounterSlot3PokeSpot : EncounterSlot, INumberedSlot
|
|
{
|
|
public override int Generation => 3;
|
|
|
|
public int SlotNumber { get; }
|
|
|
|
public EncounterSlot3PokeSpot(EncounterArea3XD area, int species, int min, int max, int slot) : base(area, species, 0, min, max)
|
|
{
|
|
SlotNumber = slot;
|
|
}
|
|
|
|
// PokeSpot encounters always have Fateful Encounter set.
|
|
protected override void SetFormatSpecificData(PKM pk) => pk.FatefulEncounter = true;
|
|
|
|
protected override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
{
|
|
var pi = pk.PersonalInfo;
|
|
int gender = criteria.GetGender(-1, pi);
|
|
int nature = (int)criteria.GetNature(Nature.Random);
|
|
int ability = criteria.GetAbilityFromNumber(0);
|
|
PIDGenerator.SetRandomPokeSpotPID(pk, nature, gender, ability, SlotNumber);
|
|
pk.Gender = gender;
|
|
pk.StatNature = nature;
|
|
}
|
|
}
|
|
}
|