PKHeX/PKHeX.Core/Legality/Encounters/EncounterStatic/EncounterStatic7b.cs
Kurt ccca8abdad Remove fixedball for go7, reset h/w/cp
Now that we have accurate calcs, let's just generate them with the values.
2022-02-25 13:52:50 -08:00

21 lines
642 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);
pk.SetRandomEC();
var pb = (PB7)pk;
pb.ResetHeight();
pb.ResetWeight();
pb.ResetCP();
}
}
}