mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-27 22:40:22 +00:00
0b32cbf132
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
31 lines
896 B
C#
31 lines
896 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Encounter Slot found in <see cref="GameVersion.GG"/>.
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterSlot"/>
|
|
public sealed record EncounterSlot7b : EncounterSlot
|
|
{
|
|
public override int Generation => 7;
|
|
|
|
public EncounterSlot7b(EncounterArea7b area, int species, int min, int max) : base(area, species, 0, min, max)
|
|
{
|
|
}
|
|
|
|
protected override void SetPINGA(PKM pk, EncounterCriteria criteria)
|
|
{
|
|
base.SetPINGA(pk, criteria);
|
|
pk.SetRandomEC();
|
|
}
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
{
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
if (pk is IScaledSizeValue v)
|
|
{
|
|
v.ResetHeight();
|
|
v.ResetWeight();
|
|
}
|
|
}
|
|
}
|
|
}
|