mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-24 04:53:08 +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>
22 lines
662 B
C#
22 lines
662 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Generation 7 Static Encounter (<see cref="GameVersion.GG"/>
|
|
/// </summary>
|
|
/// <inheritdoc cref="EncounterStatic"/>
|
|
public sealed record EncounterStatic7b(GameVersion Version) : EncounterStatic(Version)
|
|
{
|
|
public override int Generation => 7;
|
|
|
|
protected override void ApplyDetails(ITrainerInfo sav, EncounterCriteria criteria, PKM pk)
|
|
{
|
|
base.ApplyDetails(sav, criteria, pk);
|
|
if (pk is IScaledSizeValue v)
|
|
{
|
|
v.ResetHeight();
|
|
v.ResetWeight();
|
|
}
|
|
pk.SetRandomEC();
|
|
}
|
|
}
|
|
}
|